From 4820578a3cf7d78b8fa62d700ca0627212dfeda3 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 13:41:22 +0200 Subject: [PATCH 01/55] Removes selection query and added reference to commons package --- .../pom.xml | 5 +++++ ...QueryBuilderSimpleRealNameOfSuperHero.java | 8 +++---- .../get_annotation_of_named_entities.rq | 22 ------------------- 3 files changed, 9 insertions(+), 26 deletions(-) delete mode 100644 qanary-component-QB-SimpleRealNameOfSuperHero/src/main/resources/queries/get_annotation_of_named_entities.rq diff --git a/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml b/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml index 4efeb920c..787fb8e53 100644 --- a/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml +++ b/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml @@ -32,6 +32,11 @@ + + eu.wdaqua.qanary + qa.commons + [3.5.4,4.0.0] + org.apache.logging.log4j log4j-to-slf4j diff --git a/qanary-component-QB-SimpleRealNameOfSuperHero/src/main/java/eu/wdaqua/qanary/component/simplerealnameofsuperhero/qb/QueryBuilderSimpleRealNameOfSuperHero.java b/qanary-component-QB-SimpleRealNameOfSuperHero/src/main/java/eu/wdaqua/qanary/component/simplerealnameofsuperhero/qb/QueryBuilderSimpleRealNameOfSuperHero.java index 6c62c9123..0c0341001 100644 --- a/qanary-component-QB-SimpleRealNameOfSuperHero/src/main/java/eu/wdaqua/qanary/component/simplerealnameofsuperhero/qb/QueryBuilderSimpleRealNameOfSuperHero.java +++ b/qanary-component-QB-SimpleRealNameOfSuperHero/src/main/java/eu/wdaqua/qanary/component/simplerealnameofsuperhero/qb/QueryBuilderSimpleRealNameOfSuperHero.java @@ -43,7 +43,7 @@ public class QueryBuilderSimpleRealNameOfSuperHero extends QanaryComponent { private String supportedQuestionPrefix = "What is the real name of "; - private String FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES = "/queries/get_annotation_of_named_entities.rq"; + private String FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES = "/queries/select_all_AnnotationOfInstance.rq"; private String FILENAME_DBPEDIA_QUERY = "/queries/dbpedia_query.rq"; private String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; @@ -93,8 +93,8 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws Exception { QuerySolutionMap bindingsForGetAnnotationOfNamedEntities = new QuerySolutionMap(); bindingsForGetAnnotationOfNamedEntities.add("graph", ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); - bindingsForGetAnnotationOfNamedEntities.add("targetQuestion", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); - bindingsForGetAnnotationOfNamedEntities.add("startValue", ResourceFactory.createTypedLiteral(String.valueOf(supportedQuestionPrefix.length()), XSDDatatype.XSDnonNegativeInteger)); + bindingsForGetAnnotationOfNamedEntities.add("hasSource", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); + bindingsForGetAnnotationOfNamedEntities.add("start", ResourceFactory.createTypedLiteral(String.valueOf(supportedQuestionPrefix.length()), XSDDatatype.XSDnonNegativeInteger)); // get the template of the INSERT query String sparqlGetAnnotation = this.loadQueryFromFile(FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES, bindingsForGetAnnotationOfNamedEntities); @@ -105,7 +105,7 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws Exception { QuerySolution tupel = resultset.next(); int start = tupel.get("start").asLiteral().getInt(); int end = tupel.get("end").asLiteral().getInt(); - String dbpediaResource = tupel.get("dbpediaResource").toString(); + String dbpediaResource = tupel.get("hasBody").toString(); logger.warn("found matching resource <{}> at ({},{})", dbpediaResource, start, end); // create the DBpedia SPARQL select query to compute the answer diff --git a/qanary-component-QB-SimpleRealNameOfSuperHero/src/main/resources/queries/get_annotation_of_named_entities.rq b/qanary-component-QB-SimpleRealNameOfSuperHero/src/main/resources/queries/get_annotation_of_named_entities.rq deleted file mode 100644 index fbe6a3146..000000000 --- a/qanary-component-QB-SimpleRealNameOfSuperHero/src/main/resources/queries/get_annotation_of_named_entities.rq +++ /dev/null @@ -1,22 +0,0 @@ -PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: - -SELECT * -FROM ?graph -WHERE { - ?annotation oa:hasBody ?dbpediaResource . - ?annotation qa:score ?annotationScore . - ?annotation oa:hasTarget ?target . - { - ?target oa:hasSource ?targetQuestion . - } UNION { - ?target oa:hasSource . - } - ?target oa:hasSelector ?textSelector . - ?textSelector rdf:type oa:TextPositionSelector . - ?textSelector oa:start ?start . - ?textSelector oa:end ?end . - FILTER(?start = ?startValue) . -} \ No newline at end of file From 19abcde59f62eae6948b226d20020e3b83cb288d Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 13:53:34 +0200 Subject: [PATCH 02/55] Edited used query for entity fetching --- qanary-component-QB-Sina/pom.xml | 5 +++++ .../main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/qanary-component-QB-Sina/pom.xml b/qanary-component-QB-Sina/pom.xml index 95333fca3..3b98215db 100644 --- a/qanary-component-QB-Sina/pom.xml +++ b/qanary-component-QB-Sina/pom.xml @@ -31,6 +31,11 @@ + + eu.wdaqua.qanary + qa.commons + [3.5.4,4.0.0] + org.apache.logging.log4j log4j-to-slf4j diff --git a/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java b/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java index 336f9c558..4c003a61e 100644 --- a/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java +++ b/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java @@ -44,7 +44,7 @@ public class SINA extends QanaryComponent { @Value("${spring.application.name}") private String applicationName; - private String FILENAME_GET_ENTITIES = "/queries/get_entities.rq"; + private String FILENAME_GET_ENTITIES = "/queries/select_all_AnnotationOfInstance.rq"; private String FILENAME_GET_RELATIONS = "/queries/get_relations.rq"; private String FILENAME_GET_CLASSES = "/queries/get_classes.rq"; private String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; @@ -121,7 +121,7 @@ private StringBuilder fetchEntities(final QanaryQuestion qanaryQuestion, while (entitiesResultSet.hasNext()) { QuerySolution s = entitiesResultSet.next(); - final Entity entity = new Entity(s.getResource("uri").getURI(), s.getLiteral("start").getInt(), s.getLiteral("end").getInt()); + final Entity entity = new Entity(s.getResource("hasBody").getURI(), s.getLiteral("start").getInt(), s.getLiteral("end").getInt()); argument.append(entity.uri + ", "); logger.info("uri:{} start:{} end:{}", entity.uri, entity.begin, entity.end); From c0a5665cf7a93c217137583ace30655cd946d382 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 14:41:22 +0200 Subject: [PATCH 03/55] Edited used queries to commons package --- .../pom.xml | 5 +++++ .../qbe/QueryBuilder.java | 18 +++++++++--------- 2 files changed, 14 insertions(+), 9 deletions(-) diff --git a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml index e26200400..36f4e1ed8 100644 --- a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml +++ b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml @@ -25,6 +25,11 @@ qa.component ${qanary.version} + + eu.wdaqua.qanary + qa.commons + [3.5.4,4.0.0] + org.springframework.boot spring-boot-starter-web diff --git a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/src/main/java/eu/wdaqua/qanary/component/simplequerybuilderandexecutor/qbe/QueryBuilder.java b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/src/main/java/eu/wdaqua/qanary/component/simplequerybuilderandexecutor/qbe/QueryBuilder.java index fa83a6200..0ad125475 100644 --- a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/src/main/java/eu/wdaqua/qanary/component/simplequerybuilderandexecutor/qbe/QueryBuilder.java +++ b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/src/main/java/eu/wdaqua/qanary/component/simplequerybuilderandexecutor/qbe/QueryBuilder.java @@ -34,9 +34,9 @@ public class QueryBuilder extends QanaryComponent { @Value("${dbpedia.sparql.endpoint:http://dbpedia.org/sparql}") String dbpediaSparqlEndpoint; - private String FILENAME_SELECT_CLASSES = "/queries/select_classes.rq"; - private String FILENAME_SELECT_PROPERTIES = "/queries/select_properties.rq"; - private String FILENAME_SELECT_ENTITIES = "/queries/select_entities.rq"; + private String FILENAME_SELECT_CLASSES = "/queries/select_all_AnnotationOfClass.rq"; + private String FILENAME_SELECT_PROPERTIES = "/queries/select_all_AnnotationOfRelation.rq"; + private String FILENAME_SELECT_ENTITIES = "/queries/select_all_AnnotationOfInstance.rq"; private String FILENAME_INSERT_SPARQL = "/queries/insert_sparql.rq"; private String FILENAME_INSERT_JSON = "/queries/insert_json.rq"; @@ -293,8 +293,8 @@ private List getClassesFromQanaryKB(QanaryUtils myQanaryUtils, QanaryQue while (r.hasNext()) { QuerySolution s = r.next(); - classes.add(s.getResource("uri").getURI()); - logger.info("class: {}", s.getResource("uri").getURI()); + classes.add(s.getResource("hasBody").getURI()); + logger.info("class: {}", s.getResource("hasBody").getURI()); } return classes; @@ -321,8 +321,8 @@ private List getPropertiesFromQanaryKB(QanaryUtils myQanaryUtils, Qanary while (r.hasNext()) { QuerySolution s = r.next(); - properties.add(s.getResource("uri").getURI()); - logger.info("property: {}", s.getResource("uri").getURI()); + properties.add(s.getResource("hasBody").getURI()); + logger.info("property: {}", s.getResource("hasBody").getURI()); } return properties; } @@ -348,8 +348,8 @@ private List getEntitiesFromQanaryKB(QanaryUtils myQanaryUtils, QanaryQu while (r.hasNext()) { QuerySolution s = r.next(); - entities.add(s.getResource("uri").getURI()); - logger.info("entity: {}", s.getResource("uri").getURI()); + entities.add(s.getResource("hasBody").getURI()); + logger.info("entity: {}", s.getResource("hasBody").getURI()); } return entities; } From 91eb729159c27a7b2dfb6d7526283be4bb10e46d Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 15:54:12 +0200 Subject: [PATCH 04/55] Edited select queries --- ...cterAlterEgoSimpleDBpediaQueryBuilder.java | 8 +++---- .../resources/queries/select_annotation.rq | 24 ------------------- .../qb/TestConfiguration.java | 2 +- 3 files changed, 5 insertions(+), 29 deletions(-) delete mode 100644 qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/resources/queries/select_annotation.rq diff --git a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/ComicCharacterAlterEgoSimpleDBpediaQueryBuilder.java b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/ComicCharacterAlterEgoSimpleDBpediaQueryBuilder.java index 8c27b0182..c8f6d4184 100644 --- a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/ComicCharacterAlterEgoSimpleDBpediaQueryBuilder.java +++ b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/ComicCharacterAlterEgoSimpleDBpediaQueryBuilder.java @@ -38,7 +38,7 @@ public class ComicCharacterAlterEgoSimpleDBpediaQueryBuilder extends QanaryCompo private final String applicationName; private String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; - private String FILENAME_SELECT_ANNOTATION = "/queries/select_annotation.rq"; + private String FILENAME_SELECT_ANNOTATION = "/queries/select_all_AnnotationOfSpotInstance.rq"; private String FILENAME_DBPEDIA_QUERY = "/queries/dbpedia_query.rq"; public ComicCharacterAlterEgoSimpleDBpediaQueryBuilder(@Value("${spring.application.name}") final String applicationName) { @@ -75,7 +75,7 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws Exception { QuerySolutionMap bindingsForSelect = new QuerySolutionMap(); bindingsForSelect.add("graph", ResourceFactory.createResource(qanaryQuestion.getOutGraph().toASCIIString())); - bindingsForSelect.add("targetQuestion", ResourceFactory.createResource(qanaryQuestion.getUri().toASCIIString())); + bindingsForSelect.add("hasSource", ResourceFactory.createResource(qanaryQuestion.getUri().toASCIIString())); // get the template of the INSERT query String sparql = this.loadQueryFromFile(FILENAME_SELECT_ANNOTATION, bindingsForSelect); @@ -89,8 +89,8 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws Exception { while (resultSet.hasNext()) { QuerySolution result = resultSet.next(); logger.info("result: \n{}", result); - int start = result.get("startOfSpecificResource").asLiteral().getInt(); - int end = result.get("endOfSpecificResource").asLiteral().getInt(); + int start = result.get("start").asLiteral().getInt(); + int end = result.get("end").asLiteral().getInt(); String name = question.substring(start, end); logger.warn("annotation found for name '{}' (at {},{})", name, start, end); diff --git a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/resources/queries/select_annotation.rq b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/resources/queries/select_annotation.rq deleted file mode 100644 index 7952dbcd5..000000000 --- a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/main/resources/queries/select_annotation.rq +++ /dev/null @@ -1,24 +0,0 @@ -PREFIX qa: -PREFIX oa: - -SELECT ?a ?dbpediaResource ?startOfSpecificResource ?endOfSpecificResource ?annotatorComponent ?time -FROM ?graph -WHERE { - VALUES ?dbpediaResource { - ?targetQuestion - } - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource ; - oa:hasSource ?dbpediaResource ; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?startOfSpecificResource ; - oa:end ?endOfSpecificResource - ] - ] . - ?a oa:annotatedAt ?time . -# The component was originally built to look specifically for -# annotations of ComicCharacterNameSimpleNamedEntityRecognizer: -# ?a oa:annotatedBy . -} \ No newline at end of file diff --git a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/TestConfiguration.java b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/TestConfiguration.java index 074abda9e..edd801ec1 100644 --- a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/TestConfiguration.java +++ b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/TestConfiguration.java @@ -7,7 +7,7 @@ @org.springframework.boot.test.context.TestConfiguration public class TestConfiguration { protected static final String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; - protected static final String FILENAME_SELECT_ANNOTATION = "/queries/select_annotation.rq"; + protected static final String FILENAME_SELECT_ANNOTATION = "/queries/select_all_AnnotationOfSpotInstance.rq"; protected static final String FILENAME_DBPEDIA_QUERY = "/queries/dbpedia_query.rq"; /** From 299dd1635e8cb05b19f2566f2e13361d0e0e76eb Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 16:03:05 +0200 Subject: [PATCH 05/55] Edited select queries --- .../component/agdistis/ned/Agdistis.java | 2 +- .../queries/select_all_spots_from_graph.rq | 19 ------------------- .../agdistis/ned/AgdistisMockedTest.java | 2 +- 3 files changed, 2 insertions(+), 21 deletions(-) delete mode 100644 qanary-component-NED-AGDISTIS/src/main/resources/queries/select_all_spots_from_graph.rq diff --git a/qanary-component-NED-AGDISTIS/src/main/java/eu/wdaqua/qanary/component/agdistis/ned/Agdistis.java b/qanary-component-NED-AGDISTIS/src/main/java/eu/wdaqua/qanary/component/agdistis/ned/Agdistis.java index 69ffabb83..415872a33 100644 --- a/qanary-component-NED-AGDISTIS/src/main/java/eu/wdaqua/qanary/component/agdistis/ned/Agdistis.java +++ b/qanary-component-NED-AGDISTIS/src/main/java/eu/wdaqua/qanary/component/agdistis/ned/Agdistis.java @@ -48,7 +48,7 @@ public class Agdistis extends QanaryComponent { private static final Logger LOGGER = LoggerFactory.getLogger(Agdistis.class); - private final String FILENAME_SPOTS_FROM_GRAPH = "/queries/select_all_spots_from_graph.rq"; + private final String FILENAME_SPOTS_FROM_GRAPH = "/queries/select_all_AnnotationOfSpotInstance.rq"; private final String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; private final String applicationName; diff --git a/qanary-component-NED-AGDISTIS/src/main/resources/queries/select_all_spots_from_graph.rq b/qanary-component-NED-AGDISTIS/src/main/resources/queries/select_all_spots_from_graph.rq deleted file mode 100644 index 89ebdc3a1..000000000 --- a/qanary-component-NED-AGDISTIS/src/main/resources/queries/select_all_spots_from_graph.rq +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?start ?end -FROM ?graph -WHERE { -?a a qa:AnnotationOfSpotInstance . -?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?q; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] -] ; -} -ORDER BY ?start diff --git a/qanary-component-NED-AGDISTIS/src/test/java/eu/wdaqua/qanary/component/agdistis/ned/AgdistisMockedTest.java b/qanary-component-NED-AGDISTIS/src/test/java/eu/wdaqua/qanary/component/agdistis/ned/AgdistisMockedTest.java index 7a708e477..888c461d4 100644 --- a/qanary-component-NED-AGDISTIS/src/test/java/eu/wdaqua/qanary/component/agdistis/ned/AgdistisMockedTest.java +++ b/qanary-component-NED-AGDISTIS/src/test/java/eu/wdaqua/qanary/component/agdistis/ned/AgdistisMockedTest.java @@ -72,7 +72,7 @@ public void init() throws URISyntaxException, QanaryExceptionNoOrMultipleQuestio ReflectionTestUtils.setField(this.mockedAgdistis, "myRestTemplate", this.myRestTemplate); ReflectionTestUtils.setField(this.mockedAgdistis, "myCacheOfResponses", this.myCacheOfResponses); ReflectionTestUtils.setField(this.mockedAgdistis, "apiUrl", this.apiUrl); - ReflectionTestUtils.setField(this.mockedAgdistis, "FILENAME_SPOTS_FROM_GRAPH", "/queries/select_all_spots_from_graph.rq"); + ReflectionTestUtils.setField(this.mockedAgdistis, "FILENAME_SPOTS_FROM_GRAPH", "/queries/select_all_AnnotationOfSpotInstance.rq"); ReflectionTestUtils.setField(this.mockedAgdistis, "FILENAME_INSERT_ANNOTATION", "/queries/insert_one_annotation.rq"); this.mockedQanaryQuestion = Mockito.mock(QanaryQuestion.class); From cfbeb2e6295354c5d4692d61563f33681e7d4d5b Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 16:21:00 +0200 Subject: [PATCH 06/55] Edited select queries --- .../diambiguationclass/ned/DiambiguationClass.java | 2 +- .../resources/queries/select_annotated_languages.rq | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) delete mode 100644 qanary-component-NED-DiambiguationClass-OKBQA/src/main/resources/queries/select_annotated_languages.rq diff --git a/qanary-component-NED-DiambiguationClass-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationclass/ned/DiambiguationClass.java b/qanary-component-NED-DiambiguationClass-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationclass/ned/DiambiguationClass.java index 3c2309d53..7609047b6 100644 --- a/qanary-component-NED-DiambiguationClass-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationclass/ned/DiambiguationClass.java +++ b/qanary-component-NED-DiambiguationClass-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationclass/ned/DiambiguationClass.java @@ -51,7 +51,7 @@ public class DiambiguationClass extends QanaryComponent { private final String applicationName; private String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; - private String FILENAME_SELECT_ANNOTATED_LANGUAGES = "/queries/select_annotated_languages.rq"; + private String FILENAME_SELECT_ANNOTATED_LANGUAGES = "/queries/select_all_AnnotationOfQuestionLanguage.rq"; public DiambiguationClass(@Value("${spring.application.name}") final String applicationName) { this.applicationName = applicationName; diff --git a/qanary-component-NED-DiambiguationClass-OKBQA/src/main/resources/queries/select_annotated_languages.rq b/qanary-component-NED-DiambiguationClass-OKBQA/src/main/resources/queries/select_annotated_languages.rq deleted file mode 100644 index f5cac5fa7..000000000 --- a/qanary-component-NED-DiambiguationClass-OKBQA/src/main/resources/queries/select_annotated_languages.rq +++ /dev/null @@ -1,10 +0,0 @@ -PREFIX qa: - -SELECT ?lang -FROM ?graph -WHERE { - ?q a qa:Question . - ?anno ?q . - ?anno ?lang . - ?anno a qa:AnnotationOfQuestionLanguage . -} \ No newline at end of file From d636dea80729b61b5d7f1b28f3f33a5101d4203d Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 16:26:33 +0200 Subject: [PATCH 07/55] Edited select queries --- qanary-component-QE-Wikidata/pom.xml | 5 +++++ .../component/wikidata/qe/QueryExecuter.java | 4 ++-- .../src/main/resources/queries/get_annotation.rq | 15 --------------- 3 files changed, 7 insertions(+), 17 deletions(-) delete mode 100644 qanary-component-QE-Wikidata/src/main/resources/queries/get_annotation.rq diff --git a/qanary-component-QE-Wikidata/pom.xml b/qanary-component-QE-Wikidata/pom.xml index 0109fdc90..5e68b0cb4 100644 --- a/qanary-component-QE-Wikidata/pom.xml +++ b/qanary-component-QE-Wikidata/pom.xml @@ -34,6 +34,11 @@ + + eu.wdaqua.qanary + qa.commons + [3.5.4,4.0.0] + org.apache.logging.log4j log4j-to-slf4j diff --git a/qanary-component-QE-Wikidata/src/main/java/eu/wdaqua/component/wikidata/qe/QueryExecuter.java b/qanary-component-QE-Wikidata/src/main/java/eu/wdaqua/component/wikidata/qe/QueryExecuter.java index f769fda31..7a0f25e70 100644 --- a/qanary-component-QE-Wikidata/src/main/java/eu/wdaqua/component/wikidata/qe/QueryExecuter.java +++ b/qanary-component-QE-Wikidata/src/main/java/eu/wdaqua/component/wikidata/qe/QueryExecuter.java @@ -39,7 +39,7 @@ public class QueryExecuter extends QanaryComponent { private final String applicationName; private String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; - private String FILENAME_GET_ANNOTATION = "/queries/get_annotation.rq"; + private String FILENAME_GET_ANNOTATION = "/queries/select_all_AnnotationOfAnswerSPARQL.rq"; public QueryExecuter(@Value("${spring.application.name}") final String applicationName) { this.applicationName = applicationName; @@ -156,7 +156,7 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws Exception { QuerySolutionMap bindingsForInsert = new QuerySolutionMap(); bindingsForInsert.add("graph", ResourceFactory.createResource(myQanaryQuestion.getInGraph().toASCIIString())); - bindingsForInsert.add("targetQuestion", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); + bindingsForInsert.add("hasTarget", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); // get the template of the INSERT query String sparqlSelectQuery = this.loadQueryFromFile(FILENAME_GET_ANNOTATION, bindingsForInsert); diff --git a/qanary-component-QE-Wikidata/src/main/resources/queries/get_annotation.rq b/qanary-component-QE-Wikidata/src/main/resources/queries/get_annotation.rq deleted file mode 100644 index 3529c574d..000000000 --- a/qanary-component-QE-Wikidata/src/main/resources/queries/get_annotation.rq +++ /dev/null @@ -1,15 +0,0 @@ -PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: - -SELECT * -FROM ?grph -WHERE { - ?annotation a qa:AnnotationOfAnswerSPARQL . - ?annotation oa:hasBody ?wikidataQueryData . #the entity in question - ?wikidataQueryData a qa:SparqlQuery . #a SPARQL query object - ?wikidataQueryData rdf:value ?wikidataQuery . #the SPARQL query string - ?annotation qa:score ?annotationScore . - ?annotation oa:hasTarget ?targetQuestion . -} \ No newline at end of file From f117823a391f7ef0fbe1f76e6bc38724f625c66d Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Mon, 18 Sep 2023 16:46:59 +0200 Subject: [PATCH 08/55] Edited select queries --- qanary-component-QB-BirthDataWikidata/pom.xml | 5 +++++ .../wikidata/BirthDataQueryBuilder.java | 15 ++++++------- .../main/resources/queries/getAnnotation.rq | 21 ------------------- .../queries/getAnnotationFiltered.rq | 19 ----------------- .../birthdatawikidata/qb/QueryTest.java | 8 +++---- .../qb/TestConfiguration.java | 3 +-- 6 files changed, 16 insertions(+), 55 deletions(-) delete mode 100644 qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotation.rq delete mode 100644 qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationFiltered.rq diff --git a/qanary-component-QB-BirthDataWikidata/pom.xml b/qanary-component-QB-BirthDataWikidata/pom.xml index 9b4eaeada..635398931 100644 --- a/qanary-component-QB-BirthDataWikidata/pom.xml +++ b/qanary-component-QB-BirthDataWikidata/pom.xml @@ -34,6 +34,11 @@ + + eu.wdaqua.qanary + qa.commons + [3.5.4,4.0.0] + org.apache.logging.log4j log4j-to-slf4j diff --git a/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java b/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java index d8ff7657e..70fb0582a 100644 --- a/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java +++ b/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java @@ -40,9 +40,7 @@ public class BirthDataQueryBuilder extends QanaryComponent { private static final Logger logger = LoggerFactory.getLogger(BirthDataQueryBuilder.class); - private static final String FILENAME_ANNOTATIONS = "/queries/getAnnotation.rq"; - private static final String FILENAME_ANNOTATIONS_FILTERED = "/queries/getAnnotationFiltered.rq"; - + private static final String FILENAME_ANNOTATIONS = "/queries/select_all_AnnotationOfInstance.rq"; private static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON = "/queries/getQuestionAnswerFromWikidataByPerson.rq"; private static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME = "/queries/getQuestionAnswerFromWikidataByFirstnameLastname.rq"; @@ -50,7 +48,7 @@ public class BirthDataQueryBuilder extends QanaryComponent { private static final String LASTNAME_ANNOTATION = "LAST_NAME"; private static final String GRAPH = "graph"; - private static final String VALUE = "value"; + private static final String VALUE = "hasBody"; private final String applicationName; @@ -70,7 +68,6 @@ public BirthDataQueryBuilder(@Value("$P{spring.application.name}") final String this.applicationName = applicationName; // check if files exists and are not empty QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_ANNOTATIONS); - QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_ANNOTATIONS_FILTERED); QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON); QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME); } @@ -235,11 +232,11 @@ private ArrayList createQueriesForAnnotation(int filterStart) throws IOE // the currently used graph bindingsForAnnotation.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); // annotated for the current question - bindingsForAnnotation.add("source", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); + bindingsForAnnotation.add("hasSource", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); // only for relevant annotations - bindingsForAnnotation.add("filterStart", ResourceFactory.createTypedLiteral(String.valueOf(filterStart), XSDDatatype.XSDint)); + bindingsForAnnotation.add("start", ResourceFactory.createTypedLiteral(String.valueOf(filterStart), XSDDatatype.XSDint)); - String sparqlGetAnnotation = this.loadQueryFromFile(FILENAME_ANNOTATIONS_FILTERED, bindingsForAnnotation); + String sparqlGetAnnotation = this.loadQueryFromFile(FILENAME_ANNOTATIONS, bindingsForAnnotation); // STEP 3: Compute SPARQL select queries that should produce the result for every identified entity // @@ -252,7 +249,7 @@ private ArrayList createQueriesForAnnotation(int filterStart) throws IOE ArrayList queries = new ArrayList<>(); while (resultset.hasNext()) { QuerySolution tupel = resultset.next(); - RDFNode wikidataResource = tupel.get("wikidataResource"); + RDFNode wikidataResource = tupel.get("hasBody"); logger.info("creating query for resource: {}", wikidataResource); String createdWikiDataQuery = createWikidataSparqlQuery(wikidataResource); queries.add(createdWikiDataQuery); diff --git a/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotation.rq b/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotation.rq deleted file mode 100644 index 5f2c9240e..000000000 --- a/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotation.rq +++ /dev/null @@ -1,21 +0,0 @@ -PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: - -SELECT * WHERE { - GRAPH ?graph { - ?annotation oa:hasBody ?wikidataResource . - ?annotation qa:score ?annotationScore . - ?annotation oa:hasTarget ?target . - - FILTER (?wikidataResource = ?value) - - ?target oa:hasSource ?source . - ?target oa:hasSelector ?textSelector . - ?textSelector rdf:type oa:TextPositionSelector . - ?textSelector oa:start ?start . - ?textSelector oa:end ?end . - } -} -ORDER BY DESC(?annotationScore) \ No newline at end of file diff --git a/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationFiltered.rq b/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationFiltered.rq deleted file mode 100644 index 20d529a7a..000000000 --- a/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationFiltered.rq +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: - -SELECT * WHERE { - GRAPH ?graph { - ?annotation oa:hasBody ?wikidataResource . - ?annotation qa:score ?annotationScore . - ?annotation oa:hasTarget ?target . - ?target oa:hasSource ?source . - ?target oa:hasSelector ?textSelector . - ?textSelector rdf:type oa:TextPositionSelector . - ?textSelector oa:start ?start . - ?textSelector oa:end ?end . - FILTER(?start = ?filterStart) . - } -} -ORDER BY DESC(?annotationScore) \ No newline at end of file diff --git a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java index a62a9d386..052947dcf 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java +++ b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java @@ -37,18 +37,18 @@ void filenameAnnotationsQueryTest() throws IOException { assertFalse(sparqlCheckFirstname.isEmpty()); assertFalse(sparqlCheckFirstname.isBlank()); - assertEquals(TestConfiguration.getTestQuery("queries/getAnnotationTest.rq"), sparqlCheckFirstname); + assertEquals(TestConfiguration.getTestQuery("queries/select_all_AnnotationOfInstance.rq"), sparqlCheckFirstname); } @Test void filenameAnnotationsFilteredQueryTest() throws IOException { QuerySolutionMap bindingsForAnnotation = new QuerySolutionMap(); bindingsForAnnotation.add("graph", ResourceFactory.createResource("urn:graph")); - bindingsForAnnotation.add("source", ResourceFactory.createResource("urn:source")); - bindingsForAnnotation.add("filterStart", ResourceFactory.createTypedLiteral(String.valueOf(5), XSDDatatype.XSDint)); + bindingsForAnnotation.add("hasSource", ResourceFactory.createResource("urn:source")); + bindingsForAnnotation.add("start", ResourceFactory.createTypedLiteral(String.valueOf(5), XSDDatatype.XSDint)); String sparqlGetAnnotation = QanaryTripleStoreConnector.readFileFromResourcesWithMap( - TestConfiguration.FILENAME_ANNOTATIONS_FILTERED, + TestConfiguration.FILENAME_ANNOTATIONS, bindingsForAnnotation ); diff --git a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java index d01e7ef20..c91ee80ed 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java +++ b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java @@ -6,8 +6,7 @@ @org.springframework.boot.test.context.TestConfiguration public class TestConfiguration { - protected static final String FILENAME_ANNOTATIONS = "/queries/getAnnotation.rq"; - protected static final String FILENAME_ANNOTATIONS_FILTERED = "/queries/getAnnotationFiltered.rq"; + protected static final String FILENAME_ANNOTATIONS = "/queries/select_all_AnnotationOfInstance.rq"; protected static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON = "/queries/getQuestionAnswerFromWikidataByPerson.rq"; protected static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME = "/queries/getQuestionAnswerFromWikidataByFirstnameLastname.rq"; From 297e61a4ecd9af8104302086b75bcba2c0188025 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Fri, 22 Sep 2023 12:24:34 +0200 Subject: [PATCH 09/55] Refactored getNamedEntities --- .../qbe/QAnswerQueryBuilderAndExecutor.java | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java b/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java index 5b7655ed0..166217c43 100644 --- a/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java +++ b/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java @@ -12,7 +12,9 @@ import java.util.stream.Collectors; import java.util.stream.Stream; +import eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector; import org.apache.jena.query.QuerySolution; +import org.apache.jena.query.QuerySolutionMap; import org.apache.jena.query.ResultSet; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -61,6 +63,8 @@ public class QAnswerQueryBuilderAndExecutor extends QanaryComponent { private String knowledgeBaseDefault; private String userDefault; + private final String FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES = "/queries/select_all_AnnotationOfInstance.rq"; + public QAnswerQueryBuilderAndExecutor( // float threshold, // @Qualifier("langDefault") String langDefault, // @@ -84,6 +88,8 @@ public QAnswerQueryBuilderAndExecutor( // assert !(userDefault == null || userDefault.trim().isEmpty()) : // "userDefault cannot be null or empty: " + userDefault; + QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES); + this.threshold = threshold; this.qanswerEndpoint = qanswerEndpoint; this.langDefault = langDefault; @@ -213,8 +219,12 @@ protected List getNamedEntitiesOfQuestion(QanaryQuestion my throws Exception { LinkedList namedEntities = new LinkedList<>(); + QuerySolutionMap bindingsForGetAnnotationOfNamedEntities = new QuerySolutionMap(); + String sparqlGetAnnotation = QanaryTripleStoreConnector.readFileFromResourcesWithMap(FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES, bindingsForGetAnnotationOfNamedEntities); + + /* // TODO: Move to qanary.commons and use template queries - String sparqlGetAnnotation = "" // + String sparqlGetAnnotationOld = "" // + "PREFIX dbr: \n" // + "PREFIX oa: \n" // + "PREFIX qa: \n" // @@ -234,6 +244,8 @@ protected List getNamedEntitiesOfQuestion(QanaryQuestion my + " }\n" // + "}\n"; + + */ boolean ignored = false; Float score; int start; From 631e355b6a4cefe61a9043748fe4c10bc0b86ecf Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Fri, 22 Sep 2023 14:00:14 +0200 Subject: [PATCH 10/55] Refactoring SELECT-Query for named entities --- .../qbe/QAnswerQueryBuilderAndExecutor.java | 32 +++---------------- 1 file changed, 5 insertions(+), 27 deletions(-) diff --git a/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java b/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java index 166217c43..0d8d25d3b 100644 --- a/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java +++ b/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java @@ -16,6 +16,7 @@ import org.apache.jena.query.QuerySolution; import org.apache.jena.query.QuerySolutionMap; import org.apache.jena.query.ResultSet; +import org.apache.jena.rdf.model.ResourceFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Qualifier; @@ -220,32 +221,9 @@ protected List getNamedEntitiesOfQuestion(QanaryQuestion my LinkedList namedEntities = new LinkedList<>(); QuerySolutionMap bindingsForGetAnnotationOfNamedEntities = new QuerySolutionMap(); + bindingsForGetAnnotationOfNamedEntities.add("graph", ResourceFactory.createResource(inGraph.toASCIIString())); String sparqlGetAnnotation = QanaryTripleStoreConnector.readFileFromResourcesWithMap(FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES, bindingsForGetAnnotationOfNamedEntities); - /* - // TODO: Move to qanary.commons and use template queries - String sparqlGetAnnotationOld = "" // - + "PREFIX dbr: \n" // - + "PREFIX oa: \n" // - + "PREFIX qa: \n" // - + "PREFIX rdf: \n" // - + "SELECT ?entityResource ?annotationScore ?start ?end " // - + "FROM <" + inGraph.toString() + "> \n" // - + "WHERE { \n" // - + " ?annotation oa:hasBody ?entityResource .\n" // - + " ?annotation oa:hasTarget ?target .\n" // - + " ?target oa:hasSource <" + myQanaryQuestion.getUri().toString() + "> .\n" // - + " ?target oa:hasSelector ?textSelector .\n" // - + " ?textSelector rdf:type oa:TextPositionSelector .\n" // - + " ?textSelector oa:start ?start .\n" // - + " ?textSelector oa:end ?end .\n" // - + " OPTIONAL { \n" // - + " ?annotation qa:score ?annotationScore . \n" // we cannot be sure that a score is provided - + " }\n" // - + "}\n"; - - - */ boolean ignored = false; Float score; int start; @@ -259,10 +237,10 @@ protected List getNamedEntitiesOfQuestion(QanaryQuestion my end = tupel.get("end").asLiteral().getInt(); score = null; - if (tupel.contains("annotationScore")) { - score = tupel.get("annotationScore").asLiteral().getFloat(); + if (tupel.contains("score")) { + score = tupel.get("score").asLiteral().getFloat(); } - URI entityResource = new URI(tupel.get("entityResource").asResource().getURI()); + URI entityResource = new URI(tupel.get("hasBody").asResource().getURI()); if (score == null || score >= threshold) { namedEntities.add(new NamedEntity(entityResource, start, end, score)); From 9f0695ae9c27a297dc11da161ed8ca82e660ea85 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Wed, 25 Oct 2023 10:42:22 +0200 Subject: [PATCH 11/55] Update DiambiguationProperty.java - the double conversion from the JSONObject has thrown an error - fixed that by using conversion Method for BigDecimal values to double --- .../diambiguationproperty/rd/DiambiguationProperty.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java b/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java index 05fdf3ac8..d432ee358 100644 --- a/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java +++ b/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java @@ -238,7 +238,7 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws SparqlQueryFa Map urlsAndScore = new HashMap(); JSONObject tempObject = (JSONObject) iTypes.next(); String urls = (String) tempObject.get("value"); - double score = (double) tempObject.get("score"); + double score = tempObject.getNumber("score").doubleValue(); var = (String) tempObject.get("var"); if (allProperties.size() > 0 && allProperties.containsKey(var)) { From 3d034da6703d722a7f182957b1564422c2415a42 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Thu, 26 Oct 2023 14:21:59 +0200 Subject: [PATCH 12/55] Replaced QueestionLanguage Query with qa.commons query --- .../rd/DiambiguationProperty.java | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java b/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java index d432ee358..0ca2926d8 100644 --- a/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java +++ b/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java @@ -2,10 +2,13 @@ import eu.wdaqua.qanary.commons.QanaryMessage; import eu.wdaqua.qanary.commons.QanaryUtils; +import eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector; import eu.wdaqua.qanary.component.QanaryComponent; import eu.wdaqua.qanary.exceptions.SparqlQueryFailed; import org.apache.http.client.ClientProtocolException; +import org.apache.jena.query.QuerySolutionMap; import org.apache.jena.query.ResultSet; +import org.apache.jena.rdf.model.ResourceFactory; import org.json.JSONArray; import org.json.JSONObject; import org.slf4j.Logger; @@ -39,9 +42,11 @@ public class DiambiguationProperty extends QanaryComponent { private static final Logger logger = LoggerFactory.getLogger(DiambiguationProperty.class); private final String applicationName; + private final String QUERY_SELECT_ALL_QUESTION_LANGUAGE = "/queries/select_all_AnnotationOfQuestionLanguage.rq"; public DiambiguationProperty(@Value("${spring.application.name}") final String applicationName) { this.applicationName = applicationName; + QanaryTripleStoreConnector.guardNonEmptyFileFromResources(QUERY_SELECT_ALL_QUESTION_LANGUAGE); } public static String runCurlGetWithParam(String weburl, String data, String contentType) @@ -159,14 +164,9 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws SparqlQueryFa // the below mentioned SPARQL query to fetch annotation of language from // triplestore - String questionlang = "PREFIX qa: " // - + "SELECT ?lang " + "FROM <" + namedGraph + "> " // - + "WHERE {?q a qa:Question ." // - + " ?anno ?q ." // - + " ?anno ?lang ." // - + " ?anno a qa:AnnotationOfQuestionLanguage }"; - // Now fetch the language, in our case it is "en". - ResultSet result1 = myQanaryUtils.selectFromTripleStore(questionlang, endpoint); + QuerySolutionMap bindingsForQuery = new QuerySolutionMap(); + bindingsForQuery.add("graph", ResourceFactory.createResource(namedGraph)); + ResultSet result1 = QanaryTripleStoreConnector.readFileFromResourcesWithMap(QUERY_SELECT_ALL_QUESTION_LANGUAGE, bindingsForQuery); // ResultSet currently not used String language1 = "en"; logger.info("Language of the Question: {}", language1); From 50b53e361b40dbf987e6eb35e56475de2ef31f5a Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Thu, 26 Oct 2023 14:29:07 +0200 Subject: [PATCH 13/55] Renamed File variable --- .../qbe/QAnswerQueryBuilderAndExecutor.java | 24 ++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java b/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java index 0d8d25d3b..568fa8fca 100644 --- a/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java +++ b/qanary-component-QBE-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qbe/QAnswerQueryBuilderAndExecutor.java @@ -13,10 +13,13 @@ import java.util.stream.Stream; import eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector; +import org.apache.jena.datatypes.RDFDatatype; +import org.apache.jena.datatypes.xsd.XSDDatatype; import org.apache.jena.query.QuerySolution; import org.apache.jena.query.QuerySolutionMap; import org.apache.jena.query.ResultSet; import org.apache.jena.rdf.model.ResourceFactory; +import org.apache.jena.vocabulary.RDF; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Qualifier; @@ -64,7 +67,8 @@ public class QAnswerQueryBuilderAndExecutor extends QanaryComponent { private String knowledgeBaseDefault; private String userDefault; - private final String FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES = "/queries/select_all_AnnotationOfInstance.rq"; + private final String SELECT_ALL_ANNOTATION_OF_INSTANCE = "/queries/select_all_AnnotationOfInstance.rq"; + private final String INSERT_ONE_ANNOTATION_OF_ANSWER_SPARQL = "/queries/insert_one_AnnotationOfAnswerSPARQL.rq"; public QAnswerQueryBuilderAndExecutor( // float threshold, // @@ -89,7 +93,8 @@ public QAnswerQueryBuilderAndExecutor( // assert !(userDefault == null || userDefault.trim().isEmpty()) : // "userDefault cannot be null or empty: " + userDefault; - QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES); + QanaryTripleStoreConnector.guardNonEmptyFileFromResources(SELECT_ALL_ANNOTATION_OF_INSTANCE); + QanaryTripleStoreConnector.guardNonEmptyFileFromResources(INSERT_ONE_ANNOTATION_OF_ANSWER_SPARQL); this.threshold = threshold; this.qanswerEndpoint = qanswerEndpoint; @@ -222,7 +227,7 @@ protected List getNamedEntitiesOfQuestion(QanaryQuestion my QuerySolutionMap bindingsForGetAnnotationOfNamedEntities = new QuerySolutionMap(); bindingsForGetAnnotationOfNamedEntities.add("graph", ResourceFactory.createResource(inGraph.toASCIIString())); - String sparqlGetAnnotation = QanaryTripleStoreConnector.readFileFromResourcesWithMap(FILENAME_GET_ANNOTATION_OF_NAMED_ENTITIES, bindingsForGetAnnotationOfNamedEntities); + String sparqlGetAnnotation = QanaryTripleStoreConnector.readFileFromResourcesWithMap(SELECT_ALL_ANNOTATION_OF_INSTANCE, bindingsForGetAnnotationOfNamedEntities); boolean ignored = false; Float score; @@ -360,6 +365,19 @@ private String getSparqlInsertQuery(QanaryQuestion myQanaryQuestion, QAn counter++; } + QuerySolutionMap bindingsForInsert = new QuerySolutionMap(); + bindingsForInsert.add("service", ResourceFactory.createResource(this.applicationName)); + bindingsForInsert.add("question", ResourceFactory.createStringLiteral(myQanaryQuestion.getUri().toASCIIString())); + bindingsForInsert.add("score", ResourceFactory.createTypedLiteral(String.valueOf(result.getConfidence()), XSDDatatype.XSDdouble)); + bindingsForInsert.add("improvedQuestionText", ResourceFactory.createStringLiteral(improvedQuestion)); + bindingsForInsert.add("sparqlQueryString", ResourceFactory.createStringLiteral(createdAnswerSparqlQuery.replace("\"", "\\\"") + "\"") ); + bindingsForInsert.add("answerDataType", ResourceFactory.createResource(String.valueOf(result.getDatatype()))); + bindingsForInsert.add("knowledgeGraph", ResourceFactory.createResource(String.valueOf(knowledgeGraphEndpoints.get(usedKnowledgeGraph)))); + bindingsForInsert.add("json", ResourceFactory.createStringLiteral( + result.getJsonString().replace("\"", "\\\"").replace("\\\\", "\\\\\\").replace("\\n", "").replace("\\t", "").replace("\\/", "/") + )); + + // TODO: Move to qanary.commons and use template queries String sparql = "" // + "PREFIX qa: \n" // From 61d85678d2f58c1f732a14832c6e47b5b755ef77 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Thu, 26 Oct 2023 14:32:14 +0200 Subject: [PATCH 14/55] Changed Query execution --- .../diambiguationproperty/rd/DiambiguationProperty.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java b/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java index 0ca2926d8..fbecaee65 100644 --- a/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java +++ b/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/java/eu/wdaqua/qanary/component/diambiguationproperty/rd/DiambiguationProperty.java @@ -130,7 +130,7 @@ public static String runCurlPOSTWithParam(String weburl, String data, String con * component */ @Override - public QanaryMessage process(QanaryMessage myQanaryMessage) throws SparqlQueryFailed { + public QanaryMessage process(QanaryMessage myQanaryMessage) throws SparqlQueryFailed, IOException { long startTime = System.currentTimeMillis(); //org.apache.log4j.Logger.getRootLogger().setLevel(org.apache.log4j.Level.OFF); logger.info("process: {}", myQanaryMessage); @@ -166,7 +166,8 @@ public QanaryMessage process(QanaryMessage myQanaryMessage) throws SparqlQueryFa // triplestore QuerySolutionMap bindingsForQuery = new QuerySolutionMap(); bindingsForQuery.add("graph", ResourceFactory.createResource(namedGraph)); - ResultSet result1 = QanaryTripleStoreConnector.readFileFromResourcesWithMap(QUERY_SELECT_ALL_QUESTION_LANGUAGE, bindingsForQuery); // ResultSet currently not used + String query = QanaryTripleStoreConnector.readFileFromResourcesWithMap(QUERY_SELECT_ALL_QUESTION_LANGUAGE, bindingsForQuery); + ResultSet result1 = myQanaryUtils.getQanaryTripleStoreConnector().select(query); // ResultSet currently not used String language1 = "en"; logger.info("Language of the Question: {}", language1); From cbb044dfc965493d76787e7f2830be387eff88d4 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Thu, 26 Oct 2023 14:44:19 +0200 Subject: [PATCH 15/55] Changed used Query to qa.commons query --- .../qb/QueryBuilderDateOfDeathDBpedia.java | 8 ++++---- ...rviceQueryBuilderDateOfDeathDBpediaControllerTest.java | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/qanary-component-QB-DateOfDeathDBpedia/src/main/java/eu/wdaqua/qanary/component/dateofdeathrealpersons/qb/QueryBuilderDateOfDeathDBpedia.java b/qanary-component-QB-DateOfDeathDBpedia/src/main/java/eu/wdaqua/qanary/component/dateofdeathrealpersons/qb/QueryBuilderDateOfDeathDBpedia.java index 6a329a603..f5917e42b 100644 --- a/qanary-component-QB-DateOfDeathDBpedia/src/main/java/eu/wdaqua/qanary/component/dateofdeathrealpersons/qb/QueryBuilderDateOfDeathDBpedia.java +++ b/qanary-component-QB-DateOfDeathDBpedia/src/main/java/eu/wdaqua/qanary/component/dateofdeathrealpersons/qb/QueryBuilderDateOfDeathDBpedia.java @@ -43,7 +43,7 @@ public class QueryBuilderDateOfDeathDBpedia extends QanaryComponent { the final insert query */ // query used to fetch required information from the graphURI - private static final String QUERY_FILE_FETCH_REQUIRED_ANNOTATIONS = "/queries/fetch_required_annotations.rq"; + private static final String QUERY_FILE_FETCH_REQUIRED_ANNOTATIONS = "/queries/select_all_AnnotationOfInstance.rq"; // That's the later inserted query / new computed query private static final String QUERY_FILE_DBPEDIA_QUERY = "/queries/dbpedia_query.rq"; @@ -168,9 +168,9 @@ public List createQueries(QanaryQuestion qanaryQuestion, List qu public QuerySolutionMap getBindingsForSparqlQuery(QanaryQuestion myQanaryQuestion) throws Exception { QuerySolutionMap querySolutionMap = new QuerySolutionMap(); querySolutionMap.add("graph", ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString()));// Set the GraphID - querySolutionMap.add("targetQuestion", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); - querySolutionMap.add("startValue", ResourceFactory.createTypedLiteral(String.valueOf(SUPPORTED_PREFIX.length()), XSDDatatype.XSDnonNegativeInteger)); - querySolutionMap.add("confidence", ResourceFactory.createTypedLiteral("1.0", XSDDatatype.XSDfloat)); + querySolutionMap.add("hasSource", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); + querySolutionMap.add("start", ResourceFactory.createTypedLiteral(String.valueOf(SUPPORTED_PREFIX.length()), XSDDatatype.XSDnonNegativeInteger)); + querySolutionMap.add("score", ResourceFactory.createTypedLiteral("1.0", XSDDatatype.XSDfloat)); return querySolutionMap; } diff --git a/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java b/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java index c755412a2..3d746d2b6 100644 --- a/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java +++ b/qanary-component-QB-DateOfDeathDBpedia/src/test/java/eu/wdaqua/qanary/component/mypackage/QanaryServiceQueryBuilderDateOfDeathDBpediaControllerTest.java @@ -295,8 +295,8 @@ void getBindingForSparqlQueryWithGivenQanaryQuestion() throws Exception { Map solutionsAsMap = querySolutionMap.asMap(); assertAll("Check correct Map", () -> assertEquals(solutionsAsMap.get("graph").toString(), qanaryMessage.getOutGraph().toString()), - () -> assertEquals(solutionsAsMap.get("targetQuestion").toString(), EXAMPLE_QUESTION), - () -> assertEquals(solutionsAsMap.get("startValue").asLiteral(), + () -> assertEquals(solutionsAsMap.get("hasSource").toString(), EXAMPLE_QUESTION), + () -> assertEquals(solutionsAsMap.get("start").asLiteral(), ResourceFactory.createTypedLiteral(String.valueOf(SUPPORTED_PREFIX.length()), XSDDatatype.XSDnonNegativeInteger)) ); } From 65b6b5f779917922efd84cd4d532fd5ef795f686 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Thu, 26 Oct 2023 14:45:50 +0200 Subject: [PATCH 16/55] Deleted unused query --- .../queries/fetch_required_annotations.rq | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 qanary-component-QB-DateOfDeathDBpedia/src/main/resources/queries/fetch_required_annotations.rq diff --git a/qanary-component-QB-DateOfDeathDBpedia/src/main/resources/queries/fetch_required_annotations.rq b/qanary-component-QB-DateOfDeathDBpedia/src/main/resources/queries/fetch_required_annotations.rq deleted file mode 100644 index fbe6a3146..000000000 --- a/qanary-component-QB-DateOfDeathDBpedia/src/main/resources/queries/fetch_required_annotations.rq +++ /dev/null @@ -1,22 +0,0 @@ -PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: - -SELECT * -FROM ?graph -WHERE { - ?annotation oa:hasBody ?dbpediaResource . - ?annotation qa:score ?annotationScore . - ?annotation oa:hasTarget ?target . - { - ?target oa:hasSource ?targetQuestion . - } UNION { - ?target oa:hasSource . - } - ?target oa:hasSelector ?textSelector . - ?textSelector rdf:type oa:TextPositionSelector . - ?textSelector oa:start ?start . - ?textSelector oa:end ?end . - FILTER(?start = ?startValue) . -} \ No newline at end of file From b995e1fe000d7e458ba52f448d2c75db46585d67 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:11:03 +0200 Subject: [PATCH 17/55] Update pom.xml --- .../pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml index 019dfba29..c45f55888 100644 --- a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml +++ b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml @@ -29,6 +29,11 @@ qa.component ${qanary.component.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From ff6ae426da80f8b8fc7aa23a383aa3edeeaebb78 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:11:46 +0200 Subject: [PATCH 18/55] Update pom.xml --- qanary-component-LD-Shuyo/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-LD-Shuyo/pom.xml b/qanary-component-LD-Shuyo/pom.xml index b3e644670..70a2b7b19 100644 --- a/qanary-component-LD-Shuyo/pom.xml +++ b/qanary-component-LD-Shuyo/pom.xml @@ -32,6 +32,11 @@ org.springframework.boot spring-boot-starter-web + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-test From 68842ec1ab47f5644220e81378305f0104cb66b4 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:12:11 +0200 Subject: [PATCH 19/55] Update pom.xml --- qanary-component-NED-DBpediaSpotlight/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-NED-DBpediaSpotlight/pom.xml b/qanary-component-NED-DBpediaSpotlight/pom.xml index e4bd89b04..497bfc9b6 100644 --- a/qanary-component-NED-DBpediaSpotlight/pom.xml +++ b/qanary-component-NED-DBpediaSpotlight/pom.xml @@ -39,6 +39,11 @@ org.springframework.boot spring-boot-starter-web + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-test From d89f0fd2edefa6226b206e15f1e4ee910e652fd0 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:12:22 +0200 Subject: [PATCH 20/55] Update pom.xml --- qanary-component-NED-Dandelion/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-NED-Dandelion/pom.xml b/qanary-component-NED-Dandelion/pom.xml index e9b537859..b2991ceeb 100644 --- a/qanary-component-NED-Dandelion/pom.xml +++ b/qanary-component-NED-Dandelion/pom.xml @@ -27,6 +27,11 @@ qa.component ${qanary.component.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From 3bff2f1bff639cadd37f4f779908aa60baebb7ce Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:12:36 +0200 Subject: [PATCH 21/55] Update pom.xml --- qanary-component-NED-DiambiguationClass-OKBQA/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml b/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml index 2b3c9b235..81580c517 100644 --- a/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml +++ b/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml @@ -27,6 +27,11 @@ qa.component ${qanary.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-web From cb4dc28aebe4208307a53e298449dddf564469ce Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:12:57 +0200 Subject: [PATCH 22/55] Update pom.xml --- qanary-component-NED-MeaningCloud/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-NED-MeaningCloud/pom.xml b/qanary-component-NED-MeaningCloud/pom.xml index 4310f59e9..7007da9c1 100644 --- a/qanary-component-NED-MeaningCloud/pom.xml +++ b/qanary-component-NED-MeaningCloud/pom.xml @@ -25,6 +25,11 @@ com.google.code.gson gson + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.component From 6e6f630d69c0972f3a23e13004c46ba060a3544a Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:13:10 +0200 Subject: [PATCH 23/55] Update pom.xml --- qanary-component-NED-Ontotext/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qanary-component-NED-Ontotext/pom.xml b/qanary-component-NED-Ontotext/pom.xml index d1c7603ec..47cb2d5af 100644 --- a/qanary-component-NED-Ontotext/pom.xml +++ b/qanary-component-NED-Ontotext/pom.xml @@ -27,6 +27,12 @@ qa.component ${qanary.version} + + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-web From 1db66c6207502f5e22cb117df99000242d6521d0 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:13:24 +0200 Subject: [PATCH 24/55] Update pom.xml --- qanary-component-NED-Tagme/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qanary-component-NED-Tagme/pom.xml b/qanary-component-NED-Tagme/pom.xml index e463fc63b..471ca17d9 100644 --- a/qanary-component-NED-Tagme/pom.xml +++ b/qanary-component-NED-Tagme/pom.xml @@ -25,6 +25,12 @@ com.google.code.gson gson + + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.component From 99122ef9319f19059c59d34bf2e66a759efadd73 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:13:37 +0200 Subject: [PATCH 25/55] Update pom.xml --- qanary-component-NER-DBpediaSpotlight/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qanary-component-NER-DBpediaSpotlight/pom.xml b/qanary-component-NER-DBpediaSpotlight/pom.xml index 1b4ded31e..93355a0ad 100644 --- a/qanary-component-NER-DBpediaSpotlight/pom.xml +++ b/qanary-component-NER-DBpediaSpotlight/pom.xml @@ -27,6 +27,12 @@ qa.component ${qanary.component.version} + + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From 746c6c848ab6461101dd1203b210cf77e6fde3e3 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:13:49 +0200 Subject: [PATCH 26/55] Update pom.xml --- qanary-component-NER-Dandelion/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qanary-component-NER-Dandelion/pom.xml b/qanary-component-NER-Dandelion/pom.xml index 766fc8ce8..ed29d791e 100644 --- a/qanary-component-NER-Dandelion/pom.xml +++ b/qanary-component-NER-Dandelion/pom.xml @@ -27,6 +27,12 @@ qa.component ${qanary.component.version} + + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From be11f2831e4669566a6d5b401f7fcac97b39241e Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:14:05 +0200 Subject: [PATCH 27/55] Update pom.xml --- qanary-component-NER-MeaningCloud/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qanary-component-NER-MeaningCloud/pom.xml b/qanary-component-NER-MeaningCloud/pom.xml index d4cd03976..dce1b41aa 100644 --- a/qanary-component-NER-MeaningCloud/pom.xml +++ b/qanary-component-NER-MeaningCloud/pom.xml @@ -27,6 +27,12 @@ qa.component ${qanary.component.version} + + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From d28989819564a03a05563b6ff2a46a66e7b10ff3 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:14:20 +0200 Subject: [PATCH 28/55] Update pom.xml --- qanary-component-NER-Ontotext/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qanary-component-NER-Ontotext/pom.xml b/qanary-component-NER-Ontotext/pom.xml index 86957df6a..2b4274729 100644 --- a/qanary-component-NER-Ontotext/pom.xml +++ b/qanary-component-NER-Ontotext/pom.xml @@ -27,6 +27,12 @@ qa.component ${qanary.version} + + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-web From 51f28983b02899b779d6493cecce9f6f8b77a9d6 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:14:37 +0200 Subject: [PATCH 29/55] Update pom.xml --- qanary-component-NER-Tagme/pom.xml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/qanary-component-NER-Tagme/pom.xml b/qanary-component-NER-Tagme/pom.xml index ad21e0437..8153e070d 100644 --- a/qanary-component-NER-Tagme/pom.xml +++ b/qanary-component-NER-Tagme/pom.xml @@ -27,6 +27,12 @@ qa.component ${qanary.component.version} + + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From 439a1d2a2e3fb8052ba8bc9d37ff2a9f97ae4d73 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:14:55 +0200 Subject: [PATCH 30/55] Update pom.xml --- qanary-component-NER-TextRazor/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-NER-TextRazor/pom.xml b/qanary-component-NER-TextRazor/pom.xml index a931d9d80..be4623084 100644 --- a/qanary-component-NER-TextRazor/pom.xml +++ b/qanary-component-NER-TextRazor/pom.xml @@ -27,6 +27,11 @@ qa.component ${qanary.component.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From 9fe753bb8d94296c5583d4cbf4bcf0094da3c9de Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:15:18 +0200 Subject: [PATCH 31/55] Update pom.xml --- qanary-component-QB-MonoliticWrapper/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-QB-MonoliticWrapper/pom.xml b/qanary-component-QB-MonoliticWrapper/pom.xml index a57c05b14..83a94e299 100644 --- a/qanary-component-QB-MonoliticWrapper/pom.xml +++ b/qanary-component-QB-MonoliticWrapper/pom.xml @@ -32,6 +32,11 @@ + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.apache.logging.log4j log4j-to-slf4j From f2106faa7fafc234a4d203d1d7132894630e2700 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:15:27 +0200 Subject: [PATCH 32/55] Update pom.xml --- qanary-component-QB-PlatypusWrapper/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-QB-PlatypusWrapper/pom.xml b/qanary-component-QB-PlatypusWrapper/pom.xml index 6c1c2f900..56b2d37e4 100644 --- a/qanary-component-QB-PlatypusWrapper/pom.xml +++ b/qanary-component-QB-PlatypusWrapper/pom.xml @@ -32,6 +32,11 @@ qa.component ${qanary.component.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From 2c7452be8828f9517e52aaf60235e2a68046051d Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:15:39 +0200 Subject: [PATCH 33/55] Update pom.xml --- qanary-component-QB-QAnswer/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-QB-QAnswer/pom.xml b/qanary-component-QB-QAnswer/pom.xml index 988aabe9b..9b9886865 100644 --- a/qanary-component-QB-QAnswer/pom.xml +++ b/qanary-component-QB-QAnswer/pom.xml @@ -28,6 +28,11 @@ qa.component ${qanary.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-web From c240f784123b8f7a315daaf262116d72aed6cacc Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:15:57 +0200 Subject: [PATCH 34/55] Update pom.xml --- qanary-component-QB-Sina/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-QB-Sina/pom.xml b/qanary-component-QB-Sina/pom.xml index a734df7c3..694bd625d 100644 --- a/qanary-component-QB-Sina/pom.xml +++ b/qanary-component-QB-Sina/pom.xml @@ -38,6 +38,11 @@ qa.commons [3.5.4,4.0.0] + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.apache.logging.log4j log4j-to-slf4j From 1e5be1571f790529da9145e5fb90062a775d4105 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:16:11 +0200 Subject: [PATCH 35/55] Update pom.xml --- qanary-component-QBE-QAnswer/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-QBE-QAnswer/pom.xml b/qanary-component-QBE-QAnswer/pom.xml index 49ca09431..ebd06ffcb 100644 --- a/qanary-component-QBE-QAnswer/pom.xml +++ b/qanary-component-QBE-QAnswer/pom.xml @@ -46,6 +46,11 @@ + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-web From cb3cea68877b75f9cbd8486bd7210ced049a3929 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:16:21 +0200 Subject: [PATCH 36/55] Update pom.xml --- qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml index adad8181c..616fef219 100644 --- a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml +++ b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml @@ -27,6 +27,11 @@ qa.component ${qanary.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + eu.wdaqua.qanary qa.commons From 1547e6e950e2fd3fbff81a7ace7a6945867aedcb Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:16:33 +0200 Subject: [PATCH 37/55] Update pom.xml --- qanary-component-QE-SparqlExecuter/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-QE-SparqlExecuter/pom.xml b/qanary-component-QE-SparqlExecuter/pom.xml index 04032601d..0e483b1e6 100644 --- a/qanary-component-QE-SparqlExecuter/pom.xml +++ b/qanary-component-QE-SparqlExecuter/pom.xml @@ -32,6 +32,11 @@ + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.apache.logging.log4j log4j-to-slf4j From d3e7d51f242195f388082f64c15be0120771c7c5 Mon Sep 17 00:00:00 2001 From: Dennis Schiese <135758800+dschiese@users.noreply.github.com> Date: Fri, 27 Oct 2023 10:16:51 +0200 Subject: [PATCH 38/55] Update pom.xml --- qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml b/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml index 241fbc111..48dad4aff 100644 --- a/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml +++ b/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml @@ -27,6 +27,11 @@ qa.component ${qanary.version} + + de.codecentric + spring-boot-admin-starter-client + 2.4.1 + org.springframework.boot spring-boot-starter-web From 3c57194bb9578bc685bc99f631a16baa0dc9826d Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Fri, 27 Oct 2023 14:15:59 +0200 Subject: [PATCH 39/55] Setup repo for local tests --- qanary-component-LD-Shuyo/nohup.out | 9888 ++++++++ .../nohup.out | 11511 +++++++++ qanary-component-NED-Dandelion/nohup.out | 7553 ++++++ .../resources/config/application.properties | 2 +- qanary-component-NED-Ontotext/nohup.out | 5519 ++++ qanary-component-NED-Tagme/nohup.out | 4473 ++++ .../queries/insert_one_annotation.rq | 4 +- .../nohup.out | 8811 +++++++ qanary-component-NER-Dandelion/nohup.out | 6022 +++++ .../resources/config/application.properties | 4 +- qanary-component-NER-Tagme/nohup.out | 2189 ++ .../resources/config/application.properties | 2 +- qanary-component-NER-TextRazor/nohup.out | 5377 ++++ .../resources/config/application.properties | 2 +- qanary-component-QB-PlatypusWrapper/nohup.out | 5294 ++++ .../resources/config/application.properties | 2 +- qanary-component-QB-Sina/nohup.out | 7274 ++++++ qanary-component-QBE-QAnswer/nohup.out | 20758 ++++++++++++++++ .../nohup.out | 2461 ++ 19 files changed, 97138 insertions(+), 8 deletions(-) create mode 100644 qanary-component-LD-Shuyo/nohup.out create mode 100644 qanary-component-NED-DBpediaSpotlight/nohup.out create mode 100644 qanary-component-NED-Dandelion/nohup.out create mode 100644 qanary-component-NED-Ontotext/nohup.out create mode 100644 qanary-component-NED-Tagme/nohup.out create mode 100644 qanary-component-NER-DBpediaSpotlight/nohup.out create mode 100644 qanary-component-NER-Dandelion/nohup.out create mode 100644 qanary-component-NER-Tagme/nohup.out create mode 100644 qanary-component-NER-TextRazor/nohup.out create mode 100644 qanary-component-QB-PlatypusWrapper/nohup.out create mode 100644 qanary-component-QB-Sina/nohup.out create mode 100644 qanary-component-QBE-QAnswer/nohup.out create mode 100644 qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out diff --git a/qanary-component-LD-Shuyo/nohup.out b/qanary-component-LD-Shuyo/nohup.out new file mode 100644 index 000000000..aee7e2ed8 --- /dev/null +++ b/qanary-component-LD-Shuyo/nohup.out @@ -0,0 +1,9888 @@ + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 4.1.7 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:22.065  INFO 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 9656 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) +2023-10-27 12:09:22.116 DEBUG 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.126  INFO 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:44.277  INFO 9656 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@191ae03f +2023-10-27 12:09:46.307  INFO 9656 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 12:09:46.308  INFO 9656 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 12:09:46.322  INFO 9656 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@5df417a7 +2023-10-27 12:09:46.345  INFO 9656 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = LD-Shuyo +spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:46.440  INFO 9656 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl +2023-10-27 12:09:50.119  WARN 9656 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:50.235  WARN 9656 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:50.752  WARN 9656 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:50.910  INFO 9656 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:10:00.355  INFO 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : Started Application in 42.807 seconds (JVM running for 49.462) +2023-10-27 12:10:00.911  WARN 9656 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=LD-Shuyo, managementUrl=http://0.0.0.0:5555/actuator, healthUrl=http://0.0.0.0:5555/actuator/health, serviceUrl=http://0.0.0.0:5555/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:10.436  INFO 9656 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 0874ca224b9a +2023-10-27 12:11:08.929  INFO 9656 --- [nio-5555-exec-6] o.apache.coyote.http11.Http11Processor  : Error parsing HTTP request header + Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level. + +java.lang.IllegalArgumentException: Invalid character found in method name [CNXN0x000x000x000x010x000x000x040x000x1b0x000x000x00M0x0a0x000x000xbc0xb10xa70xb1host::features=cmd,shell_v2...]. HTTP method names must be tokens + at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:419) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:271) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 4.1.7 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:51.110  INFO 11769 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 11769 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) +2023-10-27 12:15:51.177 DEBUG 11769 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:51.187  INFO 11769 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:21.248  INFO 11769 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9635fa +2023-10-27 12:16:24.724  INFO 11769 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 12:16:24.730  INFO 11769 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 12:16:24.764  INFO 11769 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@7c041b41 +2023-10-27 12:16:24.852  INFO 11769 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = LD-Shuyo +spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:25.103  INFO 11769 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl +2023-10-27 12:16:30.860  WARN 11769 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:31.121  WARN 11769 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:31.673  WARN 11769 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:31.805  INFO 11769 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:16:44.056  WARN 11769 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 12:16:44.431 ERROR 11769 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + +2023-10-27 13:37:20.408  WARN 9656 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=LD-Shuyo, managementUrl=http://0.0.0.0:5555/actuator, healthUrl=http://0.0.0.0:5555/actuator/health, serviceUrl=http://0.0.0.0:5555/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 4.1.7 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:49.510  INFO 28736 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 28736 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) +2023-10-27 13:37:49.515 DEBUG 28736 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:49.520  INFO 28736 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:15.158  INFO 28736 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9635fa +2023-10-27 13:38:18.378  INFO 28736 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 13:38:18.378  INFO 28736 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 13:38:18.426  INFO 28736 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@7c041b41 +2023-10-27 13:38:18.475  INFO 28736 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = LD-Shuyo +spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:18.592  INFO 28736 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl +2023-10-27 13:38:22.474  WARN 28736 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:22.592  WARN 28736 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:23.318  WARN 28736 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:23.588  INFO 28736 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:38:34.008  WARN 28736 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 13:38:34.282 ERROR 28736 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 4.1.7 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:50.167  INFO 30127 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 30127 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) +2023-10-27 13:38:50.182 DEBUG 30127 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:50.183  INFO 30127 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:13.373  INFO 30127 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c67e137 +2023-10-27 13:39:15.941  INFO 30127 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 13:39:15.941  INFO 30127 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 13:39:15.950  INFO 30127 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@ce5a68e +2023-10-27 13:39:15.963  INFO 30127 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = LD-Shuyo +spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:16.079  INFO 30127 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl +2023-10-27 13:39:22.064  WARN 30127 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:22.265  WARN 30127 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:22.690  WARN 30127 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:22.923  INFO 30127 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:39:33.817  WARN 30127 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 13:39:34.307 ERROR 30127 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + +2023-10-27 13:53:11.615  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:11.624  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:11.689  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:11.772  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2db15427 +2023-10-27 13:53:11.816  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b838dcf +2023-10-27 13:53:11.832 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:11.976  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:11.977  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:12.169 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:12.170  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql +2023-10-27 13:53:12.195 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? +2023-10-27 13:53:12.195  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What did the suffragettes stand for? +2023-10-27 13:53:12.220  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What did the suffragettes stand for?' the language 'en' was detected. +2023-10-27 13:53:12.275 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:12.277  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7751e46 +2023-10-27 13:53:12.278 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:12.299  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:12.299  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:12.300 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:12.314 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 692 ms +2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4c77f53a +2023-10-27 13:53:40.434  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5ff5fa94 +2023-10-27 13:53:40.435 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:40.437  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:40.438  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:40.445 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:40.445  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql +2023-10-27 13:53:40.447 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? +2023-10-27 13:53:40.447  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which universities have more than 200000 students? +2023-10-27 13:53:40.448  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which universities have more than 200000 students?' the language 'en' was detected. +2023-10-27 13:53:40.454 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:40.454  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c580a75 +2023-10-27 13:53:40.454 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:40.456  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:40.456  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:40.456 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:40.464 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 49 ms +2023-10-27 13:53:57.170  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:57.170  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:57.170  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:57.171  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@235d18c4 +2023-10-27 13:53:57.204  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d9af2df +2023-10-27 13:53:57.205 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:57.206  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:57.207  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:57.215 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 +2023-10-27 13:53:57.215  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql +2023-10-27 13:53:57.217 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? +2023-10-27 13:53:57.217  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is TNFAIP1 ? +2023-10-27 13:53:57.217  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is TNFAIP1 ?' the language 'en' was detected. +2023-10-27 13:53:57.223 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 +2023-10-27 13:53:57.223  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29a573b4 +2023-10-27 13:53:57.223 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:57.225  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:57.226  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:57.226 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:57.234 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 64 ms +2023-10-27 13:54:02.035  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:54:02.035  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:54:02.036  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:54:02.036  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4671aba +2023-10-27 13:54:02.113  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@aa0f446 +2023-10-27 13:54:02.114 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:02.116  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:02.116  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:02.122 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 +2023-10-27 13:54:02.123  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 found in urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e at http://localhost:8080/sparql +2023-10-27 13:54:02.125 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? +2023-10-27 13:54:02.126  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many casualties were a result of the Troubles? +2023-10-27 13:54:02.127  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many casualties were a result of the Troubles?' the language 'en' was detected. +2023-10-27 13:54:02.134 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 +2023-10-27 13:54:02.134  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e9f71ca +2023-10-27 13:54:02.134 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:02.137  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:02.138  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:02.138 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:02.148 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 113 ms +2023-10-27 13:54:07.412  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.412  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.412  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.413  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@449af798 +2023-10-27 13:54:07.602  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44db185a +2023-10-27 13:54:07.602 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:07.607  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:07.611  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:07.621 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 +2023-10-27 13:54:07.622  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql +2023-10-27 13:54:07.623 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? +2023-10-27 13:54:07.624  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Where does the Nutri-Score originate from? +2023-10-27 13:54:07.624  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Where does the Nutri-Score originate from?' the language 'en' was detected. +2023-10-27 13:54:07.631 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 +2023-10-27 13:54:07.631  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21b6fa17 +2023-10-27 13:54:07.631 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:07.633  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.634  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.634 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.640 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 228 ms +2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@196f4248 +2023-10-27 13:54:15.283  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@17a8bf15 +2023-10-27 13:54:15.283 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:15.286  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:15.287  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:15.295 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 +2023-10-27 13:54:15.295  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql +2023-10-27 13:54:15.297 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? +2023-10-27 13:54:15.297  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Did Kobe Bryant leave the Lakers when LeBron James joined that team? +2023-10-27 13:54:15.298  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Did Kobe Bryant leave the Lakers when LeBron James joined that team?' the language 'en' was detected. +2023-10-27 13:54:15.303 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 +2023-10-27 13:54:15.304  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13972938 +2023-10-27 13:54:15.305 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:15.308  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:15.308  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:15.309 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:15.316 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 88 ms +2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@27780c9a +2023-10-27 13:54:22.823  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57aa77ac +2023-10-27 13:54:22.823 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:22.824  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:22.824  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:22.831 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d +2023-10-27 13:54:22.831  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d found in urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc at http://localhost:8080/sparql +2023-10-27 13:54:22.833 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 13:54:22.833  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many countries have never been members of the UN? +2023-10-27 13:54:22.833  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many countries have never been members of the UN?' the language 'en' was detected. +2023-10-27 13:54:22.839 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d +2023-10-27 13:54:22.839  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7160c2e4 +2023-10-27 13:54:22.839 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:22.841  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:22.842  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:22.842 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:22.850 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 48 ms +2023-10-27 13:54:28.560  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:28.561  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:28.561  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:28.561  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5ea6e536 +2023-10-27 13:54:28.568  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@56bf38d4 +2023-10-27 13:54:28.568 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:28.569  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:28.569  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:28.575 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:28.575  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql +2023-10-27 13:54:28.578 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:28.578  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:28.579  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What are the German names of academic disciplines containing “linguistik”?' the language 'en' was detected. +2023-10-27 13:54:28.584 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:28.584  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@784e19ea +2023-10-27 13:54:28.584 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:28.585  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:28.586  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:28.586 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:28.591 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 30 ms +2023-10-27 13:54:33.468  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:33.469  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:33.469  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:33.469  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5e65f4b8 +2023-10-27 13:54:33.478  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c57056b +2023-10-27 13:54:33.479 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:33.480  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:33.480  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:33.486 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c +2023-10-27 13:54:33.486  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql +2023-10-27 13:54:33.488 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:33.488  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:33.488  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Does Bremerhaven's local dialing code start with 4?' the language 'en' was detected. +2023-10-27 13:54:33.496 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c +2023-10-27 13:54:33.496  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@b5af959 +2023-10-27 13:54:33.496 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:33.498  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:33.499  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:33.499 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:33.505 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 36 ms +2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@40e8138b +2023-10-27 13:54:34.931  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34209e9f +2023-10-27 13:54:34.931 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:34.932  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.932  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.937 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 +2023-10-27 13:54:34.937  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql +2023-10-27 13:54:34.940 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? +2023-10-27 13:54:34.940  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many things are part of the "One Piece" Franchise? +2023-10-27 13:54:34.940  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many things are part of the "One Piece" Franchise?' the language 'en' was detected. +2023-10-27 13:54:34.947 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 +2023-10-27 13:54:34.947  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44f1f3d5 +2023-10-27 13:54:34.948 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:34.949  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.949  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.949 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.965 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 43 ms +2023-10-27 13:55:10.591  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:10.591  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:10.591  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:10.592  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4b9dfe7d +2023-10-27 13:55:10.603  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a9c570e +2023-10-27 13:55:10.604 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:10.605  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:10.606  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:10.617 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 +2023-10-27 13:55:10.618  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 found in urn:graph:713e7115-51ec-4875-b710-943891a2849a at http://localhost:8080/sparql +2023-10-27 13:55:10.621 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the mother tongue of the author Chimamanda Ngozi Adichie ? +2023-10-27 13:55:10.621  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the mother tongue of the author Chimamanda Ngozi Adichie ? +2023-10-27 13:55:10.621  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the mother tongue of the author Chimamanda Ngozi Adichie ?' the language 'en' was detected. +2023-10-27 13:55:10.631 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 +2023-10-27 13:55:10.631  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40318345 +2023-10-27 13:55:10.632 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:10.633  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:10.633  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:10.633 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:10.639 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 48 ms +2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@62b23b7d +2023-10-27 13:55:14.340  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71872684 +2023-10-27 13:55:14.341 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:14.341  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:14.342  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:14.350 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 +2023-10-27 13:55:14.350  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql +2023-10-27 13:55:14.352 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the magazine in which hunter x hunter is published established? +2023-10-27 13:55:14.352  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: when was the magazine in which hunter x hunter is published established? +2023-10-27 13:55:14.352  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'when was the magazine in which hunter x hunter is published established?' the language 'en' was detected. +2023-10-27 13:55:14.358 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 +2023-10-27 13:55:14.358  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d02f926 +2023-10-27 13:55:14.358 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:14.361  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:14.361  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:14.361 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:14.368 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 35 ms +2023-10-27 13:55:19.314  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:19.315  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:19.315  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:19.315  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@73144373 +2023-10-27 13:55:19.322  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7dd3a361 +2023-10-27 13:55:19.322 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:19.323  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:19.324  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:19.331 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f +2023-10-27 13:55:19.331  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql +2023-10-27 13:55:19.333 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation which forest is bigger, Amazon Rainforest or Congo Basin? +2023-10-27 13:55:19.333  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: which forest is bigger, Amazon Rainforest or Congo Basin? +2023-10-27 13:55:19.333  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'which forest is bigger, Amazon Rainforest or Congo Basin?' the language 'en' was detected. +2023-10-27 13:55:19.338 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f +2023-10-27 13:55:19.339  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79ec2803 +2023-10-27 13:55:19.339 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:19.340  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:19.340  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:19.340 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:19.347 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 32 ms +2023-10-27 13:55:29.339  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:29.340  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:29.340  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:29.340  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3d802695 +2023-10-27 13:55:29.352  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a7bf163 +2023-10-27 13:55:29.352 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:29.353  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:29.353  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:29.359 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 +2023-10-27 13:55:29.359  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql +2023-10-27 13:55:29.362 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:29.362  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:29.362  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the website of NPR's “Tiny Desk Concert”?' the language 'en' was detected. +2023-10-27 13:55:29.367 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 +2023-10-27 13:55:29.367  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e68fa97 +2023-10-27 13:55:29.367 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:29.369  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:29.369  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:29.369 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:29.374 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 34 ms +2023-10-27 13:55:37.180  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:37.181  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:37.181  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:37.181  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1e68cd47 +2023-10-27 13:55:37.191  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@770e04e9 +2023-10-27 13:55:37.191 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:37.192  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:37.193  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:37.199 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 +2023-10-27 13:55:37.199  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql +2023-10-27 13:55:37.201 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many public holidays does the state Bavaria have in a year? +2023-10-27 13:55:37.201  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many public holidays does the state Bavaria have in a year? +2023-10-27 13:55:37.201  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many public holidays does the state Bavaria have in a year?' the language 'en' was detected. +2023-10-27 13:55:37.206 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 +2023-10-27 13:55:37.207  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5858eb44 +2023-10-27 13:55:37.207 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:37.208  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:37.208  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:37.208 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:37.215 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 35 ms +2023-10-27 13:56:04.794  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:04.795  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:04.795  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:04.795  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@242b8d1a +2023-10-27 13:56:04.802  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37600317 +2023-10-27 13:56:04.804 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:56:04.805  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:04.805  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:04.812 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:04.812  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql +2023-10-27 13:56:04.814 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:04.814  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:04.814  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which American presidents followed in their father‘s step and also became the president?' the language 'en' was detected. +2023-10-27 13:56:04.819 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:04.819  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2e8b8d4f +2023-10-27 13:56:04.819 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:56:04.820  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:04.821  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:04.821 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:04.826 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 31 ms +2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@580d986a +2023-10-27 13:56:35.609  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@147cf615 +2023-10-27 13:56:35.609 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:56:35.611  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:35.611  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:35.618 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d +2023-10-27 13:56:35.618  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql +2023-10-27 13:56:35.620 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Goethe’s unmarried partner born ? +2023-10-27 13:56:35.620  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Where was Goethe’s unmarried partner born ? +2023-10-27 13:56:35.620  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Where was Goethe’s unmarried partner born ?' the language 'en' was detected. +2023-10-27 13:56:35.625 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d +2023-10-27 13:56:35.625  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ffcde39 +2023-10-27 13:56:35.626 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:56:35.627  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:35.628  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:35.628 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:35.633 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 34 ms +2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3ceea95a +2023-10-27 13:57:06.321  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6db07a6f +2023-10-27 13:57:06.321 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:06.322  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:06.322  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:06.328 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:06.328  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql +2023-10-27 13:57:06.330 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was the University of Hamburg founded? +2023-10-27 13:57:06.330  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: When was the University of Hamburg founded? +2023-10-27 13:57:06.330  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'When was the University of Hamburg founded?' the language 'en' was detected. +2023-10-27 13:57:06.335 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:06.335  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d981413 +2023-10-27 13:57:06.335 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:06.337  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:06.337  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:06.337 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:06.342 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 28 ms +2023-10-27 13:57:28.043  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:28.044  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:28.045  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:28.045  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@50d128ec +2023-10-27 13:57:28.058  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@80bd544 +2023-10-27 13:57:28.059 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:28.062  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:28.064  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:28.076 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:28.076  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql +2023-10-27 13:57:28.081 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? +2023-10-27 13:57:28.081  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the twitter name of Running Wild? +2023-10-27 13:57:28.081  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the twitter name of Running Wild?' the language 'en' was detected. +2023-10-27 13:57:28.093 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:28.094  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f25a1e0 +2023-10-27 13:57:28.094 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:28.097  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:28.097  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:28.097 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:28.108 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 64 ms +2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@38f371a4 +2023-10-27 13:57:30.708  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49c29236 +2023-10-27 13:57:30.708 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:30.725  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:30.726  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:30.741 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 +2023-10-27 13:57:30.741  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql +2023-10-27 13:57:30.748 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many different colors can water take? +2023-10-27 13:57:30.749  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many different colors can water take? +2023-10-27 13:57:30.749  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many different colors can water take?' the language 'en' was detected. +2023-10-27 13:57:30.762 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 +2023-10-27 13:57:30.763  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d7aba38 +2023-10-27 13:57:30.763 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:30.767  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:30.768  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:30.768 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:30.786 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 133 ms +2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6b33e116 +2023-10-27 13:57:45.763  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1388f237 +2023-10-27 13:57:45.764 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:45.765  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:45.766  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:45.773 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:45.773  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql +2023-10-27 13:57:45.775 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? +2023-10-27 13:57:45.775  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many people died due to the Great Leap Forward according to the highest estimate? +2023-10-27 13:57:45.775  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many people died due to the Great Leap Forward according to the highest estimate?' the language 'en' was detected. +2023-10-27 13:57:45.783 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:45.783  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@244723ea +2023-10-27 13:57:45.783 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:45.785  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:45.785  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:45.785 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:45.791 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 93 ms +2023-10-27 13:57:48.166  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:48.167  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:48.167  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:48.167  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3366561c +2023-10-27 13:57:48.174  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3759d4a8 +2023-10-27 13:57:48.175 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:48.175  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:48.176  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:48.183 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 +2023-10-27 13:57:48.183  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql +2023-10-27 13:57:48.185 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in the country where ghost in the shell is born, who is the current head of the state? +2023-10-27 13:57:48.185  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: in the country where ghost in the shell is born, who is the current head of the state? +2023-10-27 13:57:48.186  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'in the country where ghost in the shell is born, who is the current head of the state?' the language 'en' was detected. +2023-10-27 13:57:48.195 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 +2023-10-27 13:57:48.196  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@725b5c27 +2023-10-27 13:57:48.196 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:48.198  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:48.198  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:48.198 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:48.206 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 39 ms +2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@639b5b28 +2023-10-27 13:57:54.993  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57e151f9 +2023-10-27 13:57:54.993 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:54.995  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:54.996  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:55.002 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:55.003  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql +2023-10-27 13:57:55.004 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? +2023-10-27 13:57:55.005  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many movies does the Scream franchise have? +2023-10-27 13:57:55.005  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many movies does the Scream franchise have?' the language 'en' was detected. +2023-10-27 13:57:55.012 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:55.013  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24ded94e +2023-10-27 13:57:55.013 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:55.015  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:55.015  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:55.015 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:55.021 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 39 ms +2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5695b52e +2023-10-27 13:58:02.282  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@358bd0b6 +2023-10-27 13:58:02.282 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:02.282  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:02.283  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:02.287 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 +2023-10-27 13:58:02.287  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql +2023-10-27 13:58:02.289 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:58:02.289  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:58:02.289  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?' the language 'en' was detected. +2023-10-27 13:58:02.294 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 +2023-10-27 13:58:02.295  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67098105 +2023-10-27 13:58:02.295 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:02.297  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:02.297  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:02.297 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:02.303 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 30 ms +2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@152c9993 +2023-10-27 13:58:12.855  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cc15615 +2023-10-27 13:58:12.855 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:12.856  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:12.856  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:12.861 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:12.861  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql +2023-10-27 13:58:12.864 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:12.864  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:12.864  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who is the oldest cast member of the Netflix show “Queer Eye” ?' the language 'en' was detected. +2023-10-27 13:58:12.869 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:12.869  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@324c2ce0 +2023-10-27 13:58:12.869 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:12.870  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:12.871  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:12.871 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:12.876 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 28 ms +2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@51b60aff +2023-10-27 13:58:38.041  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72eb3f3c +2023-10-27 13:58:38.041 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:38.042  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:38.042  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:38.050 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 +2023-10-27 13:58:38.050  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql +2023-10-27 13:58:38.051 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation how many plays has William Shakespeare written in the 16th century. +2023-10-27 13:58:38.051  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: how many plays has William Shakespeare written in the 16th century. +2023-10-27 13:58:38.052  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'how many plays has William Shakespeare written in the 16th century.' the language 'en' was detected. +2023-10-27 13:58:38.056 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 +2023-10-27 13:58:38.056  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2fe55075 +2023-10-27 13:58:38.056 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:38.057  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:38.057  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:38.057 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:38.064 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 30 ms +2023-10-27 13:58:49.084  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:49.085  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:49.085  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:49.085  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6c7925ac +2023-10-27 13:58:49.093  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@525717ec +2023-10-27 13:58:49.094 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:49.095  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:49.096  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:49.101 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:49.101  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql +2023-10-27 13:58:49.103 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:49.103  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:49.103  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which actor starring in Free Guy also starred in Deadpool?' the language 'en' was detected. +2023-10-27 13:58:49.107 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:49.108  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@77a61c4f +2023-10-27 13:58:49.108 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:49.109  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:49.109  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:49.109 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:49.116 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 32 ms +2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@42b472cb +2023-10-27 13:59:03.270  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43630a37 +2023-10-27 13:59:03.270 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:03.271  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:03.271  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:03.277 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:59:03.277  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql +2023-10-27 13:59:03.280 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? +2023-10-27 13:59:03.280  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What notes does a C major chord consist of? +2023-10-27 13:59:03.280  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What notes does a C major chord consist of?' the language 'en' was detected. +2023-10-27 13:59:03.285 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:59:03.286  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a667a67 +2023-10-27 13:59:03.286 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:03.287  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:03.287  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:03.287 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:03.292 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 34 ms +2023-10-27 13:59:04.824  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.824  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.825  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.825  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6d1ac6fa +2023-10-27 13:59:04.833  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@54e1826a +2023-10-27 13:59:04.834 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:04.834  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:04.834  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:04.840 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f +2023-10-27 13:59:04.840  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql +2023-10-27 13:59:04.841 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 13:59:04.841  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: in which language does the united stated have the shortest short name? +2023-10-27 13:59:04.841  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'in which language does the united stated have the shortest short name?' the language 'en' was detected. +2023-10-27 13:59:04.847 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f +2023-10-27 13:59:04.847  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9527f96 +2023-10-27 13:59:04.847 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:04.849  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.849  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.849 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.855 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 31 ms +2023-10-27 13:59:34.113  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:34.114  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:34.114  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:34.114  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4dfdba35 +2023-10-27 13:59:34.122  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@36ba4a61 +2023-10-27 13:59:34.123 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:34.124  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:34.124  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:34.132 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:34.132  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql +2023-10-27 13:59:34.133 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was the first female chancellor in Germany ever married? +2023-10-27 13:59:34.133  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Was the first female chancellor in Germany ever married? +2023-10-27 13:59:34.134  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Was the first female chancellor in Germany ever married?' the language 'en' was detected. +2023-10-27 13:59:34.138 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:34.139  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d5f2260 +2023-10-27 13:59:34.140 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:34.141  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:34.141  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:34.141 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:34.148 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 34 ms +2023-10-27 13:59:36.853  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.854  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.854  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.854  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7f399e36 +2023-10-27 13:59:36.865  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e287043 +2023-10-27 13:59:36.865 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:36.866  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:36.866  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:36.889 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 +2023-10-27 13:59:36.890  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql +2023-10-27 13:59:36.895 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:36.896  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:36.896  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who are the actresses in Portrait of a Lady on Fire?' the language 'en' was detected. +2023-10-27 13:59:36.904 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 +2023-10-27 13:59:36.906  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@588fee6d +2023-10-27 13:59:36.907 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:36.908  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.908  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.908 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.916 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 61 ms +2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6eaf220d +2023-10-27 13:59:51.959  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1a059485 +2023-10-27 13:59:51.959 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:51.960  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:51.960  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:51.967 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 13:59:51.967  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql +2023-10-27 13:59:51.969 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the professions of John Lennon’s sons? +2023-10-27 13:59:51.969  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What are the professions of John Lennon’s sons? +2023-10-27 13:59:51.969  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What are the professions of John Lennon’s sons?' the language 'en' was detected. +2023-10-27 13:59:51.973 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 13:59:51.974  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d80222 +2023-10-27 13:59:51.974 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:51.975  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:51.975  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:51.975 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:51.981 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 30 ms +2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@35582c8d +2023-10-27 14:00:06.185  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@28efa42c +2023-10-27 14:00:06.185 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:06.185  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:06.186  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:06.191 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c +2023-10-27 14:00:06.191  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c found in urn:graph:f48704a2-e326-4237-b784-257818c7ed9b at http://localhost:8080/sparql +2023-10-27 14:00:06.193 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second game developed by Piranha Bytes? +2023-10-27 14:00:06.193  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the second game developed by Piranha Bytes? +2023-10-27 14:00:06.193  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the second game developed by Piranha Bytes?' the language 'en' was detected. +2023-10-27 14:00:06.200 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c +2023-10-27 14:00:06.201  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@426d2eaa +2023-10-27 14:00:06.201 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:06.202  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:06.202  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:06.202 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:06.207 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 32 ms +2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@565433d8 +2023-10-27 14:00:10.418  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@229b4355 +2023-10-27 14:00:10.419 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:10.420  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:10.420  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:10.426 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 +2023-10-27 14:00:10.426  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql +2023-10-27 14:00:10.428 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? +2023-10-27 14:00:10.428  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which egyptian pyramid is the tallest? +2023-10-27 14:00:10.428  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which egyptian pyramid is the tallest?' the language 'en' was detected. +2023-10-27 14:00:10.436 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 +2023-10-27 14:00:10.436  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7656147b +2023-10-27 14:00:10.436 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:10.438  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:10.438  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:10.438 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:10.447 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 38 ms +2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5b94d35b +2023-10-27 14:00:18.451  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6082e3c5 +2023-10-27 14:00:18.451 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:18.452  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:18.452  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:18.458 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d +2023-10-27 14:00:18.458  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql +2023-10-27 14:00:18.460 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:18.460  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:18.461  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who was the fellow Hobbit who was an enemy of Frodo?' the language 'en' was detected. +2023-10-27 14:00:18.468 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d +2023-10-27 14:00:18.469  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3828cf6d +2023-10-27 14:00:18.469 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:18.470  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:18.470  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:18.470 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:18.476 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 35 ms +2023-10-27 14:00:21.784  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:21.784  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:21.784  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:21.785  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7bf2c0d3 +2023-10-27 14:00:21.791  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@8687503 +2023-10-27 14:00:21.791 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:21.792  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:21.792  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:21.799 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 +2023-10-27 14:00:21.799  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql +2023-10-27 14:00:21.800 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? +2023-10-27 14:00:21.800  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Through which countries does the Danube go? +2023-10-27 14:00:21.801  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Through which countries does the Danube go?' the language 'en' was detected. +2023-10-27 14:00:21.805 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 +2023-10-27 14:00:21.805  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4093d18c +2023-10-27 14:00:21.805 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:21.806  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:21.806  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:21.806 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:21.811 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 27 ms +2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@76759167 +2023-10-27 14:00:29.793  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@56f9b18e +2023-10-27 14:00:29.793 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:29.794  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:29.794  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:29.800 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f +2023-10-27 14:00:29.800  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql +2023-10-27 14:00:29.802 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? +2023-10-27 14:00:29.802  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the second letter in the Greek alphabet? +2023-10-27 14:00:29.802  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the second letter in the Greek alphabet?' the language 'en' was detected. +2023-10-27 14:00:29.807 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f +2023-10-27 14:00:29.807  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32f41072 +2023-10-27 14:00:29.807 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:29.808  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:29.808  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:29.808 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:29.814 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 28 ms +2023-10-27 14:00:35.414  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:35.415  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:35.415  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:35.415  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@bf7e2b0 +2023-10-27 14:00:35.422  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@388c05d6 +2023-10-27 14:00:35.422 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:35.422  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:35.422  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:35.427 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:35.427  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql +2023-10-27 14:00:35.429 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? +2023-10-27 14:00:35.430  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which of the dragons in Game of Thrones died? +2023-10-27 14:00:35.430  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which of the dragons in Game of Thrones died?' the language 'en' was detected. +2023-10-27 14:00:35.435 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:35.435  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75ebd0ec +2023-10-27 14:00:35.436 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:35.436  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:35.436  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:35.437 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:35.441 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 27 ms +2023-10-27 14:00:45.977  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:45.978  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:45.978  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:45.978  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7c2e5a2f +2023-10-27 14:00:45.985  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b86b0ed +2023-10-27 14:00:45.986 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:45.986  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:45.986  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:45.992 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:45.992  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql +2023-10-27 14:00:45.994 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? +2023-10-27 14:00:45.994  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many movies were directed by Akira Kurosawa ? +2023-10-27 14:00:45.994  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many movies were directed by Akira Kurosawa ?' the language 'en' was detected. +2023-10-27 14:00:46.001 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:46.001  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d11b0a4 +2023-10-27 14:00:46.001 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:46.002  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:46.003  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:46.003 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:46.008 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 30 ms +2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1274a368 +2023-10-27 14:01:40.770  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7337b9c7 +2023-10-27 14:01:40.770 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:01:40.771  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:40.771  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:40.776 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 +2023-10-27 14:01:40.776  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql +2023-10-27 14:01:40.778 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the boiling point of water? +2023-10-27 14:01:40.778  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the boiling point of water? +2023-10-27 14:01:40.778  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the boiling point of water?' the language 'en' was detected. +2023-10-27 14:01:40.784 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 +2023-10-27 14:01:40.784  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@28de2724 +2023-10-27 14:01:40.784 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:40.785  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.785  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.785 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.790 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 28 ms +2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@229ca931 +2023-10-27 14:01:46.819  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5f6fa832 +2023-10-27 14:01:46.819 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:01:46.820  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:46.820  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:46.825 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:46.825  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql +2023-10-27 14:01:46.828 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:46.828  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:46.828  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many times did the Italian national soccer team win the Fifa World Cup?' the language 'en' was detected. +2023-10-27 14:01:46.835 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:46.835  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2884e4d1 +2023-10-27 14:01:46.835 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:46.836  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:46.836  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:46.836 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:46.842 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 32 ms +2023-10-27 14:02:29.066  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:29.067  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:29.067  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:29.067  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5230a4ba +2023-10-27 14:02:29.080  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66662e2e +2023-10-27 14:02:29.080 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:29.081  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:29.081  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:29.086 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d +2023-10-27 14:02:29.086  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql +2023-10-27 14:02:29.088 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:02:29.088  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:02:29.088  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which started first: impressionism or expressionism (art movements)?' the language 'en' was detected. +2023-10-27 14:02:29.095 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d +2023-10-27 14:02:29.095  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e1c2581 +2023-10-27 14:02:29.096 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:29.097  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:29.098  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:29.098 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:29.105 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 39 ms +2023-10-27 14:02:35.539  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:35.540  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:35.540  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:35.540  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2968645c +2023-10-27 14:02:35.546  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15605b6a +2023-10-27 14:02:35.546 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:35.548  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:35.548  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:35.553 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:35.553  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql +2023-10-27 14:02:35.555 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded the Worpswede artist colony ? +2023-10-27 14:02:35.555  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who founded the Worpswede artist colony ? +2023-10-27 14:02:35.555  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who founded the Worpswede artist colony ?' the language 'en' was detected. +2023-10-27 14:02:35.560 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:35.560  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63906375 +2023-10-27 14:02:35.560 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:35.561  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:35.561  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:35.561 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:35.568 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 28 ms +2023-10-27 14:03:06.969  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:06.970  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:06.970  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:06.970  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@56e16cc +2023-10-27 14:03:06.975  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71267ea8 +2023-10-27 14:03:06.976 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:06.976  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:06.976  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:06.983 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:06.983  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql +2023-10-27 14:03:06.985 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:06.985  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:06.985  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?' the language 'en' was detected. +2023-10-27 14:03:06.989 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:06.990  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@243d6a64 +2023-10-27 14:03:06.990 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:06.991  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:06.991  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:06.991 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:06.995 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 25 ms +2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2162d51a +2023-10-27 14:03:26.052  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@163a5dbd +2023-10-27 14:03:26.052 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:26.053  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:26.053  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:26.058 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf +2023-10-27 14:03:26.058  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql +2023-10-27 14:03:26.059 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? +2023-10-27 14:03:26.059  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which animal participated in a military operation with the Australian Defence Force? +2023-10-27 14:03:26.060  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which animal participated in a military operation with the Australian Defence Force?' the language 'en' was detected. +2023-10-27 14:03:26.064 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf +2023-10-27 14:03:26.064  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@588d273c +2023-10-27 14:03:26.064 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:26.066  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:26.066  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:26.066 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:26.071 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 28 ms +2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@56a9050b +2023-10-27 14:03:32.469  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11bbebce +2023-10-27 14:03:32.469 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:32.470  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:32.470  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:32.475 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e +2023-10-27 14:03:32.475  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql +2023-10-27 14:03:32.477 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Whom did Clara Westhoff marry? +2023-10-27 14:03:32.477  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Whom did Clara Westhoff marry? +2023-10-27 14:03:32.477  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Whom did Clara Westhoff marry?' the language 'en' was detected. +2023-10-27 14:03:32.481 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e +2023-10-27 14:03:32.482  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3337fff3 +2023-10-27 14:03:32.482 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:32.483  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:32.483  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:32.483 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:32.489 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 29 ms +2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@169c686e +2023-10-27 14:03:43.237  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c382d73 +2023-10-27 14:03:43.237 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:43.238  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:43.238  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:43.243 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 +2023-10-27 14:03:43.243  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 found in urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad at http://localhost:8080/sparql +2023-10-27 14:03:43.244 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What percentage of Andorra is covered with water? +2023-10-27 14:03:43.244  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What percentage of Andorra is covered with water? +2023-10-27 14:03:43.244  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What percentage of Andorra is covered with water?' the language 'en' was detected. +2023-10-27 14:03:43.250 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 +2023-10-27 14:03:43.250  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57d680bb +2023-10-27 14:03:43.250 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:43.251  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:43.251  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:43.252 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:43.257 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 28 ms +2023-10-27 14:03:48.270  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:48.270  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:48.270  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:48.271  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@155bfe1e +2023-10-27 14:03:48.284  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@42999d7b +2023-10-27 14:03:48.284 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:48.285  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:48.285  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:48.289 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 +2023-10-27 14:03:48.289  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql +2023-10-27 14:03:48.291 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? +2023-10-27 14:03:48.291  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: who is the youngested member in g-idle? +2023-10-27 14:03:48.291  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'who is the youngested member in g-idle?' the language 'en' was detected. +2023-10-27 14:03:48.294 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 +2023-10-27 14:03:48.295  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1559cc58 +2023-10-27 14:03:48.295 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:48.296  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:48.296  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:48.296 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:48.303 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 33 ms +2023-10-27 14:04:13.441  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:13.442  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:13.442  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:13.442  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1f1a7036 +2023-10-27 14:04:13.450  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@116baed8 +2023-10-27 14:04:13.450 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:13.451  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:13.451  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:13.456 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:13.456  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql +2023-10-27 14:04:13.458 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? +2023-10-27 14:04:13.458  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: When was Rumi born? +2023-10-27 14:04:13.458  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'When was Rumi born?' the language 'en' was detected. +2023-10-27 14:04:13.462 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:13.462  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fb465c0 +2023-10-27 14:04:13.462 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:13.463  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:13.463  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:13.463 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:13.468 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 26 ms +2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@f8e0837 +2023-10-27 14:04:20.344  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7aa3b77c +2023-10-27 14:04:20.344 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:20.345  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:20.345  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:20.349 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd +2023-10-27 14:04:20.349  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql +2023-10-27 14:04:20.350 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? +2023-10-27 14:04:20.350  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What are the titles of the Star Wars series movies? +2023-10-27 14:04:20.351  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What are the titles of the Star Wars series movies?' the language 'en' was detected. +2023-10-27 14:04:20.354 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd +2023-10-27 14:04:20.354  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38b255be +2023-10-27 14:04:20.354 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:20.355  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:20.355  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:20.355 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:20.360 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 23 ms +2023-10-27 14:05:00.092  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:05:00.092  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:05:00.093  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:05:00.093  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3c1a2728 +2023-10-27 14:05:00.098  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2205fcfd +2023-10-27 14:05:00.099 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:00.099  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:00.099  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:00.104 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:05:00.104  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql +2023-10-27 14:05:00.106 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? +2023-10-27 14:05:00.106  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the capital of the prefecture Tokyo ? +2023-10-27 14:05:00.106  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the capital of the prefecture Tokyo ?' the language 'en' was detected. +2023-10-27 14:05:00.109 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:05:00.109  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c2e96e8 +2023-10-27 14:05:00.109 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:00.110  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:00.110  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:00.110 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:00.115 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 23 ms +2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3aa2cb71 +2023-10-27 14:05:01.466  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57bb60ae +2023-10-27 14:05:01.466 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:01.467  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:01.467  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:01.479 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b +2023-10-27 14:05:01.479  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql +2023-10-27 14:05:01.480 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? +2023-10-27 14:05:01.480  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many spouses do head of states have on average? +2023-10-27 14:05:01.480  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many spouses do head of states have on average?' the language 'en' was detected. +2023-10-27 14:05:01.484 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b +2023-10-27 14:05:01.484  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cb0d737 +2023-10-27 14:05:01.484 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:01.485  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:01.485  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:01.485 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:01.490 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 31 ms +2023-10-27 14:05:09.293  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:05:09.294  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:05:09.294  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:05:09.294  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@45b37db3 +2023-10-27 14:05:09.300  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3019b273 +2023-10-27 14:05:09.301 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:09.301  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:09.301  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:09.305 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b +2023-10-27 14:05:09.305  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql +2023-10-27 14:05:09.307 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 14:05:09.307  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 14:05:09.307  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Did the Chicago Bulls win at least two seasons of the NBA championship?' the language 'en' was detected. +2023-10-27 14:05:09.310 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b +2023-10-27 14:05:09.311  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d4752b6 +2023-10-27 14:05:09.311 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:09.311  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:09.312  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:09.312 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:09.316 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 22 ms +2023-10-27 14:05:33.934  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:33.934  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:33.935  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:33.935  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@74bcdf66 +2023-10-27 14:05:33.943  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4e91668d +2023-10-27 14:05:33.943 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:33.944  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:33.944  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:33.949 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:33.949  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql +2023-10-27 14:05:33.950 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 14:05:33.950  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: in which language does the united stated have the shortest short name? +2023-10-27 14:05:33.951  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'in which language does the united stated have the shortest short name?' the language 'en' was detected. +2023-10-27 14:05:33.955 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:33.955  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@42c9cfb0 +2023-10-27 14:05:33.955 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:33.956  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:33.956  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:33.956 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:33.961 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 27 ms +2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@77136686 +2023-10-27 14:06:07.215  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@82317e3 +2023-10-27 14:06:07.215 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:07.216  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:07.216  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:07.221 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:07.221  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql +2023-10-27 14:06:07.222 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many poems did Allen Ginsberg published? +2023-10-27 14:06:07.222  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many poems did Allen Ginsberg published? +2023-10-27 14:06:07.222  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many poems did Allen Ginsberg published?' the language 'en' was detected. +2023-10-27 14:06:07.226 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:07.226  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f5c49cc +2023-10-27 14:06:07.226 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:07.227  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:07.227  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:07.227 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:07.232 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 23 ms +2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1b3cc0e +2023-10-27 14:06:34.182  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@364e1327 +2023-10-27 14:06:34.182 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:34.183  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:34.183  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:34.189 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 +2023-10-27 14:06:34.189  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 found in urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 at http://localhost:8080/sparql +2023-10-27 14:06:34.191 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? +2023-10-27 14:06:34.191  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Is Dr. Pepper named after its inventor? +2023-10-27 14:06:34.192  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Is Dr. Pepper named after its inventor?' the language 'en' was detected. +2023-10-27 14:06:34.196 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 +2023-10-27 14:06:34.196  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@725d67e6 +2023-10-27 14:06:34.196 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:34.197  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:34.197  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:34.197 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:34.203 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 31 ms +2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@42f17a9c +2023-10-27 14:06:40.734  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e24c8f0 +2023-10-27 14:06:40.735 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:40.735  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.736  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.742 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 +2023-10-27 14:06:40.743  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql +2023-10-27 14:06:40.744 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? +2023-10-27 14:06:40.744  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many female Chinese Empresses have there been? +2023-10-27 14:06:40.745  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many female Chinese Empresses have there been?' the language 'en' was detected. +2023-10-27 14:06:40.750 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 +2023-10-27 14:06:40.751  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@62966b8a +2023-10-27 14:06:40.751 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:40.752  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.752  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.752 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.759 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 35 ms +2023-10-27 14:06:47.843  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:47.843  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:47.844  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:47.844  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5e77defd +2023-10-27 14:06:47.853  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f77e65 +2023-10-27 14:06:47.854 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:47.854  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:47.855  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:47.859 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:47.860  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql +2023-10-27 14:06:47.861 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:47.861  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:47.862  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who is the creator of the Dinosaurs tv show ?' the language 'en' was detected. +2023-10-27 14:06:47.866 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:47.867  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7d80de22 +2023-10-27 14:06:47.867 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:47.868  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:47.868  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:47.868 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:47.873 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 30 ms +2023-10-27 14:07:14.892  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:14.892  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:14.893  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:14.893  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@22a29757 +2023-10-27 14:07:14.899  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30f73b8a +2023-10-27 14:07:14.899 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:14.900  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:14.900  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:14.905 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:14.905  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql +2023-10-27 14:07:14.907 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? +2023-10-27 14:07:14.907  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: can i play don't starve on play station 4? +2023-10-27 14:07:14.907  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'can i play don't starve on play station 4?' the language 'en' was detected. +2023-10-27 14:07:14.911 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:14.911  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75979617 +2023-10-27 14:07:14.911 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:14.912  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:14.912  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:14.912 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:14.918 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 26 ms +2023-10-27 14:07:20.010  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:20.011  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:20.011  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:20.011  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@771694cb +2023-10-27 14:07:20.017  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16969924 +2023-10-27 14:07:20.017 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:20.018  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:20.018  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:20.023 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:20.023  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql +2023-10-27 14:07:20.024 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:20.024  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:20.024  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which started first: impressionism or expressionism (art movements)?' the language 'en' was detected. +2023-10-27 14:07:20.028 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:20.028  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d2f4615 +2023-10-27 14:07:20.028 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:20.029  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:20.029  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:20.029 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:20.034 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 23 ms +2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4569ee3c +2023-10-27 14:07:23.997  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29a28741 +2023-10-27 14:07:23.997 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:23.997  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:23.998  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:24.002 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 +2023-10-27 14:07:24.002  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql +2023-10-27 14:07:24.003 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? +2023-10-27 14:07:24.004  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: In how many movies did Carey Mulligan and Ryan Gosling star together? +2023-10-27 14:07:24.004  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'In how many movies did Carey Mulligan and Ryan Gosling star together?' the language 'en' was detected. +2023-10-27 14:07:24.008 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 +2023-10-27 14:07:24.008  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39ae1199 +2023-10-27 14:07:24.008 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:24.009  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:24.009  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:24.009 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:24.013 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 23 ms +2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6b132128 +2023-10-27 14:07:34.069  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cae0561 +2023-10-27 14:07:34.069 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:34.070  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:34.070  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:34.074 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 +2023-10-27 14:07:34.074  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql +2023-10-27 14:07:34.076 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:34.076  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:34.076  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'has population of Isfahan increased at any point after 2006?' the language 'en' was detected. +2023-10-27 14:07:34.081 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 +2023-10-27 14:07:34.081  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64d77c4a +2023-10-27 14:07:34.081 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:34.082  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:34.082  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:34.082 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:34.087 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 24 ms +2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@60ea34f9 +2023-10-27 14:07:52.241  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d247cab +2023-10-27 14:07:52.241 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:52.242  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:52.242  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:52.248 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:52.248  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql +2023-10-27 14:07:52.250 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:52.250  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:52.250  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many of Reinhold Messner's brothers still live?' the language 'en' was detected. +2023-10-27 14:07:52.255 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:52.255  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b9be6 +2023-10-27 14:07:52.255 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:52.256  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:52.256  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:52.256 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:52.266 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 39 ms +2023-10-27 14:08:05.479  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:05.480  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:05.480  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:05.480  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7a55f1c6 +2023-10-27 14:08:05.488  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ab55847 +2023-10-27 14:08:05.488 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:05.489  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:05.489  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:05.494 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 +2023-10-27 14:08:05.494  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql +2023-10-27 14:08:05.496 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? +2023-10-27 14:08:05.496  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: is there female main character in hunter x hunter? +2023-10-27 14:08:05.496  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'is there female main character in hunter x hunter?' the language 'en' was detected. +2023-10-27 14:08:05.501 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 +2023-10-27 14:08:05.501  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@210a1922 +2023-10-27 14:08:05.501 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:05.503  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.503  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.503 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.508 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 29 ms +2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4ab6d35f +2023-10-27 14:08:10.063  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@291b7361 +2023-10-27 14:08:10.063 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:10.063  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:10.063  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:10.068 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:10.069  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql +2023-10-27 14:08:10.070 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? +2023-10-27 14:08:10.070  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What caused Kobe Bryant's Death? +2023-10-27 14:08:10.070  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What caused Kobe Bryant's Death?' the language 'en' was detected. +2023-10-27 14:08:10.074 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:10.074  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@120f6efc +2023-10-27 14:08:10.074 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:10.075  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:10.075  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:10.075 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:10.080 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 25 ms +2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1f706802 +2023-10-27 14:08:23.587  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5327301a +2023-10-27 14:08:23.587 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:23.588  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:23.588  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:23.679 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 +2023-10-27 14:08:23.679  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql +2023-10-27 14:08:23.681 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? +2023-10-27 14:08:23.681  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Where was Roland Corporation founded? +2023-10-27 14:08:23.681  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Where was Roland Corporation founded?' the language 'en' was detected. +2023-10-27 14:08:23.689 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 +2023-10-27 14:08:23.690  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ff659c8 +2023-10-27 14:08:23.690 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:23.691  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:23.691  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:23.691 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:23.699 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 122 ms +2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@38ccdf3d +2023-10-27 14:08:25.236  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7b3fb423 +2023-10-27 14:08:25.236 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:25.237  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:25.237  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:25.241 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c +2023-10-27 14:08:25.242  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql +2023-10-27 14:08:25.243 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? +2023-10-27 14:08:25.243  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How often was Naomi Novik nominated for a Hugo Award? +2023-10-27 14:08:25.243  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How often was Naomi Novik nominated for a Hugo Award?' the language 'en' was detected. +2023-10-27 14:08:25.247 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c +2023-10-27 14:08:25.247  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@59424dd9 +2023-10-27 14:08:25.247 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:25.247  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:25.248  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:25.248 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:25.254 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 25 ms +2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@34b13d49 +2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@22644967 +2023-10-27 14:08:29.382  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e233ded +2023-10-27 14:08:29.382 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:29.382  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.382  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.389  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@500c3662 +2023-10-27 14:08:29.389 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:29.389  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql +2023-10-27 14:08:29.389 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:29.390  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.390  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.390 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:29.390  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:29.391  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which started first: impressionism or expressionism (art movements)?' the language 'en' was detected. +2023-10-27 14:08:29.399 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:29.399  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql +2023-10-27 14:08:29.401 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 14:08:29.401  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many countries have never been members of the UN? +2023-10-27 14:08:29.401 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:29.401  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many countries have never been members of the UN?' the language 'en' was detected. +2023-10-27 14:08:29.402  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3862de7 +2023-10-27 14:08:29.402 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:29.403  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:29.403  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:29.403 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:29.409 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 35 ms +2023-10-27 14:08:29.410 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:29.410  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c65b40f +2023-10-27 14:08:29.410 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:29.411  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:29.411  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:29.411 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:29.418 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 38 ms +2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@78050180 +2023-10-27 14:09:01.100  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31e9a186 +2023-10-27 14:09:01.100 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:01.102  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:01.102  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:01.110 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf +2023-10-27 14:09:01.110  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql +2023-10-27 14:09:01.112 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? +2023-10-27 14:09:01.112  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What language do they speak in Poland ? +2023-10-27 14:09:01.113  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What language do they speak in Poland ?' the language 'en' was detected. +2023-10-27 14:09:01.120 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf +2023-10-27 14:09:01.121  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79c28c03 +2023-10-27 14:09:01.121 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:01.122  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:01.122  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:01.123 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:01.129 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 39 ms +2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5a80a2ef +2023-10-27 14:09:07.693  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f0ea3b8 +2023-10-27 14:09:07.693 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:07.694  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:07.694  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:07.699 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be +2023-10-27 14:09:07.699  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be found in urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 at http://localhost:8080/sparql +2023-10-27 14:09:07.700 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? +2023-10-27 14:09:07.700  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: In which country is Oberirrach ? +2023-10-27 14:09:07.700  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'In which country is Oberirrach ?' the language 'en' was detected. +2023-10-27 14:09:07.706 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be +2023-10-27 14:09:07.706  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f49a57e +2023-10-27 14:09:07.706 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:07.707  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:07.707  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:07.707 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:07.711 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 25 ms +2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4631b630 +2023-10-27 14:09:11.178  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48810ec4 +2023-10-27 14:09:11.178 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:11.179  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:11.179  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:11.187 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 +2023-10-27 14:09:11.188  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql +2023-10-27 14:09:11.191 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:11.191  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:11.191  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Is samurai champloo a piece of original work or an adaptation?' the language 'en' was detected. +2023-10-27 14:09:11.196 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 +2023-10-27 14:09:11.196  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a73ecce +2023-10-27 14:09:11.196 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:11.197  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.197  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.197 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.204 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 37 ms +2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@79af735a +2023-10-27 14:09:12.089  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4f814b17 +2023-10-27 14:09:12.089 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:12.090  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:12.090  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:12.094 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd +2023-10-27 14:09:12.094  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd found in urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b at http://localhost:8080/sparql +2023-10-27 14:09:12.095 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:09:12.095  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:09:12.095  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?' the language 'en' was detected. +2023-10-27 14:09:12.099 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd +2023-10-27 14:09:12.099  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46230206 +2023-10-27 14:09:12.099 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:12.100  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.100  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.100 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.106 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 25 ms +2023-10-27 14:09:13.705  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.705  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.706  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.706  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7380a593 +2023-10-27 14:09:13.727  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f2cf399 +2023-10-27 14:09:13.727 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:13.727  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:13.728  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:13.733 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 +2023-10-27 14:09:13.733  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql +2023-10-27 14:09:13.736 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? +2023-10-27 14:09:13.737  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: when was the creator of saturday night live born? +2023-10-27 14:09:13.737  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'when was the creator of saturday night live born?' the language 'en' was detected. +2023-10-27 14:09:13.745 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 +2023-10-27 14:09:13.745  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@561b986 +2023-10-27 14:09:13.745 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:13.746  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.747  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.747 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.756 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 51 ms +2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@43d81a56 +2023-10-27 14:09:45.978  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c147d9f +2023-10-27 14:09:45.978 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:45.978  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:45.979  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:45.992 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:45.992  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql +2023-10-27 14:09:45.994 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:09:45.994  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:09:45.994  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. +2023-10-27 14:09:46.000 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:46.001  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1a058a11 +2023-10-27 14:09:46.001 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:46.004  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:46.004  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:46.004 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:46.011 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 46 ms +2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@18cad4d1 +2023-10-27 14:09:48.922  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29b666cd +2023-10-27 14:09:48.922 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:48.923  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:48.923  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:48.928 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 +2023-10-27 14:09:48.929  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql +2023-10-27 14:09:48.931 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? +2023-10-27 14:09:48.931  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? +2023-10-27 14:09:48.931  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?' the language 'en' was detected. +2023-10-27 14:09:48.939 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 +2023-10-27 14:09:48.939  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7d98674 +2023-10-27 14:09:48.939 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:48.940  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:48.940  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:48.941 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:48.946 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 37 ms +2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4efb78bc +2023-10-27 14:10:13.994  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11b32c56 +2023-10-27 14:10:13.994 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:13.995  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:13.995  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:14.001 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e +2023-10-27 14:10:14.001  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e found in urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224 at http://localhost:8080/sparql +2023-10-27 14:10:14.004 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:14.004  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:14.004  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?' the language 'en' was detected. +2023-10-27 14:10:14.011 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e +2023-10-27 14:10:14.011  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5a5ebb +2023-10-27 14:10:14.012 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:14.013  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:14.013  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:14.013 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:14.019 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 38 ms +2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@f4d13fb +2023-10-27 14:10:25.684  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d7a94eb +2023-10-27 14:10:25.684 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:25.685  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.686  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.767 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 +2023-10-27 14:10:25.767  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 found in urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96 at http://localhost:8080/sparql +2023-10-27 14:10:25.768 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? +2023-10-27 14:10:25.769  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which universities have more than 200000 students? +2023-10-27 14:10:25.769  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which universities have more than 200000 students?' the language 'en' was detected. +2023-10-27 14:10:25.776 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 +2023-10-27 14:10:25.776  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48e6afa0 +2023-10-27 14:10:25.776 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:25.777  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.777  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.777 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.783 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 106 ms +2023-10-27 14:10:27.848  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:27.848  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:27.849  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:27.849  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@28f488fb +2023-10-27 14:10:27.857  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5eae1c4b +2023-10-27 14:10:27.857 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:27.857  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:27.857  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:27.862 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:27.862  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql +2023-10-27 14:10:27.863 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:10:27.863  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:10:27.863  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. +2023-10-27 14:10:27.867 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:27.867  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@56168c3c +2023-10-27 14:10:27.867 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:27.867  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:27.868  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:27.868 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:27.874 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 26 ms +2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1e1aa70a +2023-10-27 14:10:31.730  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40f1b6c3 +2023-10-27 14:10:31.730 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:31.731  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:31.731  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:31.735 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb +2023-10-27 14:10:31.735  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql +2023-10-27 14:10:31.737 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? +2023-10-27 14:10:31.738  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which creator of The OA also acted in it? +2023-10-27 14:10:31.738  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which creator of The OA also acted in it?' the language 'en' was detected. +2023-10-27 14:10:31.744 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb +2023-10-27 14:10:31.744  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46698c52 +2023-10-27 14:10:31.744 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:31.745  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:31.745  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:31.745 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:31.751 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 32 ms +2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3feace0 +2023-10-27 14:11:10.473  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@770c63 +2023-10-27 14:11:10.473 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:10.474  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:10.474  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:10.480 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e +2023-10-27 14:11:10.480  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e found in urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf at http://localhost:8080/sparql +2023-10-27 14:11:10.481 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:10.481  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:11:10.481  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. +2023-10-27 14:11:10.486 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e +2023-10-27 14:11:10.486  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f706177 +2023-10-27 14:11:10.486 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:10.487  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:10.487  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:10.487 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:10.492 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 27 ms +2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@28d9728a +2023-10-27 14:11:19.036  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@78006f10 +2023-10-27 14:11:19.036 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:19.037  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:19.037  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:19.041 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:19.042  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql +2023-10-27 14:11:19.043 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:19.043  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:11:19.043  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. +2023-10-27 14:11:19.047 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:19.047  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4991407 +2023-10-27 14:11:19.047 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:19.048  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:19.048  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:19.048 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:19.053 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 23 ms +2023-10-27 14:13:48.524  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.525  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.525  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.525  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5b11a9c2 +2023-10-27 14:13:48.535  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1533822d +2023-10-27 14:13:48.535 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:13:48.536  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:48.536  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:48.541 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d +2023-10-27 14:13:48.541  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d found in urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8 at http://localhost:8080/sparql +2023-10-27 14:13:48.543 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? +2023-10-27 14:13:48.543  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: When was Adidas established? +2023-10-27 14:13:48.545  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'When was Adidas established?' the language 'en' was detected. +2023-10-27 14:13:48.549 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d +2023-10-27 14:13:48.549  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f291e48 +2023-10-27 14:13:48.549 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody ?language . + ?a oa:hasTarget ?targetQuestion ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time + } +} + +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:13:48.550  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.551  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.551 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfQuestionLanguage . + ?a oa:hasBody "en" . + ?a oa:hasTarget . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.556 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 31 ms diff --git a/qanary-component-NED-DBpediaSpotlight/nohup.out b/qanary-component-NED-DBpediaSpotlight/nohup.out new file mode 100644 index 000000000..768d4003e --- /dev/null +++ b/qanary-component-NED-DBpediaSpotlight/nohup.out @@ -0,0 +1,11511 @@ + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080/  + +2023-10-27 11:59:31.762  INFO 6883 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 6883 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) +2023-10-27 11:59:31.767 DEBUG 6883 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 11:59:31.768  INFO 6883 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 11:59:34.732  WARN 6883 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 11:59:34.827  WARN 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 11:59:35.013  INFO 6883 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5707c1cb +2023-10-27 11:59:35.041  WARN 6883 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' +2023-10-27 11:59:35.045 DEBUG 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 11:59:35.072 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 11:59:35.134 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 11:59:35.138  INFO 6883 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 +2023-10-27 11:59:37.357 DEBUG 6883 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3241713e +2023-10-27 11:59:37.357 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 11:59:37.377 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 11:59:37.554  INFO 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 11:59:37.578 DEBUG 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 11:59:37.655  WARN 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 09:59:37 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 11:59:37.666  INFO 6883 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@4d8126f +2023-10-27 11:59:37.675  INFO 6883 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10008 +spring.application.name = NED-DBpediaSpotlight +spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +spring.boot.admin.url = http://localhost:8080/ +spring.boot.admin.client.url = http://localhost:8080/ + +2023-10-27 11:59:37.697  INFO 6883 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.0.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 11:59:38.277  INFO 6883 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 11:59:38.277  INFO 6883 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 11:59:38.303  INFO 6883 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 11:59:40.932  INFO 6883 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 11:59:40.965  INFO 6883 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 11:59:40.965  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 11:59:40.966  INFO 6883 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 11:59:40.968  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 11:59:40.969  INFO 6883 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 11:59:40.970  INFO 6883 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 11:59:40.970  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1dc3502b +2023-10-27 11:59:41.102  INFO 6883 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now +2023-10-27 11:59:41.106  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. +2023-10-27 11:59:41.124  INFO 6883 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 9.922 seconds (JVM running for 10.77) +2023-10-27 11:59:41.393  INFO 6883 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 +2023-10-27 12:00:11.138  WARN 6883 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": localhost:8080 failed to respond; nested exception is org.apache.http.NoHttpResponseException: localhost:8080 failed to respond. Further attempts are logged on DEBUG level +2023-10-27 12:00:13.314  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.1 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080/  + +2023-10-27 12:01:33.243  INFO 7848 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 7848 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) +2023-10-27 12:01:33.248 DEBUG 7848 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:01:33.258  INFO 7848 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:01:42.214  WARN 7848 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:01:42.473  WARN 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:01:42.827  INFO 7848 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48f5bde6 +2023-10-27 12:01:42.896  WARN 7848 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' +2023-10-27 12:01:42.912 DEBUG 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 12:01:42.959 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 12:01:43.044 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 12:01:43.048  INFO 7848 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 +2023-10-27 12:01:43.962 DEBUG 7848 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@43cf6ea3 +2023-10-27 12:01:43.962 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:01:43.976 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 12:01:44.182  INFO 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 12:01:44.212 DEBUG 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 12:01:44.309  WARN 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 10:01:43 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 12:01:44.327  INFO 7848 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@5965844d +2023-10-27 12:01:44.342  INFO 7848 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10008 +spring.application.name = NED-DBpediaSpotlight +spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +spring.boot.admin.url = http://localhost:8080/ +spring.boot.admin.client.url = http://localhost:8080/ + +2023-10-27 12:01:44.372  INFO 7848 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 12:01:45.135  INFO 7848 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 12:01:45.135  INFO 7848 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 12:01:45.169  INFO 7848 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 12:01:47.581  INFO 7848 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 12:01:47.713  INFO 7848 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 12:01:47.715  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 12:01:47.717  INFO 7848 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 12:01:47.718  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 12:01:47.719  INFO 7848 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 12:01:47.719  INFO 7848 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 12:01:47.719  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1422ac7f +2023-10-27 12:01:47.917  INFO 7848 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now +2023-10-27 12:01:47.918  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. +2023-10-27 12:01:47.945  INFO 7848 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 16.584 seconds (JVM running for 19.248) +2023-10-27 12:01:48.057  WARN 7848 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:01:57.996  INFO 7848 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 +2023-10-27 12:08:46.302  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                        [48;2;0;1;1m                   .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.1 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080/  + +2023-10-27 12:09:22.878  INFO 9645 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 9645 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) +2023-10-27 12:09:22.906 DEBUG 9645 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.910  INFO 9645 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:48.347  WARN 9645 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:49.052  WARN 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:50.028  INFO 9645 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48f5bde6 +2023-10-27 12:09:50.200  WARN 9645 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' +2023-10-27 12:09:50.207 DEBUG 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 12:09:50.323 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 12:09:50.551 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 12:09:50.566  INFO 9645 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 +2023-10-27 12:09:52.494 DEBUG 9645 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@43cf6ea3 +2023-10-27 12:09:52.494 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:09:52.503 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 12:09:52.987  INFO 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 12:09:53.054 DEBUG 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 12:09:53.462  WARN 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 10:09:52 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 12:09:53.547  INFO 9645 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@5965844d +2023-10-27 12:09:53.629  INFO 9645 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10008 +spring.application.name = NED-DBpediaSpotlight +spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +spring.boot.admin.url = http://localhost:8080/ +spring.boot.admin.client.url = http://localhost:8080/ + +2023-10-27 12:09:53.734  INFO 9645 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 12:09:56.664  INFO 9645 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 12:09:56.688  INFO 9645 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 12:09:56.773  INFO 9645 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 12:10:02.529  INFO 9645 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 12:10:02.577  INFO 9645 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 12:10:02.578  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 12:10:02.579  INFO 9645 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@455c1d8c +2023-10-27 12:10:02.958  INFO 9645 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now +2023-10-27 12:10:02.958  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. +2023-10-27 12:10:02.986  INFO 9645 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 44.294 seconds (JVM running for 52.095) +2023-10-27 12:10:03.149  WARN 9645 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:13.024  INFO 9645 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.1 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080/  + +2023-10-27 12:15:52.576  INFO 11758 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 11758 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) +2023-10-27 12:15:52.603 DEBUG 11758 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:52.604  INFO 11758 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:28.628  WARN 11758 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:30.026  WARN 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:31.603  INFO 11758 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@525d79f0 +2023-10-27 12:16:31.692  WARN 11758 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' +2023-10-27 12:16:31.704 DEBUG 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 12:16:31.794 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 12:16:32.212 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 12:16:32.261  INFO 11758 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 +2023-10-27 12:16:34.754 DEBUG 11758 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@37c5fc56 +2023-10-27 12:16:34.754 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:34.761 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 12:16:35.351  INFO 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 12:16:35.381 DEBUG 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 12:16:35.644  WARN 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 10:16:34 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 12:16:35.800  INFO 11758 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@6d4a65c6 +2023-10-27 12:16:35.908  INFO 11758 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10008 +spring.application.name = NED-DBpediaSpotlight +spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +spring.boot.admin.url = http://localhost:8080/ +spring.boot.admin.client.url = http://localhost:8080/ + +2023-10-27 12:16:36.045  INFO 11758 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 12:16:40.714  INFO 11758 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 12:16:40.715  INFO 11758 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 12:16:40.955  INFO 11758 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 12:16:47.115  INFO 11758 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 12:16:47.235  INFO 11758 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 12:16:47.235  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 12:16:47.236  INFO 11758 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 12:16:47.237  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 12:16:47.238  INFO 11758 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 12:16:47.238  INFO 11758 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 12:16:47.238  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1422ac7f +2023-10-27 12:16:47.763  WARN 11758 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10008 is already in use +2023-10-27 12:16:47.764  INFO 11758 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 12:16:47.765  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 12:16:47.765  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:16:47.766  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 12:16:48.035 ERROR 11758 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 10008 was already in use. + +Action: + +Identify and stop the process that's listening on port 10008 or configure this application to listen on another port. + +2023-10-27 13:37:18.565  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:37:18.771  INFO 9645 --- [ionShutdownHook] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 13:37:18.771  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 13:37:18.772  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:37:18.772  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.1 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080/  + +2023-10-27 13:37:48.897  INFO 28725 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 28725 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) +2023-10-27 13:37:48.910 DEBUG 28725 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:48.912  INFO 28725 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:12.997  WARN 28725 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:13.946  WARN 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:15.493  INFO 28725 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5149f008 +2023-10-27 13:38:15.610  WARN 28725 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' +2023-10-27 13:38:15.628 DEBUG 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 13:38:15.703 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 13:38:15.965 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:38:15.970  INFO 28725 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 +2023-10-27 13:38:23.276 DEBUG 28725 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1c025cb +2023-10-27 13:38:23.277 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:23.324 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:38:24.241  INFO 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:38:24.415 DEBUG 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:38:25.138  WARN 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:38:19 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:38:25.217  INFO 28725 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@aa004a0 +2023-10-27 13:38:25.321  INFO 28725 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10008 +spring.application.name = NED-DBpediaSpotlight +spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +spring.boot.admin.url = http://localhost:8080/ +spring.boot.admin.client.url = http://localhost:8080/ + +2023-10-27 13:38:25.422  INFO 28725 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 13:38:29.872  INFO 28725 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 13:38:29.873  INFO 28725 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 13:38:29.995  INFO 28725 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 13:38:36.086  INFO 28725 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:38:36.246  INFO 28725 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:38:36.246  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:38:36.247  INFO 28725 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:38:36.249  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:38:36.249  INFO 28725 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:38:36.249  INFO 28725 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:38:36.250  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@25ad4f71 +2023-10-27 13:38:36.754  INFO 28725 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now +2023-10-27 13:38:36.755  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. +2023-10-27 13:38:36.825  INFO 28725 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 52.356 seconds (JVM running for 59.616) +2023-10-27 13:38:37.072  WARN 28725 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 13:38:47.007  INFO 28725 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.1 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080/  + +2023-10-27 13:38:50.144  INFO 30116 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 30116 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) +2023-10-27 13:38:50.259 DEBUG 30116 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:50.261  INFO 30116 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:16.703  WARN 30116 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:17.207  WARN 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:18.364  INFO 30116 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5149f008 +2023-10-27 13:39:18.606  WARN 30116 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' +2023-10-27 13:39:18.625 DEBUG 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 13:39:18.750 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 +2023-10-27 13:39:19.142 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:39:19.152  INFO 30116 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 +2023-10-27 13:39:21.580 DEBUG 30116 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1c025cb +2023-10-27 13:39:21.580 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:21.602 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:39:22.396  INFO 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:39:22.496 DEBUG 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:39:22.972  WARN 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:39:21 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:39:23.093  INFO 30116 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@aa004a0 +2023-10-27 13:39:23.272  INFO 30116 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10008 +spring.application.name = NED-DBpediaSpotlight +spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text +spring.boot.admin.url = http://localhost:8080/ +spring.boot.admin.client.url = http://localhost:8080/ + +2023-10-27 13:39:23.509  INFO 30116 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 13:39:28.084  INFO 30116 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 13:39:28.084  INFO 30116 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE +@prefix rdfs: . + + + rdfs:label "DBpedia Spotlight NED" . + +2023-10-27 13:39:28.257  INFO 30116 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 13:39:37.338  INFO 30116 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:39:37.468  INFO 30116 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:39:37.469  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:39:37.470  INFO 30116 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:39:37.471  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:39:37.472  INFO 30116 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:39:37.472  INFO 30116 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:39:37.472  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@a92be4f +2023-10-27 13:39:37.846  WARN 30116 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10008 is already in use +2023-10-27 13:39:37.848  INFO 30116 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 13:39:37.848  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 13:39:37.849  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:39:37.850  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 13:39:38.030 ERROR 30116 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 10008 was already in use. + +Action: + +Identify and stop the process that's listening on port 10008 or configure this application to listen on another port. + +2023-10-27 13:52:10.427  INFO 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"} +2023-10-27 13:52:10.439  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"} +2023-10-27 13:52:10.553  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"},"inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"} +2023-10-27 13:52:10.811  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29bc9dc4 +2023-10-27 13:52:10.844 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:11.178  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:11.179  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:11.438 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9c5ddff-7770-403f-b961-f643df23693b +2023-10-27 13:52:11.439  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9c5ddff-7770-403f-b961-f643df23693b found in urn:graph:7892129f-57ed-4825-b095-309f019cab9c at http://localhost:8080/sparql +2023-10-27 13:52:11.451 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 13:52:11.451  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:11.452 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 +2023-10-27 13:52:11.456 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 +2023-10-27 13:52:11.457 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:11.491  INFO 28725 --- [io-10008-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1149170296 +2023-10-27 13:52:13.020 DEBUG 28725 --- [io-10008-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@72356d8 +2023-10-27 13:52:13.020 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:13.020 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:13.030  INFO 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:13.032 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:13.033  WARN 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 6 resources recognized for "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?": <200,{"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:13 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:13.035 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 5): http://dbpedia.org/resource/South_Korean_won at (8,11) +2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 5): http://dbpedia.org/resource/National_Basketball_Association at (17,20) +2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 5): http://dbpedia.org/resource/Michael_Jordan at (29,43) +2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 5): http://dbpedia.org/resource/Kobe_Bryant at (47,51) +2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 5): http://dbpedia.org/resource/Bean at (52,56) +2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (5 of 5): http://dbpedia.org/resource/Kobe_Bryant at (57,63) +2023-10-27 13:52:13.048 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9c5ddff-7770-403f-b961-f643df23693b +2023-10-27 13:52:13.053  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50bef3fd +2023-10-27 13:52:13.053 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:13.084  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9871424863560028 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.085  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9871424863560028 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.085 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9871424863560028 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.110  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@242b61 +2023-10-27 13:52:13.111 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:13.115  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9982751030641623 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.116  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9982751030641623 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.116 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9982751030641623 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.126  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@587f99e7 +2023-10-27 13:52:13.127 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:13.133  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999981796071551 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.134  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999981796071551 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.134 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999981796071551 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.149  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@160fd108 +2023-10-27 13:52:13.150 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:13.155  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988244763302297 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.157  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988244763302297 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.157 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988244763302297 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.170  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1f5a59e7 +2023-10-27 13:52:13.171 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:13.177  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "52"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9513692458761086 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.179  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "52"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9513692458761086 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.180 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "52"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9513692458761086 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.193  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e84064e +2023-10-27 13:52:13.194 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:13.199  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "57"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999997963240682 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.199  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "57"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999997963240682 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.200 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "57"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999997963240682 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:13.214 DEBUG 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : processing took: 2778 ms +2023-10-27 13:52:16.360  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"} +2023-10-27 13:52:16.360  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"} +2023-10-27 13:52:16.360  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"},"inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"} +2023-10-27 13:52:16.425  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@529c0d46 +2023-10-27 13:52:16.426 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:16.428  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:16.429  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:16.438 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9a00e996-691a-47b2-93d3-799d3b028567 +2023-10-27 13:52:16.438  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9a00e996-691a-47b2-93d3-799d3b028567 found in urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c at http://localhost:8080/sparql +2023-10-27 13:52:16.444 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people nominated for the nobel prize in chemistry didn't ever win it? +2023-10-27 13:52:16.444  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many people nominated for the nobel prize in chemistry didn't ever win it?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:16.444 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+nominated+for+the+nobel+prize+in+chemistry+didn%27t+ever+win+it%3F&confidence=0.1 +2023-10-27 13:52:16.445 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+nominated+for+the+nobel+prize+in+chemistry+didn%27t+ever+win+it%3F&confidence=0.1 +2023-10-27 13:52:16.445 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:16.445  INFO 28725 --- [io-10008-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-526411245 +2023-10-27 13:52:16.474 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5c5bf965 +2023-10-27 13:52:16.474 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:16.475 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:16.477  INFO 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:16.477 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many people nominated for the nobel prize in chemistry didn't ever win it?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Candidate","support":"1270","types":"","surfaceForm":"nominated","offset":"16","similarityScore":"0.4335744247275617","percentageOfSecondRank":"0.6895162882925884"},{"URI":"http:\/\/dbpedia.org\/resource\/Nobel_Prize","support":"9254","types":"Wikidata:Q618779,DBpedia:Award","surfaceForm":"nobel prize","offset":"34","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Chemistry","support":"15396","types":"","surfaceForm":"chemistry","offset":"49","similarityScore":"0.5559611318302947","percentageOfSecondRank":"0.7985539573033008"},{"URI":"http:\/\/dbpedia.org\/resource\/Win\u2013loss_record_(pitching)","support":"6460","types":"","surfaceForm":"win","offset":"71","similarityScore":"0.9633359606191995","percentageOfSecondRank":"0.012399897377388513"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:16.482  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "How many people nominated for the nobel prize in chemistry didn't ever win it?": <200,{"types":"","confidence":"0.1","text":"How many people nominated for the nobel prize in chemistry didn't ever win it?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Candidate","support":"1270","types":"","surfaceForm":"nominated","offset":"16","similarityScore":"0.4335744247275617","percentageOfSecondRank":"0.6895162882925884"},{"URI":"http:\/\/dbpedia.org\/resource\/Nobel_Prize","support":"9254","types":"Wikidata:Q618779,DBpedia:Award","surfaceForm":"nobel prize","offset":"34","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Chemistry","support":"15396","types":"","surfaceForm":"chemistry","offset":"49","similarityScore":"0.5559611318302947","percentageOfSecondRank":"0.7985539573033008"},{"URI":"http:\/\/dbpedia.org\/resource\/Win\u2013loss_record_(pitching)","support":"6460","types":"","surfaceForm":"win","offset":"71","similarityScore":"0.9633359606191995","percentageOfSecondRank":"0.012399897377388513"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:16 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=99", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:16.484 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/How_(TV_series) at (0,3) +2023-10-27 13:52:16.484 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Candidate at (16,25) +2023-10-27 13:52:16.485 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Nobel_Prize at (34,45) +2023-10-27 13:52:16.485 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Chemistry at (49,58) +2023-10-27 13:52:16.485 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Win–loss_record_(pitching) at (71,74) +2023-10-27 13:52:16.494 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9a00e996-691a-47b2-93d3-799d3b028567 +2023-10-27 13:52:16.494  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58646636 +2023-10-27 13:52:16.495 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:16.500  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.500  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.500 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.510  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d66f35e +2023-10-27 13:52:16.511 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:16.515  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.4335744247275617 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.516  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.4335744247275617 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.516 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.4335744247275617 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.524  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f222b89 +2023-10-27 13:52:16.525 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:16.529  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "45"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.530  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "45"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.530 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "45"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.539  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2cb16fd9 +2023-10-27 13:52:16.540 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:16.545  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "58"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5559611318302947 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.545  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "58"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5559611318302947 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.545 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "58"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5559611318302947 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.553  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@571fe9af +2023-10-27 13:52:16.554 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:16.563  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "71"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9633359606191995 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.564  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "71"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9633359606191995 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.564 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "71"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9633359606191995 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:16.572 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 212 ms +2023-10-27 13:52:18.456  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"} +2023-10-27 13:52:18.456  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"} +2023-10-27 13:52:18.456  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"},"inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"} +2023-10-27 13:52:18.527  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25284ab9 +2023-10-27 13:52:18.527 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:18.529  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:18.530  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:18.537 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6710fe6b-4e7e-4ae3-9f73-a7c85a349f8e +2023-10-27 13:52:18.537  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6710fe6b-4e7e-4ae3-9f73-a7c85a349f8e found in urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f at http://localhost:8080/sparql +2023-10-27 13:52:18.540 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which businesses are founded by the person in charge of Tesla? +2023-10-27 13:52:18.540  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Which businesses are founded by the person in charge of Tesla?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:18.541 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F&confidence=0.1 +2023-10-27 13:52:18.541 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F&confidence=0.1 +2023-10-27 13:52:18.541 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:18.542  INFO 28725 --- [io-10008-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1485684696 +2023-10-27 13:52:18.568 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2befb06c +2023-10-27 13:52:18.569 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:18.569 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:18.570  INFO 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:18.570 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Which businesses are founded by the person in charge of Tesla?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Grammatical_person","support":"2748","types":"","surfaceForm":"person","offset":"36","similarityScore":"0.5340848695014293","percentageOfSecondRank":"0.6851942397677815"},{"URI":"http:\/\/dbpedia.org\/resource\/Tesla_Model_3","support":"453","types":"Schema:Product,DBpedia:MeanOfTransportation,DBpedia:Automobile","surfaceForm":"Tesla","offset":"56","similarityScore":"0.7798041286431635","percentageOfSecondRank":"0.26225428564097625"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:18.570  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Which businesses are founded by the person in charge of Tesla?": <200,{"types":"","confidence":"0.1","text":"Which businesses are founded by the person in charge of Tesla?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Grammatical_person","support":"2748","types":"","surfaceForm":"person","offset":"36","similarityScore":"0.5340848695014293","percentageOfSecondRank":"0.6851942397677815"},{"URI":"http:\/\/dbpedia.org\/resource\/Tesla_Model_3","support":"453","types":"Schema:Product,DBpedia:MeanOfTransportation,DBpedia:Automobile","surfaceForm":"Tesla","offset":"56","similarityScore":"0.7798041286431635","percentageOfSecondRank":"0.26225428564097625"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:18 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=98", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:18.570 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Langues_d'oïl at (0,5) +2023-10-27 13:52:18.571 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Grammatical_person at (36,42) +2023-10-27 13:52:18.571 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Tesla_Model_3 at (56,61) +2023-10-27 13:52:18.579 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6710fe6b-4e7e-4ae3-9f73-a7c85a349f8e +2023-10-27 13:52:18.580  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2fd021c9 +2023-10-27 13:52:18.580 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:18.584  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8956483894223672 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.584  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8956483894223672 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.585 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8956483894223672 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.595  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6ad2ba57 +2023-10-27 13:52:18.596 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:18.599  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "36"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5340848695014293 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.599  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "36"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5340848695014293 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.599 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "36"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5340848695014293 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.609  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@dc85836 +2023-10-27 13:52:18.610 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:18.615  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "56"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7798041286431635 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.615  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "56"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7798041286431635 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.616 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "56"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7798041286431635 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:18.623 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 167 ms +2023-10-27 13:52:20.435  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"} +2023-10-27 13:52:20.435  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"} +2023-10-27 13:52:20.435  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"},"inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"} +2023-10-27 13:52:20.476  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6da299fa +2023-10-27 13:52:20.477 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:20.478  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:20.478  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:20.485 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b538f13-2f1b-4b19-8bb8-c5b87157a265 +2023-10-27 13:52:20.485  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b538f13-2f1b-4b19-8bb8-c5b87157a265 found in urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107 at http://localhost:8080/sparql +2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When did Allen Ginsberg die? +2023-10-27 13:52:20.487  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "When did Allen Ginsberg die?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+did+Allen+Ginsberg+die%3F&confidence=0.1 +2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+did+Allen+Ginsberg+die%3F&confidence=0.1 +2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:20.487  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=612253838 +2023-10-27 13:52:20.514 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@63656a3e +2023-10-27 13:52:20.514 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:20.515 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:20.515  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:20.515 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"When did Allen Ginsberg die?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.9192447693484681","percentageOfSecondRank":"0.043629522398460366"},{"URI":"http:\/\/dbpedia.org\/resource\/Allen_Ginsberg","support":"2049","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q36180,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Writer","surfaceForm":"Allen Ginsberg","offset":"9","similarityScore":"0.9999999999997442","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Dice","support":"2870","types":"","surfaceForm":"die","offset":"24","similarityScore":"0.7876966227304146","percentageOfSecondRank":"0.1268936124993669"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:20.515  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "When did Allen Ginsberg die?": <200,{"types":"","confidence":"0.1","text":"When did Allen Ginsberg die?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.9192447693484681","percentageOfSecondRank":"0.043629522398460366"},{"URI":"http:\/\/dbpedia.org\/resource\/Allen_Ginsberg","support":"2049","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q36180,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Writer","surfaceForm":"Allen Ginsberg","offset":"9","similarityScore":"0.9999999999997442","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Dice","support":"2870","types":"","surfaceForm":"die","offset":"24","similarityScore":"0.7876966227304146","percentageOfSecondRank":"0.1268936124993669"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:20 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=97", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:20.516 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Time at (0,4) +2023-10-27 13:52:20.516 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Allen_Ginsberg at (9,23) +2023-10-27 13:52:20.516 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Dice at (24,27) +2023-10-27 13:52:20.522 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b538f13-2f1b-4b19-8bb8-c5b87157a265 +2023-10-27 13:52:20.522  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@675af28a +2023-10-27 13:52:20.522 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:20.526  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9192447693484681 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.526  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9192447693484681 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.526 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9192447693484681 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.534  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22586005 +2023-10-27 13:52:20.534 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:20.537  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999997442 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.537  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999997442 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.537 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999997442 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.547  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b4c50fd +2023-10-27 13:52:20.547 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:20.548  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "27"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7876966227304146 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.549  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "27"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7876966227304146 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.549 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "27"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7876966227304146 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:20.555 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 120 ms +2023-10-27 13:52:23.294  INFO 28725 --- [io-10008-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"} +2023-10-27 13:52:23.294  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"} +2023-10-27 13:52:23.295  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"},"inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"} +2023-10-27 13:52:23.301  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65ab9915 +2023-10-27 13:52:23.301 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:23.302  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:23.302  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:23.311 DEBUG 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bc40b8ca-22b0-43f1-b4ae-5766ffe227bc +2023-10-27 13:52:23.311  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bc40b8ca-22b0-43f1-b4ae-5766ffe227bc found in urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0 at http://localhost:8080/sparql +2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic? +2023-10-27 13:52:23.313  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Did+Rawson+Marshall+Thurber%2C+the+director+of+Red+Notice+also+direct+Titanic%3F&confidence=0.1 +2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Did+Rawson+Marshall+Thurber%2C+the+director+of+Red+Notice+also+direct+Titanic%3F&confidence=0.1 +2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:23.313  INFO 28725 --- [io-10008-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1474854843 +2023-10-27 13:52:23.343 DEBUG 28725 --- [io-10008-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6b6c6bd0 +2023-10-27 13:52:23.343 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:23.343 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:23.344  INFO 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Rawson_Marshall_Thurber","support":"41","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Rawson Marshall Thurber","offset":"4","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"director","offset":"33","similarityScore":"0.9935109066259407","percentageOfSecondRank":"0.0028499295491229756"},{"URI":"http:\/\/dbpedia.org\/resource\/Interpol_notice","support":"188","types":"","surfaceForm":"Red Notice","offset":"45","similarityScore":"0.952693397965474","percentageOfSecondRank":"0.049648248444500956"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"direct","offset":"61","similarityScore":"0.9944131801858351","percentageOfSecondRank":"0.0022430474175467487"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:23.344  WARN 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?": <200,{"types":"","confidence":"0.1","text":"Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Rawson_Marshall_Thurber","support":"41","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Rawson Marshall Thurber","offset":"4","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"director","offset":"33","similarityScore":"0.9935109066259407","percentageOfSecondRank":"0.0028499295491229756"},{"URI":"http:\/\/dbpedia.org\/resource\/Interpol_notice","support":"188","types":"","surfaceForm":"Red Notice","offset":"45","similarityScore":"0.952693397965474","percentageOfSecondRank":"0.049648248444500956"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"direct","offset":"61","similarityScore":"0.9944131801858351","percentageOfSecondRank":"0.0022430474175467487"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:23 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=96", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Rawson_Marshall_Thurber at (4,27) +2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Film_director at (33,41) +2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Interpol_notice at (45,55) +2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Film_director at (61,67) +2023-10-27 13:52:23.351 DEBUG 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bc40b8ca-22b0-43f1-b4ae-5766ffe227bc +2023-10-27 13:52:23.351  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f53f265 +2023-10-27 13:52:23.351 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:23.353  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "27"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.354  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "27"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.354 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "27"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.361  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a5161eb +2023-10-27 13:52:23.362 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:23.363  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9935109066259407 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.363  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9935109066259407 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.363 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9935109066259407 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.370  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@130b2685 +2023-10-27 13:52:23.370 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:23.371  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "45"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.952693397965474 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.372  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "45"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.952693397965474 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.372 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "45"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.952693397965474 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.380  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1bb1eddf +2023-10-27 13:52:23.380 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:23.382  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "61"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9944131801858351 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.382  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "61"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9944131801858351 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.382 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "61"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9944131801858351 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:23.388 DEBUG 28725 --- [io-10008-exec-8] e.w.q.component.QanaryServiceController  : processing took: 94 ms +2023-10-27 13:52:23.988  INFO 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"} +2023-10-27 13:52:23.988  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"} +2023-10-27 13:52:23.989  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"},"inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"} +2023-10-27 13:52:24.004  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d53732c +2023-10-27 13:52:24.004 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:24.006  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:24.006  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:24.014 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_15571e2d-6d21-470b-a97c-1e395e13c7da +2023-10-27 13:52:24.014  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_15571e2d-6d21-470b-a97c-1e395e13c7da found in urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8 at http://localhost:8080/sparql +2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the coordinate location of Shenzhen ? +2023-10-27 13:52:24.016  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What is the coordinate location of Shenzhen ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+is+the+coordinate+location+of+Shenzhen+%3F&confidence=0.1 +2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+is+the+coordinate+location+of+Shenzhen+%3F&confidence=0.1 +2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:24.016  INFO 28725 --- [io-10008-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=657487733 +2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6b34f05b +2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:24.044  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What is the coordinate location of Shenzhen ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.848898628798749","percentageOfSecondRank":"0.16960161018835834"},{"URI":"http:\/\/dbpedia.org\/resource\/Coordinate_system","support":"2288","types":"","surfaceForm":"coordinate","offset":"12","similarityScore":"0.9654862683991126","percentageOfSecondRank":"0.017906224396750568"},{"URI":"http:\/\/dbpedia.org\/resource\/Location","support":"717","types":"","surfaceForm":"location","offset":"23","similarityScore":"0.7800701412643027","percentageOfSecondRank":"0.16029785187279852"},{"URI":"http:\/\/dbpedia.org\/resource\/Shenzhen","support":"5612","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Shenzhen","offset":"35","similarityScore":"0.9962300724760995","percentageOfSecondRank":"0.0030891484870061102"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:24.045  WARN 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "What is the coordinate location of Shenzhen ?": <200,{"types":"","confidence":"0.1","text":"What is the coordinate location of Shenzhen ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.848898628798749","percentageOfSecondRank":"0.16960161018835834"},{"URI":"http:\/\/dbpedia.org\/resource\/Coordinate_system","support":"2288","types":"","surfaceForm":"coordinate","offset":"12","similarityScore":"0.9654862683991126","percentageOfSecondRank":"0.017906224396750568"},{"URI":"http:\/\/dbpedia.org\/resource\/Location","support":"717","types":"","surfaceForm":"location","offset":"23","similarityScore":"0.7800701412643027","percentageOfSecondRank":"0.16029785187279852"},{"URI":"http:\/\/dbpedia.org\/resource\/Shenzhen","support":"5612","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Shenzhen","offset":"35","similarityScore":"0.9962300724760995","percentageOfSecondRank":"0.0030891484870061102"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:23 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=95", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/String_theory at (0,4) +2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Coordinate_system at (12,22) +2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Location at (23,31) +2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Shenzhen at (35,43) +2023-10-27 13:52:24.051 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_15571e2d-6d21-470b-a97c-1e395e13c7da +2023-10-27 13:52:24.052  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d782402 +2023-10-27 13:52:24.052 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:24.053  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.848898628798749 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.054  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.848898628798749 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.054 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.848898628798749 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.063  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13c8f3f7 +2023-10-27 13:52:24.063 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:24.064  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "22"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9654862683991126 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.065  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "22"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9654862683991126 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.065 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "22"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9654862683991126 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.071  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c418658 +2023-10-27 13:52:24.071 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:24.072  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7800701412643027 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.073  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7800701412643027 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.073 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7800701412643027 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.082  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@703b0fa3 +2023-10-27 13:52:24.082 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:24.084  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9962300724760995 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.084  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9962300724760995 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.084 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9962300724760995 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:24.093 DEBUG 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : processing took: 105 ms +2023-10-27 13:52:30.225  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"} +2023-10-27 13:52:30.225  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"} +2023-10-27 13:52:30.226  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"},"inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"} +2023-10-27 13:52:30.237  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cfff4dd +2023-10-27 13:52:30.237 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:30.238  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:30.238  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:30.248 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_22ccb670-39f1-4a49-8bcb-c2d702495ede +2023-10-27 13:52:30.248  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_22ccb670-39f1-4a49-8bcb-c2d702495ede found in urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75 at http://localhost:8080/sparql +2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many scholary articles have ImageNet as a subject? +2023-10-27 13:52:30.250  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many scholary articles have ImageNet as a subject?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+scholary+articles+have+ImageNet+as+a+subject%3F&confidence=0.1 +2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+scholary+articles+have+ImageNet+as+a+subject%3F&confidence=0.1 +2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:30.250  INFO 28725 --- [io-10008-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=524970162 +2023-10-27 13:52:30.326 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4728eef6 +2023-10-27 13:52:30.326 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:30.326 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:30.327  INFO 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many scholary articles have ImageNet as a subject?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Article_(grammar)","support":"4109","types":"","surfaceForm":"articles","offset":"18","similarityScore":"0.2920539084268482","percentageOfSecondRank":"0.8311226859318112"},{"URI":"http:\/\/dbpedia.org\/resource\/ImageNet","support":"46","types":"","surfaceForm":"ImageNet","offset":"32","similarityScore":"0.9999998612810782","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Subject_(grammar)","support":"3141","types":"","surfaceForm":"subject","offset":"46","similarityScore":"0.8903607032225217","percentageOfSecondRank":"0.04662432546818081"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:30.327  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "How many scholary articles have ImageNet as a subject?": <200,{"types":"","confidence":"0.1","text":"How many scholary articles have ImageNet as a subject?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Article_(grammar)","support":"4109","types":"","surfaceForm":"articles","offset":"18","similarityScore":"0.2920539084268482","percentageOfSecondRank":"0.8311226859318112"},{"URI":"http:\/\/dbpedia.org\/resource\/ImageNet","support":"46","types":"","surfaceForm":"ImageNet","offset":"32","similarityScore":"0.9999998612810782","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Subject_(grammar)","support":"3141","types":"","surfaceForm":"subject","offset":"46","similarityScore":"0.8903607032225217","percentageOfSecondRank":"0.04662432546818081"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:30 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/How_(TV_series) at (0,3) +2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Article_(grammar) at (18,26) +2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/ImageNet at (32,40) +2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Subject_(grammar) at (46,53) +2023-10-27 13:52:30.333 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_22ccb670-39f1-4a49-8bcb-c2d702495ede +2023-10-27 13:52:30.334  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3402a3d2 +2023-10-27 13:52:30.334 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:30.335  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.336  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.336 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.344  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@177a79dc +2023-10-27 13:52:30.344 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:30.346  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.2920539084268482 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.346  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.2920539084268482 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.346 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.2920539084268482 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.353  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@118525f7 +2023-10-27 13:52:30.353 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:30.355  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999998612810782 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.355  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999998612810782 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.355 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999998612810782 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.363  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11da266f +2023-10-27 13:52:30.363 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:30.364  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "46"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8903607032225217 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.365  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "46"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8903607032225217 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.365 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "46"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8903607032225217 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:30.371 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 146 ms +2023-10-27 13:52:31.502  INFO 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"} +2023-10-27 13:52:31.502  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"} +2023-10-27 13:52:31.502  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"},"inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"} +2023-10-27 13:52:31.511  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d11dda8 +2023-10-27 13:52:31.511 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:31.512  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:31.512  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:31.519 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_547d5df7-57ad-4b82-904d-fa73ee930b5d +2023-10-27 13:52:31.519  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_547d5df7-57ad-4b82-904d-fa73ee930b5d found in urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf at http://localhost:8080/sparql +2023-10-27 13:52:31.521 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation On how many albums does Mariah Carey perform? +2023-10-27 13:52:31.521  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "On how many albums does Mariah Carey perform?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:31.522 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=On+how+many+albums+does+Mariah+Carey+perform%3F&confidence=0.1 +2023-10-27 13:52:31.522 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=On+how+many+albums+does+Mariah+Carey+perform%3F&confidence=0.1 +2023-10-27 13:52:31.522 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:31.522  INFO 28725 --- [io-10008-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1325119793 +2023-10-27 13:52:31.553 DEBUG 28725 --- [io-10008-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16ec1b79 +2023-10-27 13:52:31.553 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:31.553 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:31.554  INFO 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"On how many albums does Mariah Carey perform?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Kanji","support":"4731","types":"","surfaceForm":"On","offset":"0","similarityScore":"0.8905064018119542","percentageOfSecondRank":"0.0744885023707854"},{"URI":"http:\/\/dbpedia.org\/resource\/Mariah_Carey","support":"4066","types":"","surfaceForm":"Mariah Carey","offset":"24","similarityScore":"0.9999999998445048","percentageOfSecondRank":"1.5122382745755918E-10"},{"URI":"http:\/\/dbpedia.org\/resource\/Performance","support":"2175","types":"","surfaceForm":"perform","offset":"37","similarityScore":"0.7838549142520009","percentageOfSecondRank":"0.16223532183690642"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:31.554  WARN 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "On how many albums does Mariah Carey perform?": <200,{"types":"","confidence":"0.1","text":"On how many albums does Mariah Carey perform?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Kanji","support":"4731","types":"","surfaceForm":"On","offset":"0","similarityScore":"0.8905064018119542","percentageOfSecondRank":"0.0744885023707854"},{"URI":"http:\/\/dbpedia.org\/resource\/Mariah_Carey","support":"4066","types":"","surfaceForm":"Mariah Carey","offset":"24","similarityScore":"0.9999999998445048","percentageOfSecondRank":"1.5122382745755918E-10"},{"URI":"http:\/\/dbpedia.org\/resource\/Performance","support":"2175","types":"","surfaceForm":"perform","offset":"37","similarityScore":"0.7838549142520009","percentageOfSecondRank":"0.16223532183690642"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:31 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=99", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Kanji at (0,2) +2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Mariah_Carey at (24,36) +2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Performance at (37,44) +2023-10-27 13:52:31.562 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_547d5df7-57ad-4b82-904d-fa73ee930b5d +2023-10-27 13:52:31.562  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c36d678 +2023-10-27 13:52:31.562 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:31.563  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "2"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8905064018119542 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.564  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "2"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8905064018119542 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.564 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "2"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8905064018119542 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.571  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e214e16 +2023-10-27 13:52:31.571 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:31.573  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999998445048 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.573  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999998445048 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.573 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999998445048 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.581  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d3e22e7 +2023-10-27 13:52:31.582 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:31.583  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7838549142520009 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.583  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7838549142520009 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.583 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7838549142520009 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:31.590 DEBUG 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : processing took: 88 ms +2023-10-27 13:52:36.521  INFO 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"} +2023-10-27 13:52:36.522  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"} +2023-10-27 13:52:36.522  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"},"inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"} +2023-10-27 13:52:36.529  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d4acd5d +2023-10-27 13:52:36.530 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:36.530  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:36.531  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:36.562 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b272ba5-d8c6-4a86-a027-52c7ec737736 +2023-10-27 13:52:36.562  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b272ba5-d8c6-4a86-a027-52c7ec737736 found in urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6 at http://localhost:8080/sparql +2023-10-27 13:52:36.564 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who developed the Erlangen program? +2023-10-27 13:52:36.564  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Who developed the Erlangen program?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:52:36.564 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+developed+the+Erlangen+program%3F&confidence=0.1 +2023-10-27 13:52:36.565 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+developed+the+Erlangen+program%3F&confidence=0.1 +2023-10-27 13:52:36.565 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:52:36.565  INFO 28725 --- [io-10008-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-318718257 +2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@57b2a62d +2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:52:36.638  INFO 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Who developed the Erlangen program?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9438186953215656","percentageOfSecondRank":"0.040569676027693354"},{"URI":"http:\/\/dbpedia.org\/resource\/Video_game_developer","support":"2721","types":"","surfaceForm":"developed","offset":"4","similarityScore":"0.45975786681391356","percentageOfSecondRank":"0.7141146124704578"},{"URI":"http:\/\/dbpedia.org\/resource\/Erlangen_program","support":"93","types":"","surfaceForm":"Erlangen program","offset":"18","similarityScore":"0.9999999999998295","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:52:36.638  WARN 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Who developed the Erlangen program?": <200,{"types":"","confidence":"0.1","text":"Who developed the Erlangen program?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9438186953215656","percentageOfSecondRank":"0.040569676027693354"},{"URI":"http:\/\/dbpedia.org\/resource\/Video_game_developer","support":"2721","types":"","surfaceForm":"developed","offset":"4","similarityScore":"0.45975786681391356","percentageOfSecondRank":"0.7141146124704578"},{"URI":"http:\/\/dbpedia.org\/resource\/Erlangen_program","support":"93","types":"","surfaceForm":"Erlangen program","offset":"18","similarityScore":"0.9999999999998295","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:36 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:52:36.639 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/The_Who at (0,3) +2023-10-27 13:52:36.639 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Video_game_developer at (4,13) +2023-10-27 13:52:36.639 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Erlangen_program at (18,34) +2023-10-27 13:52:36.646 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b272ba5-d8c6-4a86-a027-52c7ec737736 +2023-10-27 13:52:36.646  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@12b022bf +2023-10-27 13:52:36.646 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:36.649  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9438186953215656 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.649  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9438186953215656 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.649 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9438186953215656 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.655  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@191b2591 +2023-10-27 13:52:36.655 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:36.657  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.45975786681391356 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.657  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.45975786681391356 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.658 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.45975786681391356 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.665  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@23e8f73e +2023-10-27 13:52:36.665 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:36.667  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999998295 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.667  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999998295 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.667 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999998295 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:36.674 DEBUG 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : processing took: 153 ms +2023-10-27 13:53:05.454  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:05.455  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:05.455  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:05.469  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@790715e9 +2023-10-27 13:53:05.469 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:05.470  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:05.471  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:05.487 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:05.487  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql +2023-10-27 13:53:05.490 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? +2023-10-27 13:53:05.491  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What did the suffragettes stand for?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:53:05.492 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+did+the+suffragettes+stand+for%3F&confidence=0.1 +2023-10-27 13:53:05.492 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+did+the+suffragettes+stand+for%3F&confidence=0.1 +2023-10-27 13:53:05.493 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:53:05.494  INFO 28725 --- [io-10008-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1128502799 +2023-10-27 13:53:05.570 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@c8eaa07 +2023-10-27 13:53:05.570 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:05.570 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:53:05.571  INFO 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:53:05.571 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What did the suffragettes stand for?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9080684937318582","percentageOfSecondRank":"0.08213457538187201"},{"URI":"http:\/\/dbpedia.org\/resource\/Suffragette","support":"1843","types":"Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Agent,DBpedia:Organisation","surfaceForm":"suffragettes","offset":"13","similarityScore":"0.9936260057364261","percentageOfSecondRank":"0.00381878544551761"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:53:05.571  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "What did the suffragettes stand for?": <200,{"types":"","confidence":"0.1","text":"What did the suffragettes stand for?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9080684937318582","percentageOfSecondRank":"0.08213457538187201"},{"URI":"http:\/\/dbpedia.org\/resource\/Suffragette","support":"1843","types":"Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Agent,DBpedia:Organisation","surfaceForm":"suffragettes","offset":"13","similarityScore":"0.9936260057364261","percentageOfSecondRank":"0.00381878544551761"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:53:05 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:53:05.571 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/String_theory at (0,4) +2023-10-27 13:53:05.571 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Suffragette at (13,25) +2023-10-27 13:53:05.579 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:05.580  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4de75e22 +2023-10-27 13:53:05.580 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:53:05.582  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9080684937318582 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:05.582  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9080684937318582 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:05.582 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9080684937318582 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:05.588  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4a19f5c +2023-10-27 13:53:05.588 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:53:05.590  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9936260057364261 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:05.590  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9936260057364261 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:05.590 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9936260057364261 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:05.597 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 143 ms +2023-10-27 13:53:56.262  INFO 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:56.262  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:56.262  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:56.270  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c4f6d92 +2023-10-27 13:53:56.270 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:56.270  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:56.271  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:56.279 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 +2023-10-27 13:53:56.279  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql +2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? +2023-10-27 13:53:56.281  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What is TNFAIP1 ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+is+TNFAIP1+%3F&confidence=0.1 +2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+is+TNFAIP1+%3F&confidence=0.1 +2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:53:56.281  INFO 28725 --- [io-10008-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1008774932 +2023-10-27 13:53:56.367 DEBUG 28725 --- [io-10008-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@10e10815 +2023-10-27 13:53:56.367 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:56.367 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:53:56.368  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:53:56.368 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What is TNFAIP1 ?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.903590836203973","percentageOfSecondRank":"0.09371359627225814"}},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:53:56.369  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : The web service response for 'What is TNFAIP1 ?' was empty. However, the JSON response was valid. +2023-10-27 13:53:56.369  WARN 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : nothing recognized for "What is TNFAIP1 ?": <200,{"types":"","confidence":"0.1","text":"What is TNFAIP1 ?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.903590836203973","percentageOfSecondRank":"0.09371359627225814"}},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:53:56 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:53:56.369 DEBUG 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : processing took: 107 ms +2023-10-27 13:54:23.742  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:23.742  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:23.742  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:23.756  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30e70bb5 +2023-10-27 13:54:23.757 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:23.757  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:23.757  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:23.765 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:23.765  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql +2023-10-27 13:54:23.766 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:23.766  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What are the German names of academic disciplines containing “linguistik”?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:54:23.767 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 +2023-10-27 13:54:23.767 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 +2023-10-27 13:54:23.767 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:54:23.767  INFO 28725 --- [io-10008-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-822409499 +2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4c050914 +2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:54:23.836  INFO 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What are the German names of academic disciplines containing \u201Clinguistik\u201D?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9163943050124096","percentageOfSecondRank":"0.07950895145913986"},{"URI":"http:\/\/dbpedia.org\/resource\/German_name","support":"266","types":"","surfaceForm":"German names","offset":"13","similarityScore":"0.9999999793085694","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Outline_of_academic_disciplines","support":"167","types":"","surfaceForm":"academic disciplines","offset":"29","similarityScore":"0.9987039161368536","percentageOfSecondRank":"0.0012977655012844157"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:54:23.836  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "What are the German names of academic disciplines containing “linguistik”?": <200,{"types":"","confidence":"0.1","text":"What are the German names of academic disciplines containing \u201Clinguistik\u201D?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9163943050124096","percentageOfSecondRank":"0.07950895145913986"},{"URI":"http:\/\/dbpedia.org\/resource\/German_name","support":"266","types":"","surfaceForm":"German names","offset":"13","similarityScore":"0.9999999793085694","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Outline_of_academic_disciplines","support":"167","types":"","surfaceForm":"academic disciplines","offset":"29","similarityScore":"0.9987039161368536","percentageOfSecondRank":"0.0012977655012844157"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:54:23 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:54:23.837 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/String_theory at (0,4) +2023-10-27 13:54:23.837 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/German_name at (13,25) +2023-10-27 13:54:23.837 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Outline_of_academic_disciplines at (29,49) +2023-10-27 13:54:23.844 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:23.844  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c2ca7a5 +2023-10-27 13:54:23.844 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:23.846  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9163943050124096 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.846  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9163943050124096 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.846 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9163943050124096 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.852  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49ebf36 +2023-10-27 13:54:23.852 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:23.853  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999793085694 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.854  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999793085694 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.854 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999793085694 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.862  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49436f09 +2023-10-27 13:54:23.862 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:23.863  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9987039161368536 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.863  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9987039161368536 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.863 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9987039161368536 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.870 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 128 ms +2023-10-27 13:54:34.153  INFO 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.153  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.153  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.163  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61a9aea0 +2023-10-27 13:54:34.163 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:34.164  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.164  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.189 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 +2023-10-27 13:54:34.189  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql +2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? +2023-10-27 13:54:34.192  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many things are part of the "One Piece" Franchise?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F&confidence=0.1 +2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F&confidence=0.1 +2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:54:34.193  INFO 28725 --- [io-10008-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-415470739 +2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@32e8599f +2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:54:34.262  INFO 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many things are part of the \"One Piece\" Franchise?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643751403"},{"URI":"http:\/\/dbpedia.org\/resource\/One_Piece","support":"1742","types":"Wikidata:Q8274,Wikidata:Q386724,Wikidata:Q245068,Wikidata:Q234460,Schema:CreativeWork,DBpedia:WrittenWork,DBpedia:Work,DBpedia:Comic,DBpedia:Manga","surfaceForm":"One Piece","offset":"33","similarityScore":"0.9999905828971725","percentageOfSecondRank":"9.366625940786954E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Franchising","support":"2226","types":"","surfaceForm":"Franchise","offset":"44","similarityScore":"0.9613956253946947","percentageOfSecondRank":"0.02985893960630292"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:54:34.262  WARN 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "How many things are part of the "One Piece" Franchise?": <200,{"types":"","confidence":"0.1","text":"How many things are part of the \"One Piece\" Franchise?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643751403"},{"URI":"http:\/\/dbpedia.org\/resource\/One_Piece","support":"1742","types":"Wikidata:Q8274,Wikidata:Q386724,Wikidata:Q245068,Wikidata:Q234460,Schema:CreativeWork,DBpedia:WrittenWork,DBpedia:Work,DBpedia:Comic,DBpedia:Manga","surfaceForm":"One Piece","offset":"33","similarityScore":"0.9999905828971725","percentageOfSecondRank":"9.366625940786954E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Franchising","support":"2226","types":"","surfaceForm":"Franchise","offset":"44","similarityScore":"0.9613956253946947","percentageOfSecondRank":"0.02985893960630292"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:54:34 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:54:34.263 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/How_2 at (0,3) +2023-10-27 13:54:34.263 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/One_Piece at (33,42) +2023-10-27 13:54:34.263 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Franchising at (44,53) +2023-10-27 13:54:34.270 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 +2023-10-27 13:54:34.271  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@565d19fb +2023-10-27 13:54:34.271 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:34.273  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7274040260671994 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.274  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7274040260671994 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.274 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7274040260671994 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.285  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7aad613e +2023-10-27 13:54:34.285 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:34.287  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999905828971725 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.287  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999905828971725 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.287 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999905828971725 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.295  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76d143c6 +2023-10-27 13:54:34.295 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:34.297  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "44"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9613956253946947 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.297  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "44"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9613956253946947 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.297 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "44"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9613956253946947 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:34.304 DEBUG 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : processing took: 151 ms +2023-10-27 13:57:49.514  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:49.543  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:49.544  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:49.653  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@464840bc +2023-10-27 13:57:49.657 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:49.687  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:49.688  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:49.747 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:49.747  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql +2023-10-27 13:57:49.766 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? +2023-10-27 13:57:49.766  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many movies does the Scream franchise have?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:57:49.768 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+does+the+Scream+franchise+have%3F&confidence=0.1 +2023-10-27 13:57:49.773 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+does+the+Scream+franchise+have%3F&confidence=0.1 +2023-10-27 13:57:49.774 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:57:49.784  INFO 28725 --- [io-10008-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=404956697 +2023-10-27 13:57:49.935 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@480e5b71 +2023-10-27 13:57:49.935 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:49.936 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:57:49.942  INFO 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:57:49.944 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many movies does the Scream franchise have?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643750376"},{"URI":"http:\/\/dbpedia.org\/resource\/Scream_(franchise)","support":"247","types":"","surfaceForm":"Scream franchise","offset":"25","similarityScore":"0.9999999494800716","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:57:49.945  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "How many movies does the Scream franchise have?": <200,{"types":"","confidence":"0.1","text":"How many movies does the Scream franchise have?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643750376"},{"URI":"http:\/\/dbpedia.org\/resource\/Scream_(franchise)","support":"247","types":"","surfaceForm":"Scream franchise","offset":"25","similarityScore":"0.9999999494800716","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:57:49 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:57:49.946 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/How_2 at (0,3) +2023-10-27 13:57:49.946 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Scream_(franchise) at (25,41) +2023-10-27 13:57:49.954 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:49.957  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40dd7653 +2023-10-27 13:57:49.957 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:49.963  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7274040260671994 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:49.964  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7274040260671994 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:49.964 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7274040260671994 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:49.973  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44148354 +2023-10-27 13:57:49.974 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:49.977  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999494800716 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:49.978  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999494800716 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:49.978 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999494800716 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:49.988 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 455 ms +2023-10-27 13:58:04.338  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:04.338  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:04.338  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:04.416  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b72f533 +2023-10-27 13:58:04.416 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:04.417  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:04.418  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:04.424 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:04.425  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql +2023-10-27 13:58:04.428 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:04.428  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Who is the oldest cast member of the Netflix show “Queer Eye” ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 13:58:04.428 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+is+the+oldest+cast+member+of+the+Netflix+show+%E2%80%9CQueer+Eye%E2%80%9D+%3F&confidence=0.1 +2023-10-27 13:58:04.429 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+is+the+oldest+cast+member+of+the+Netflix+show+%E2%80%9CQueer+Eye%E2%80%9D+%3F&confidence=0.1 +2023-10-27 13:58:04.429 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:58:04.430  INFO 28725 --- [io-10008-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=849537852 +2023-10-27 13:58:04.526 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@afd4518 +2023-10-27 13:58:04.526 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:04.526 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:58:04.527  INFO 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:58:04.527 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Who is the oldest cast member of the Netflix show \u201CQueer Eye\u201D ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9794783090805582","percentageOfSecondRank":"0.013722891902927413"},{"URI":"http:\/\/dbpedia.org\/resource\/Casting","support":"1454","types":"","surfaceForm":"cast","offset":"18","similarityScore":"0.5942742748907281","percentageOfSecondRank":"0.3553503799296916"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"23","similarityScore":"0.8647330455124939","percentageOfSecondRank":"0.08640125357159367"},{"URI":"http:\/\/dbpedia.org\/resource\/Netflix","support":"15512","types":"","surfaceForm":"Netflix","offset":"37","similarityScore":"0.9999999951971574","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Queer_Eye","support":"279","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"Queer Eye","offset":"51","similarityScore":"0.9999999779308271","percentageOfSecondRank":"2.2069162187046626E-8"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 13:58:04.528  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Who is the oldest cast member of the Netflix show “Queer Eye” ?": <200,{"types":"","confidence":"0.1","text":"Who is the oldest cast member of the Netflix show \u201CQueer Eye\u201D ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9794783090805582","percentageOfSecondRank":"0.013722891902927413"},{"URI":"http:\/\/dbpedia.org\/resource\/Casting","support":"1454","types":"","surfaceForm":"cast","offset":"18","similarityScore":"0.5942742748907281","percentageOfSecondRank":"0.3553503799296916"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"23","similarityScore":"0.8647330455124939","percentageOfSecondRank":"0.08640125357159367"},{"URI":"http:\/\/dbpedia.org\/resource\/Netflix","support":"15512","types":"","surfaceForm":"Netflix","offset":"37","similarityScore":"0.9999999951971574","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Queer_Eye","support":"279","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"Queer Eye","offset":"51","similarityScore":"0.9999999779308271","percentageOfSecondRank":"2.2069162187046626E-8"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:58:04 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/The_Who at (0,3) +2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Casting at (18,22) +2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Member_of_parliament at (23,29) +2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Netflix at (37,44) +2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Queer_Eye at (51,60) +2023-10-27 13:58:04.535 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:04.536  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@453ba599 +2023-10-27 13:58:04.536 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:04.539  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9794783090805582 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.539  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9794783090805582 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.539 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9794783090805582 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.548  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@92c0b60 +2023-10-27 13:58:04.548 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:04.550  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "22"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5942742748907281 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.550  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "22"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5942742748907281 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.550 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "22"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5942742748907281 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.557  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e866619 +2023-10-27 13:58:04.558 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:04.560  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8647330455124939 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.561  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8647330455124939 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.561 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8647330455124939 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.569  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@eb33b54 +2023-10-27 13:58:04.570 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:04.573  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999951971574 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.573  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999951971574 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.573 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999951971574 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.582  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16bc5076 +2023-10-27 13:58:04.582 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:04.585  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "51"^^xsd:nonNegativeInteger . + _:b1 oa:end "60"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999779308271 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.585  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "51"^^xsd:nonNegativeInteger . + _:b1 oa:end "60"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999779308271 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.585 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "51"^^xsd:nonNegativeInteger . + _:b1 oa:end "60"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999779308271 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:04.591 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 253 ms +2023-10-27 14:00:40.548  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.548  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.549  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.585  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13b0e530 +2023-10-27 14:00:40.585 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:40.586  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:40.586  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:40.592 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:40.593  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql +2023-10-27 14:00:40.594 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? +2023-10-27 14:00:40.594  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many movies were directed by Akira Kurosawa ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:00:40.595 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&confidence=0.1 +2023-10-27 14:00:40.595 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&confidence=0.1 +2023-10-27 14:00:40.595 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:00:40.595  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-827169913 +2023-10-27 14:00:40.684 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@42779f4a +2023-10-27 14:00:40.684 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:40.684 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:00:40.684  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many movies were directed by Akira Kurosawa ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"directed","offset":"21","similarityScore":"0.9998732497684211","percentageOfSecondRank":"3.78019656320863E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Akira_Kurosawa","support":"1212","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Akira Kurosawa","offset":"33","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:00:40.685  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "How many movies were directed by Akira Kurosawa ?": <200,{"types":"","confidence":"0.1","text":"How many movies were directed by Akira Kurosawa ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"directed","offset":"21","similarityScore":"0.9998732497684211","percentageOfSecondRank":"3.78019656320863E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Akira_Kurosawa","support":"1212","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Akira Kurosawa","offset":"33","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:00:40 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/How_(TV_series) at (0,3) +2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Film_director at (21,29) +2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Akira_Kurosawa at (33,47) +2023-10-27 14:00:40.690 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:40.690  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7b05e441 +2023-10-27 14:00:40.690 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:00:40.691  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.691  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.692 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.699  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f080774 +2023-10-27 14:00:40.699 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:00:40.700  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9998732497684211 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.701  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9998732497684211 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.701 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9998732497684211 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.706  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@384ae400 +2023-10-27 14:00:40.706 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:00:40.708  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.708  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.708 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.718 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 170 ms +2023-10-27 14:03:01.026  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.027  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.027  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.109  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fa23eca +2023-10-27 14:03:01.109 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:01.111  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:01.112  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:01.139 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:01.139  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql +2023-10-27 14:03:01.142 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:01.142  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:03:01.143 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 +2023-10-27 14:03:01.143 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 +2023-10-27 14:03:01.143 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:01.224 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@72356d8 +2023-10-27 14:03:01.225 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:01.225 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:03:01.226  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:03:01.227 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:03:01.229  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 6 resources recognized for "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?": <200,{"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:13 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 5): http://dbpedia.org/resource/South_Korean_won at (8,11) +2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 5): http://dbpedia.org/resource/National_Basketball_Association at (17,20) +2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 5): http://dbpedia.org/resource/Michael_Jordan at (29,43) +2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 5): http://dbpedia.org/resource/Kobe_Bryant at (47,51) +2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 5): http://dbpedia.org/resource/Bean at (52,56) +2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (5 of 5): http://dbpedia.org/resource/Kobe_Bryant at (57,63) +2023-10-27 14:03:01.238 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:01.238  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72fa9b8b +2023-10-27 14:03:01.239 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:01.242  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9871424863560028 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.242  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9871424863560028 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.243 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9871424863560028 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.252  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5890a8a0 +2023-10-27 14:03:01.253 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:01.255  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9982751030641623 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.256  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9982751030641623 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.256 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9982751030641623 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.265  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32876920 +2023-10-27 14:03:01.266 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:01.269  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999981796071551 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.270  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999981796071551 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.270 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999981796071551 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.277  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@294bf578 +2023-10-27 14:03:01.278 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:01.281  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988244763302297 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.282  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988244763302297 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.283 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988244763302297 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.292  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fcb1519 +2023-10-27 14:03:01.293 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:01.297  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "52"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9513692458761086 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.297  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "52"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9513692458761086 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.297 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "52"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9513692458761086 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.306  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@524379e8 +2023-10-27 14:03:01.306 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:01.309  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "57"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999997963240682 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.310  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "57"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999997963240682 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.310 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "57"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999997963240682 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.320 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 293 ms +2023-10-27 14:03:07.837  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:07.837  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:07.838  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:07.946  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4639a18c +2023-10-27 14:03:07.946 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:07.949  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:07.949  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:07.958 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf +2023-10-27 14:03:07.959  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql +2023-10-27 14:03:07.961 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? +2023-10-27 14:03:07.961  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Which animal participated in a military operation with the Australian Defence Force?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:03:07.961 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&confidence=0.1 +2023-10-27 14:03:07.961 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&confidence=0.1 +2023-10-27 14:03:07.962 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:07.962  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=311124984 +2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3dd6e46c +2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:03:08.055  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Which animal participated in a military operation with the Australian Defence Force?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Animal","support":"6891","types":"","surfaceForm":"animal","offset":"6","similarityScore":"0.9976860064269304","percentageOfSecondRank":"9.095230306847032E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/World_War_II_by_country","support":"255","types":"","surfaceForm":"participated","offset":"13","similarityScore":"0.7748438370930263","percentageOfSecondRank":"0.07694255204149524"},{"URI":"http:\/\/dbpedia.org\/resource\/Military_operation","support":"1641","types":"","surfaceForm":"military operation","offset":"31","similarityScore":"0.9988028023598351","percentageOfSecondRank":"5.312097700293826E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Australian_Defence_Force","support":"1600","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q176799,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Organisation,DBpedia:Agent,DBpedia:MilitaryUnit","surfaceForm":"Australian Defence Force","offset":"59","similarityScore":"0.9999960921043443","percentageOfSecondRank":"3.9079109235556665E-6"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:03:08.055  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Which animal participated in a military operation with the Australian Defence Force?": <200,{"types":"","confidence":"0.1","text":"Which animal participated in a military operation with the Australian Defence Force?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Animal","support":"6891","types":"","surfaceForm":"animal","offset":"6","similarityScore":"0.9976860064269304","percentageOfSecondRank":"9.095230306847032E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/World_War_II_by_country","support":"255","types":"","surfaceForm":"participated","offset":"13","similarityScore":"0.7748438370930263","percentageOfSecondRank":"0.07694255204149524"},{"URI":"http:\/\/dbpedia.org\/resource\/Military_operation","support":"1641","types":"","surfaceForm":"military operation","offset":"31","similarityScore":"0.9988028023598351","percentageOfSecondRank":"5.312097700293826E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Australian_Defence_Force","support":"1600","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q176799,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Organisation,DBpedia:Agent,DBpedia:MilitaryUnit","surfaceForm":"Australian Defence Force","offset":"59","similarityScore":"0.9999960921043443","percentageOfSecondRank":"3.9079109235556665E-6"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:03:08 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/Langues_d'oïl at (0,5) +2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Animal at (6,12) +2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/World_War_II_by_country at (13,25) +2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Military_operation at (31,49) +2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Australian_Defence_Force at (59,83) +2023-10-27 14:03:08.062 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf +2023-10-27 14:03:08.062  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52d36d32 +2023-10-27 14:03:08.062 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:08.067  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8956483894223672 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.068  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8956483894223672 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.068 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8956483894223672 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.073  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@59ed9325 +2023-10-27 14:03:08.074 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:08.075  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "12"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9976860064269304 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.075  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "12"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9976860064269304 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.075 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "12"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9976860064269304 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.082  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18f187bc +2023-10-27 14:03:08.083 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:08.084  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7748438370930263 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.084  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7748438370930263 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.084 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.7748438370930263 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.090  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@128ef54a +2023-10-27 14:03:08.090 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:08.091  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988028023598351 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.092  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988028023598351 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.092 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988028023598351 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.099  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5bfda0d4 +2023-10-27 14:03:08.099 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:03:08.101  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "83"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999960921043443 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.102  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "83"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999960921043443 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.102 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "83"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999960921043443 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.111 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 274 ms +2023-10-27 14:03:47.620  INFO 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:47.620  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:47.620  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:47.702  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d49b993 +2023-10-27 14:03:47.702 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:47.702  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:47.703  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:47.709 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 +2023-10-27 14:03:47.709  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql +2023-10-27 14:03:47.710 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? +2023-10-27 14:03:47.711  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "who is the youngested member in g-idle?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:03:47.711 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=who+is+the+youngested+member+in+g-idle%3F&confidence=0.1 +2023-10-27 14:03:47.711 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=who+is+the+youngested+member+in+g-idle%3F&confidence=0.1 +2023-10-27 14:03:47.711 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:47.711  INFO 28725 --- [o-10008-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=777548155 +2023-10-27 14:03:47.798 DEBUG 28725 --- [o-10008-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67b1d2e3 +2023-10-27 14:03:47.798 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:47.799 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:03:47.799  INFO 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:03:47.799 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"who is the youngested member in g-idle?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"22","similarityScore":"0.8544546570249796","percentageOfSecondRank":"0.11873696956800564"}},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:03:47.800  INFO 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : The web service response for 'who is the youngested member in g-idle?' was empty. However, the JSON response was valid. +2023-10-27 14:03:47.800  WARN 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : nothing recognized for "who is the youngested member in g-idle?": <200,{"types":"","confidence":"0.1","text":"who is the youngested member in g-idle?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"22","similarityScore":"0.8544546570249796","percentageOfSecondRank":"0.11873696956800564"}},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:03:47 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:03:47.800 DEBUG 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : processing took: 180 ms +2023-10-27 14:04:06.099  INFO 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:06.100  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:06.100  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:06.110  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7bffd7ea +2023-10-27 14:04:06.110 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:06.111  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:06.111  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:06.119 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:06.119  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql +2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? +2023-10-27 14:04:06.121  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "When was Rumi born?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 +2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 +2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:04:06.121  INFO 28725 --- [io-10008-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1680371682 +2023-10-27 14:04:06.210 DEBUG 28725 --- [io-10008-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7525e631 +2023-10-27 14:04:06.210 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:04:06.210 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:04:06.211  INFO 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"When was Rumi born?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.89590991274047","percentageOfSecondRank":"0.05696410439286022"},{"URI":"http:\/\/dbpedia.org\/resource\/Rumi","support":"1111","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q2566598,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Religious","surfaceForm":"Rumi","offset":"9","similarityScore":"0.9981752230789295","percentageOfSecondRank":"0.00143775838733992"},{"URI":"http:\/\/dbpedia.org\/resource\/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"14","similarityScore":"0.4669742058601906","percentageOfSecondRank":"0.390265943553758"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:04:06.211  WARN 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "When was Rumi born?": <200,{"types":"","confidence":"0.1","text":"When was Rumi born?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.89590991274047","percentageOfSecondRank":"0.05696410439286022"},{"URI":"http:\/\/dbpedia.org\/resource\/Rumi","support":"1111","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q2566598,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Religious","surfaceForm":"Rumi","offset":"9","similarityScore":"0.9981752230789295","percentageOfSecondRank":"0.00143775838733992"},{"URI":"http:\/\/dbpedia.org\/resource\/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"14","similarityScore":"0.4669742058601906","percentageOfSecondRank":"0.390265943553758"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:04:06 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Time at (0,4) +2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Rumi at (9,13) +2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Childbirth at (14,18) +2023-10-27 14:04:06.217 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:06.218  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@970db68 +2023-10-27 14:04:06.218 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:06.219  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.89590991274047 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.219  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.89590991274047 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.219 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.89590991274047 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.225  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cb51d2b +2023-10-27 14:04:06.225 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:06.226  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9981752230789295 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.227  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9981752230789295 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.227 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9981752230789295 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.234  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1f69d0d5 +2023-10-27 14:04:06.234 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:06.235  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.4669742058601906 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.235  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.4669742058601906 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.235 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.4669742058601906 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.241 DEBUG 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : processing took: 141 ms +2023-10-27 14:04:14.265  INFO 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:14.265  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:14.265  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:14.277  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@299cb972 +2023-10-27 14:04:14.277 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:14.278  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:14.278  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:14.285 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd +2023-10-27 14:04:14.285  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql +2023-10-27 14:04:14.286 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? +2023-10-27 14:04:14.286  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What are the titles of the Star Wars series movies?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:04:14.286 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+titles+of+the+Star+Wars+series+movies%3F&confidence=0.1 +2023-10-27 14:04:14.287 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+titles+of+the+Star+Wars+series+movies%3F&confidence=0.1 +2023-10-27 14:04:14.287 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:04:14.287  INFO 28725 --- [io-10008-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=590740854 +2023-10-27 14:04:14.376 DEBUG 28725 --- [io-10008-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7d4386bb +2023-10-27 14:04:14.376 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:04:14.376 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:04:14.377  INFO 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:04:14.377 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What are the titles of the Star Wars series movies?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.8963853949271124","percentageOfSecondRank":"0.0964307397389478"},{"URI":"http:\/\/dbpedia.org\/resource\/Star_Wars","support":"12318","types":"","surfaceForm":"Star Wars","offset":"27","similarityScore":"0.9988338397513731","percentageOfSecondRank":"0.0010522775858442745"},{"URI":"http:\/\/dbpedia.org\/resource\/Television_show","support":"19172","types":"","surfaceForm":"series","offset":"37","similarityScore":"0.9412726722103787","percentageOfSecondRank":"0.024803508522485185"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:04:14.377  WARN 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "What are the titles of the Star Wars series movies?": <200,{"types":"","confidence":"0.1","text":"What are the titles of the Star Wars series movies?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.8963853949271124","percentageOfSecondRank":"0.0964307397389478"},{"URI":"http:\/\/dbpedia.org\/resource\/Star_Wars","support":"12318","types":"","surfaceForm":"Star Wars","offset":"27","similarityScore":"0.9988338397513731","percentageOfSecondRank":"0.0010522775858442745"},{"URI":"http:\/\/dbpedia.org\/resource\/Television_show","support":"19172","types":"","surfaceForm":"series","offset":"37","similarityScore":"0.9412726722103787","percentageOfSecondRank":"0.024803508522485185"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:04:14 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:04:14.377 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/String_theory at (0,4) +2023-10-27 14:04:14.378 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Star_Wars at (27,36) +2023-10-27 14:04:14.378 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Television_show at (37,43) +2023-10-27 14:04:14.382 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd +2023-10-27 14:04:14.383  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@940b580 +2023-10-27 14:04:14.383 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:14.384  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8963853949271124 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.385  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8963853949271124 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.385 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8963853949271124 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.391  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45dbcaf3 +2023-10-27 14:04:14.391 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:14.392  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988338397513731 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.393  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988338397513731 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.393 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9988338397513731 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.398  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68deda1c +2023-10-27 14:04:14.398 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:14.400  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9412726722103787 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.400  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9412726722103787 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.400 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9412726722103787 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.405 DEBUG 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : processing took: 140 ms +2023-10-27 14:05:30.736  INFO 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:30.737  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:30.737  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:30.747  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c17897f +2023-10-27 14:05:30.748 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:30.748  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:30.749  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:30.754 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:30.754  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql +2023-10-27 14:05:30.756 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 14:05:30.757  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "in which language does the united stated have the shortest short name?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:05:30.757 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 +2023-10-27 14:05:30.757 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 +2023-10-27 14:05:30.757 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:05:30.757  INFO 28725 --- [io-10008-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-996304361 +2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1fc90623 +2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:05:30.864  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"in which language does the united stated have the shortest short name?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Language","support":"21994","types":"","surfaceForm":"language","offset":"9","similarityScore":"0.9742593246572685","percentageOfSecondRank":"0.01094758442766131"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"united stated","offset":"27","similarityScore":"0.9999999994779074","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Short_film","support":"11379","types":"","surfaceForm":"short","offset":"59","similarityScore":"0.9774975252379949","percentageOfSecondRank":"0.011209388443481693"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:05:30.864  WARN 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "in which language does the united stated have the shortest short name?": <200,{"types":"","confidence":"0.1","text":"in which language does the united stated have the shortest short name?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Language","support":"21994","types":"","surfaceForm":"language","offset":"9","similarityScore":"0.9742593246572685","percentageOfSecondRank":"0.01094758442766131"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"united stated","offset":"27","similarityScore":"0.9999999994779074","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Short_film","support":"11379","types":"","surfaceForm":"short","offset":"59","similarityScore":"0.9774975252379949","percentageOfSecondRank":"0.011209388443481693"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:05:30 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:05:30.865 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Language at (9,17) +2023-10-27 14:05:30.865 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/United_States at (27,40) +2023-10-27 14:05:30.865 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Short_film at (59,64) +2023-10-27 14:05:30.869 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:30.869  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f7528d4 +2023-10-27 14:05:30.869 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:05:30.870  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9742593246572685 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.871  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9742593246572685 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.871 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9742593246572685 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.876  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@188d9607 +2023-10-27 14:05:30.876 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:05:30.877  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999994779074 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.877  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999994779074 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.878 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999994779074 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.883  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f0f0c49 +2023-10-27 14:05:30.883 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:05:30.885  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9774975252379949 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.885  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9774975252379949 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.885 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9774975252379949 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:30.891 DEBUG 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : processing took: 155 ms +2023-10-27 14:08:25.927  INFO 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:25.928  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:25.929  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:25.949  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22b35071 +2023-10-27 14:08:25.950 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:25.953  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:25.954  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:25.961 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:25.961  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql +2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 14:08:25.963  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many countries have never been members of the UN?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+countries+have+never+been+members+of+the+UN%3F&confidence=0.1 +2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+countries+have+never+been+members+of+the+UN%3F&confidence=0.1 +2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:08:25.963  INFO 28725 --- [o-10008-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=680584588 +2023-10-27 14:08:26.083 DEBUG 28725 --- [o-10008-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@13dbb687 +2023-10-27 14:08:26.084 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:26.084 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:08:26.085  INFO 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many countries have never been members of the UN?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"members","offset":"35","similarityScore":"0.8842831295006407","percentageOfSecondRank":"0.10859340190053006"},{"URI":"http:\/\/dbpedia.org\/resource\/United_Nations","support":"62254","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"UN","offset":"50","similarityScore":"0.9995876881324613","percentageOfSecondRank":"2.1951930462405043E-4"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:08:26.086  WARN 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "How many countries have never been members of the UN?": <200,{"types":"","confidence":"0.1","text":"How many countries have never been members of the UN?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"members","offset":"35","similarityScore":"0.8842831295006407","percentageOfSecondRank":"0.10859340190053006"},{"URI":"http:\/\/dbpedia.org\/resource\/United_Nations","support":"62254","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"UN","offset":"50","similarityScore":"0.9995876881324613","percentageOfSecondRank":"2.1951930462405043E-4"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:08:26 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/How_(TV_series) at (0,3) +2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Member_of_parliament at (35,42) +2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/United_Nations at (50,52) +2023-10-27 14:08:26.092 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:26.092  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a1448d5 +2023-10-27 14:08:26.092 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:26.094  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.094  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.094 DEBUG 28725 --- [o-10008-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8927646989181806 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.100  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@429caf3e +2023-10-27 14:08:26.101 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:26.102  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8842831295006407 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.103  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8842831295006407 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.103 DEBUG 28725 --- [o-10008-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.8842831295006407 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.108  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@77bbfda0 +2023-10-27 14:08:26.109 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:26.110  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9995876881324613 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.110  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9995876881324613 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.110 DEBUG 28725 --- [o-10008-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9995876881324613 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.115 DEBUG 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : processing took: 187 ms +2023-10-27 14:08:30.322  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:08:30.322  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:08:30.322  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:08:30.334  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2dea829c +2023-10-27 14:08:30.334 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:30.335  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:30.335  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:30.343 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 +2023-10-27 14:08:30.343  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql +2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? +2023-10-27 14:08:30.345  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F&confidence=0.1 +2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F&confidence=0.1 +2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:08:30.346  INFO 28725 --- [io-10008-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=129621281 +2023-10-27 14:08:30.398 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4492090b +2023-10-27 14:08:30.398 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:30.398 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:08:30.399  INFO 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Interrogative_word","support":"265","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.5112861131261499","percentageOfSecondRank":"0.955850817201625"},{"URI":"http:\/\/dbpedia.org\/resource\/Television","support":"34737","types":"","surfaceForm":"TV","offset":"21","similarityScore":"0.6177782034114327","percentageOfSecondRank":"0.5973823288423435"},{"URI":"http:\/\/dbpedia.org\/resource\/The_Flintstones","support":"1313","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"The Flintstones","offset":"29","similarityScore":"0.9999999999546674","percentageOfSecondRank":"4.5257197727663274E-11"},{"URI":"http:\/\/dbpedia.org\/resource\/Racial_discrimination","support":"628","types":"","surfaceForm":"racial discrimination","offset":"59","similarityScore":"0.9906362874219914","percentageOfSecondRank":"0.002843090980497325"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"US","offset":"98","similarityScore":"0.9972981277971957","percentageOfSecondRank":"0.001967101671796666"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:08:30.399  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?": <200,{"types":"","confidence":"0.1","text":"What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Interrogative_word","support":"265","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.5112861131261499","percentageOfSecondRank":"0.955850817201625"},{"URI":"http:\/\/dbpedia.org\/resource\/Television","support":"34737","types":"","surfaceForm":"TV","offset":"21","similarityScore":"0.6177782034114327","percentageOfSecondRank":"0.5973823288423435"},{"URI":"http:\/\/dbpedia.org\/resource\/The_Flintstones","support":"1313","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"The Flintstones","offset":"29","similarityScore":"0.9999999999546674","percentageOfSecondRank":"4.5257197727663274E-11"},{"URI":"http:\/\/dbpedia.org\/resource\/Racial_discrimination","support":"628","types":"","surfaceForm":"racial discrimination","offset":"59","similarityScore":"0.9906362874219914","percentageOfSecondRank":"0.002843090980497325"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"US","offset":"98","similarityScore":"0.9972981277971957","percentageOfSecondRank":"0.001967101671796666"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:08:30 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=99", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/Interrogative_word at (0,4) +2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Television at (21,23) +2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/The_Flintstones at (29,44) +2023-10-27 14:08:30.400 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Racial_discrimination at (59,80) +2023-10-27 14:08:30.400 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/United_States at (98,100) +2023-10-27 14:08:30.406 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 +2023-10-27 14:08:30.407  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@350479a0 +2023-10-27 14:08:30.407 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:30.409  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5112861131261499 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.409  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5112861131261499 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.409 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5112861131261499 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.419  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@676d632e +2023-10-27 14:08:30.419 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:30.420  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.6177782034114327 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.420  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.6177782034114327 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.420 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.6177782034114327 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.427  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e6af33d +2023-10-27 14:08:30.428 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:30.431  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999546674 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.431  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999546674 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.431 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9999999999546674 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.440  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ae46baa +2023-10-27 14:08:30.440 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:30.443  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "80"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9906362874219914 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.443  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "80"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9906362874219914 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.443 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "80"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9906362874219914 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.451  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c3bc22f +2023-10-27 14:08:30.452 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:30.455  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "98"^^xsd:nonNegativeInteger . + _:b1 oa:end "100"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9972981277971957 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.455  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "98"^^xsd:nonNegativeInteger . + _:b1 oa:end "100"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9972981277971957 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.455 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "98"^^xsd:nonNegativeInteger . + _:b1 oa:end "100"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.9972981277971957 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:30.470 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 148 ms +2023-10-27 14:09:42.906  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:42.906  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:42.906  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:42.915  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6ebc6435 +2023-10-27 14:09:42.915 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:42.917  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:42.917  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:42.928 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:42.928  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql +2023-10-27 14:09:42.929 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:09:42.929  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:09:42.929 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:09:42.930 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:09:42.930 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:09:42.930  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2056941755 +2023-10-27 14:09:43.005 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e +2023-10-27 14:09:43.005 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:43.005 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:09:43.006  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:09:43.006 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:09:43.006  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:09:43.006 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:09:43.006 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:09:43.010 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:43.011  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@78511bd2 +2023-10-27 14:09:43.011 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:09:43.012  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.012  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.012 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.022  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4da5c95e +2023-10-27 14:09:43.022 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:09:43.023  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.024  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.024 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.030 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 124 ms +2023-10-27 14:10:25.777  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:25.777  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:25.777  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:25.858  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5043be95 +2023-10-27 14:10:25.861 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:25.862  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.862  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.875 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:25.876  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql +2023-10-27 14:10:25.877 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:10:25.877  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:10:25.878 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:10:25.878 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:10:25.878 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e +2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:10:25.879  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:10:25.879  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:10:25.880 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:10:25.880 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:10:25.890 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:25.893  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19794cbb +2023-10-27 14:10:25.894 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:10:25.896  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.896  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.896 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.908  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7029cd05 +2023-10-27 14:10:25.909 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:10:25.911  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.911  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.911 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.923 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 146 ms +2023-10-27 14:11:01.590  INFO 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} +2023-10-27 14:11:01.590  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} +2023-10-27 14:11:01.590  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} +2023-10-27 14:11:01.607  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@210f3806 +2023-10-27 14:11:01.607 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:01.608  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:01.609  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:01.615 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 +2023-10-27 14:11:01.615  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 found in urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d at http://localhost:8080/sparql +2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:01.617  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e +2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:11:01.618  WARN 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:11:01.618 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:11:01.618  WARN 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:11:01.618 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:11:01.618 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:11:01.623 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 +2023-10-27 14:11:01.623  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b036a3f +2023-10-27 14:11:01.624 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:11:01.625  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.625  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.625 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.632  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@315e27c1 +2023-10-27 14:11:01.632 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:11:01.633  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.633  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.633 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.639 DEBUG 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : processing took: 49 ms +2023-10-27 14:11:05.662  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.663  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.663  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.671  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39bd722 +2023-10-27 14:11:05.671 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:05.671  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:05.672  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:05.677 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e +2023-10-27 14:11:05.677  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e found in urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf at http://localhost:8080/sparql +2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:05.679  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e +2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:11:05.680  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:11:05.680 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:11:05.680  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:11:05.680 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:11:05.680 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:11:05.687 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e +2023-10-27 14:11:05.687  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3974c1f3 +2023-10-27 14:11:05.687 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:11:05.689  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.689  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.689 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.695  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@12305760 +2023-10-27 14:11:05.696 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:11:05.697  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.697  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.697 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.702 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 39 ms +2023-10-27 14:11:16.519  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.519  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.519  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.535  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b84c4e9 +2023-10-27 14:11:16.535 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:16.536  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:16.536  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:16.542 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:16.542  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql +2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:16.543  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 +2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e +2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:11:16.544  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) +2023-10-27 14:11:16.544  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> +2023-10-27 14:11:16.545 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:11:16.545 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:11:16.550 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:16.550  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d120ad4 +2023-10-27 14:11:16.550 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:11:16.552  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.552  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.552 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 0.5118103110636382 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.558  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7aa6a1b2 +2023-10-27 14:11:16.558 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:score ?score . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:11:16.559  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.559  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.559 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:score 1.0 . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.565 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 46 ms diff --git a/qanary-component-NED-Dandelion/nohup.out b/qanary-component-NED-Dandelion/nohup.out new file mode 100644 index 000000000..232e97153 --- /dev/null +++ b/qanary-component-NED-Dandelion/nohup.out @@ -0,0 +1,7553 @@ +Error: Unable to access jarfile target/*.jar + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNED -- DandelionNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:01:32.777  INFO 7849 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 7849 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) +2023-10-27 12:01:32.784 DEBUG 7849 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:01:32.802  INFO 7849 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" +2023-10-27 12:01:39.411  WARN 7849 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:01:39.579  WARN 7849 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:01:39.628  WARN 7849 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelionNED' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ned/DandelionNED.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ned.DandelionNED]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException +2023-10-27 12:01:39.856 ERROR 7849 --- [ main] o.s.boot.SpringApplication  : Application run failed + +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelionNED' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ned/DandelionNED.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ned.DandelionNED]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] + at eu.wdaqua.qanary.component.dandelion.ned.Application.main(Application.java:50) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ned.DandelionNED]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 25 common frames omitted +Caused by: eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException: null + at eu.wdaqua.qanary.component.dandelion.ned.DandelionNED.(DandelionNED.java:64) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 27 common frames omitted + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNED -- DandelionNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:03:53.665  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 8575 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) +2023-10-27 12:03:53.669 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:03:53.669  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" +2023-10-27 12:03:55.932  WARN 8575 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:03:55.993  WARN 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:03:56.007  INFO 8575 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 +2023-10-27 12:03:56.009  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 12:03:56.025 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:03:56.032 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:03:56.035 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:03:56.040  INFO 8575 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 12:03:56.542 DEBUG 8575 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b +2023-10-27 12:03:56.544 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:03:56.547 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:03:56.550  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:03:56.585 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:03:56.513"} +2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 12:03:56.589  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 12:03:56.604  INFO 8575 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 +2023-10-27 12:03:56.604  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 12:03:56.604 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:03:56.605 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:03:56.605 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:03:56.605  INFO 8575 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 12:03:56.664 DEBUG 8575 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 +2023-10-27 12:03:56.665 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:03:56.665 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:03:56.665  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:03:56.666 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:03:56.636"} +2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 12:03:56.667  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 12:03:56.668  INFO 8575 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@497570fb +2023-10-27 12:03:56.672  INFO 8575 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8088 +spring.application.name = DandelionNED +spring.application.description = DandelionNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:03:56.683  INFO 8575 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl +2023-10-27 12:03:57.107  WARN 8575 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:03:57.118  INFO 8575 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 12:03:57.985  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : Started Application in 4.85 seconds (JVM running for 5.445) +2023-10-27 12:03:58.117  INFO 8575 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as f1fddc3c27f7 +2023-10-27 12:08:47.994  WARN 8575 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNED, managementUrl=http://0.0.0.0:8088/actuator, healthUrl=http://0.0.0.0:8088/actuator/health, serviceUrl=http://0.0.0.0:8088/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNED -- DandelionNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:22.439  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9646 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) +2023-10-27 12:09:22.466 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.469  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" +2023-10-27 12:09:41.537  WARN 9646 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:42.172  WARN 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:42.302  INFO 9646 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 +2023-10-27 12:09:42.310  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 12:09:42.426 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:09:42.484 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:09:42.488 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:09:42.525  INFO 9646 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 12:09:44.644 DEBUG 9646 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@27494e46 +2023-10-27 12:09:44.648 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:09:44.673 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:09:44.689  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:09:44.970 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:09:44.614"} +2023-10-27 12:09:44.993 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 12:09:44.993 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 12:09:44.993 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 12:09:45.008 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 12:09:45.008 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 12:09:45.008 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 12:09:45.009  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 12:09:45.100  INFO 9646 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6622a690 +2023-10-27 12:09:45.100  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 12:09:45.100 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:09:45.108 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:09:45.109 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:09:45.109  INFO 9646 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 12:09:45.191 DEBUG 9646 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30b9eadd +2023-10-27 12:09:45.191 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:09:45.192 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:09:45.192  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:09:45.198 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:09:45.166"} +2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 12:09:45.202  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 12:09:45.203  INFO 9646 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@412c995d +2023-10-27 12:09:45.230  INFO 9646 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8088 +spring.application.name = DandelionNED +spring.application.description = DandelionNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:45.295  INFO 9646 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl +2023-10-27 12:09:48.877  WARN 9646 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:48.998  INFO 9646 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 12:09:55.814  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : Started Application in 38.036 seconds (JVM running for 44.925) +2023-10-27 12:09:56.485  WARN 9646 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNED, managementUrl=http://0.0.0.0:8088/actuator, healthUrl=http://0.0.0.0:8088/actuator/health, serviceUrl=http://0.0.0.0:8088/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:06.244  INFO 9646 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as f1fddc3c27f7 + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNED -- DandelionNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:50.866  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11759 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) +2023-10-27 12:15:50.878 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:50.923  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" +2023-10-27 12:16:17.974  WARN 11759 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:18.759  WARN 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:18.914  INFO 11759 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 +2023-10-27 12:16:18.944  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 12:16:19.166 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:19.217 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:19.240 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:19.332  INFO 11759 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 12:16:22.845 DEBUG 11759 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@27494e46 +2023-10-27 12:16:22.888 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:22.914 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:16:22.978  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.508 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:16:22.810"} +2023-10-27 12:16:23.519 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 12:16:23.521 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 12:16:23.522 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 12:16:23.524 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 12:16:23.524 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 12:16:23.529 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 12:16:23.530  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 12:16:23.725  INFO 11759 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6622a690 +2023-10-27 12:16:23.725  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 12:16:23.726 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.726 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.740 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:23.743  INFO 11759 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 12:16:23.809 DEBUG 11759 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30b9eadd +2023-10-27 12:16:23.809 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:23.810 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:16:23.810  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.826 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:16:23.789"} +2023-10-27 12:16:23.827 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 12:16:23.827 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 12:16:23.828  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 12:16:23.835  INFO 11759 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@412c995d +2023-10-27 12:16:23.919  INFO 11759 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8088 +spring.application.name = DandelionNED +spring.application.description = DandelionNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:24.232  INFO 11759 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl +2023-10-27 12:16:29.657  WARN 11759 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:29.822  INFO 11759 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 12:16:39.633  WARN 11759 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8088 is already in use +2023-10-27 12:16:40.698 ERROR 11759 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8088 was already in use. + +Action: + +Identify and stop the process that's listening on port 8088 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNED -- DandelionNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:49.534  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28726 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) +2023-10-27 13:37:49.573 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:49.610  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" +2023-10-27 13:38:09.974  WARN 28726 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:10.709  WARN 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:10.969  INFO 28726 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 +2023-10-27 13:38:10.987  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 13:38:11.218 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:11.353 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:11.372 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:11.417  INFO 28726 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 13:38:13.821 DEBUG 28726 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b +2023-10-27 13:38:13.849 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:13.901 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:38:13.909  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:14.357 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:38:13.780"} +2023-10-27 13:38:14.417 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 13:38:14.417 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 13:38:14.418 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 13:38:14.420 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 13:38:14.421 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 13:38:14.421 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 13:38:14.422  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 13:38:14.595  INFO 28726 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 +2023-10-27 13:38:14.596  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 13:38:14.597 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:14.597 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:14.603 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:14.603  INFO 28726 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 13:38:14.656 DEBUG 28726 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 +2023-10-27 13:38:14.656 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:14.656 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:38:14.657  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:14.658 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:38:14.633"} +2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 13:38:14.663  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 13:38:14.672  INFO 28726 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@497570fb +2023-10-27 13:38:14.706  INFO 28726 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8088 +spring.application.name = DandelionNED +spring.application.description = DandelionNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:14.854  INFO 28726 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl +2023-10-27 13:38:18.882  WARN 28726 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:19.110  INFO 28726 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:38:29.615  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : Started Application in 46.386 seconds (JVM running for 52.407) +2023-10-27 13:38:30.372  WARN 28726 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNED, managementUrl=http://0.0.0.0:8088/actuator, healthUrl=http://0.0.0.0:8088/actuator/health, serviceUrl=http://0.0.0.0:8088/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 13:38:39.699  INFO 28726 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as f1fddc3c27f7 + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNED -- DandelionNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:52.992  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30117 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) +2023-10-27 13:38:53.014 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:53.027  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" +2023-10-27 13:39:16.593  WARN 30117 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:17.487  WARN 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:17.658  INFO 30117 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 +2023-10-27 13:39:17.661  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 13:39:17.712 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:17.724 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:17.731 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:17.744  INFO 30117 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 13:39:21.230 DEBUG 30117 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b +2023-10-27 13:39:21.235 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:21.303 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:39:21.349  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:21.850 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:39:21.183"} +2023-10-27 13:39:21.915 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 13:39:21.915 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 13:39:21.919 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 13:39:21.925 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 13:39:21.925 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 13:39:21.930 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 13:39:21.931  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 13:39:22.078  INFO 30117 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 +2023-10-27 13:39:22.078  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated +2023-10-27 13:39:22.079 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:22.079 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:22.079 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:22.079  INFO 30117 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 +2023-10-27 13:39:22.135 DEBUG 30117 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 +2023-10-27 13:39:22.136 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:22.136 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:39:22.137  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:22.138 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:39:22.113"} +2023-10-27 13:39:22.139 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 13:39:22.139 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 +2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth +2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein +2023-10-27 13:39:22.143  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected +2023-10-27 13:39:22.144  INFO 30117 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@497570fb +2023-10-27 13:39:22.166  INFO 30117 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8088 +spring.application.name = DandelionNED +spring.application.description = DandelionNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:22.361  INFO 30117 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl +2023-10-27 13:39:26.826  WARN 30117 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:27.009  INFO 30117 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:39:35.106  WARN 30117 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8088 is already in use +2023-10-27 13:39:35.446 ERROR 30117 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8088 was already in use. + +Action: + +Identify and stop the process that's listening on port 8088 or configure this application to listen on another port. + +2023-10-27 13:51:55.977  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"} +2023-10-27 13:51:55.992  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"} +2023-10-27 13:51:56.083  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"},"inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"} +2023-10-27 13:51:56.230  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@8890f1c +2023-10-27 13:51:56.349  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@506a6d77 +2023-10-27 13:51:56.376 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:51:56.706  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:51:56.708  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:51:56.961 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43bddf4c-aa92-4123-886c-5c988690ecf6 +2023-10-27 13:51:56.962  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43bddf4c-aa92-4123-886c-5c988690ecf6 found in urn:graph:0025b33f-5860-475c-b315-98d75dc69c18 at http://localhost:8080/sparql +2023-10-27 13:51:56.972 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries are on the continent of South America ? +2023-10-27 13:51:56.973 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question How many countries are on the continent of South America ? +2023-10-27 13:51:56.976 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+are+on+the+continent+of+South+America+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:51:56.977 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+are+on+the+continent+of+South+America+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:51:56.977 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:51:57.075  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1903797592 +2023-10-27 13:51:57.339 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@70e9d57d +2023-10-27 13:51:57.339 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:51:57.340 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:51:57.340  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+are+on+the+continent+of+South+America+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:51:57.340 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":9,"end":18,"spot":"countries","confidence":0.7148,"id":21754,"title":"Nation","uri":"http://en.wikipedia.org/wiki/Nation","abstract":"A nation is a large type of social organization where a collective identity has emerged from a combination of shared features across a given population, such as language, history, ethnicity, culture, territory and/or society. Some nations are constructed around ethnicity (see ethnic nationalism) while others are bound by political constitutions (see civic nationalism and multiculturalism).","label":"Nation","categories":["Ethnicity","Nation","Pages using page needed template with unknown parameters","Political geography","Political science terminology","Types of communities"],"types":[]},{"start":30,"end":39,"spot":"continent","confidence":0.7702,"id":19630739,"title":"Continent","uri":"http://en.wikipedia.org/wiki/Continent","abstract":"A continent is any of several large geographical regions. Continents are generally identified by convention rather than any strict criteria. A continent could be a single landmass or a part of a very large landmass, as in the case of Asia or Europe. Due to this, the number of continents varies; up to seven or as few as four geographical regions are commonly regarded as continents. Most English-speaking countries recognize seven regions as continents. In order from largest to smallest in area, these seven regions are Asia, Africa, North America, South America, Antarctica, Europe, and Australia. Different variations with fewer continents merge some of these regions; examples of this are merging North America and South America into America, Asia and Europe into Eurasia, and Africa, Asia, and Europe into Afro-Eurasia.","label":"Continent","categories":["Continents"],"types":[]},{"start":43,"end":56,"spot":"South America","confidence":0.817,"id":26769,"title":"South America","uri":"http://en.wikipedia.org/wiki/South_America","abstract":"South America is a continent entirely in the Western Hemisphere and mostly in the Southern Hemisphere, with a relatively small portion in the Northern Hemisphere at the northern tip of the continent. It can also be described as the southern subregion of a single continent called America.","label":"South America","categories":["Continents","South America"],"types":["http://dbpedia.org/ontology/Continent","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:51:57.318"} +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 18 +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Nation +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 30 +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 39 +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Continent +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 43 +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 56 +2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/South_America +2023-10-27 13:51:57.350 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43bddf4c-aa92-4123-886c-5c988690ecf6 +2023-10-27 13:51:57.350  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55dfa4c9 +2023-10-27 13:51:57.350 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:51:57.364  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nation" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.364  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nation" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.365 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nation" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.376  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50bc3239 +2023-10-27 13:51:57.377 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:51:57.380  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Continent" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.381  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Continent" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.381 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Continent" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.390  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5081279b +2023-10-27 13:51:57.391 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:51:57.393  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "43"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/South_America" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.394  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "43"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/South_America" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.394 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "43"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/South_America" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:57.403 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 1415 ms +2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"} +2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"} +2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"},"inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"} +2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6328fe70 +2023-10-27 13:51:58.661  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@671766cd +2023-10-27 13:51:58.675 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:51:58.677  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:51:58.679  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:51:58.722 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d8576d33-c3ea-4658-bee6-96c95b479221 +2023-10-27 13:51:58.722  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d8576d33-c3ea-4658-bee6-96c95b479221 found in urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8 at http://localhost:8080/sparql +2023-10-27 13:51:58.725 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation For what literature prize was Simone de Beauvoir nominated? +2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Question For what literature prize was Simone de Beauvoir nominated? +2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=For+what+literature+prize+was+Simone+de+Beauvoir+nominated%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=For+what+literature+prize+was+Simone+de+Beauvoir+nominated%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:51:58.726  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1388700230 +2023-10-27 13:51:58.782 DEBUG 28726 --- [nio-8088-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2215f44b +2023-10-27 13:51:58.782 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:51:58.782 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:51:58.783  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=For+what+literature+prize+was+Simone+de+Beauvoir+nominated%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:51:58.783 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":9,"end":25,"spot":"literature prize","confidence":0.71,"id":23385442,"title":"Nobel Prize in Literature","uri":"http://en.wikipedia.org/wiki/Nobel_Prize_in_Literature","abstract":"The Nobel Prize in Literature (here meaning for literature) is a Swedish literature prize that is awarded annually, since 1901, to an author from any country who has, in the words of the will of Swedish industrialist Alfred Nobel, \"in the field of literature, produced the most outstanding work in an idealistic direction\" (original). Though individual works are sometimes cited as being particularly noteworthy, the award is based on an author's body of work as a whole. The Swedish Academy decides who, if anyone, will receive the prize. The academy announces the name of the laureate in early October. It is one of the five Nobel Prizes established by the will of Alfred Nobel in 1895. Literature is traditionally the final award presented at the Nobel Prize ceremony. On some occasions the award has been postponed to the following year, most recently in 2018 as of July 2023.","label":"Nobel Prize in Literature","categories":["International literary awards","Literary awards honoring writers","Nobel Prize","Nobel Prize in Literature","Swedish Academy"],"types":["http://dbpedia.org/ontology/Award"]},{"start":30,"end":48,"spot":"Simone de Beauvoir","confidence":0.9034,"id":62034,"title":"Simone de Beauvoir","uri":"http://en.wikipedia.org/wiki/Simone_de_Beauvoir","abstract":"Simone Lucie Ernestine Marie Bertrand de Beauvoir (9 January 1908 – 14 April 1986) was a French existentialist philosopher, writer, social theorist, and feminist activist. Though she did not consider herself a philosopher, nor was she considered one at the time of her death, she had a significant influence on both feminist existentialism and feminist theory.","label":"Simone de Beauvoir","categories":["1908 births","1986 deaths","20th-century French memoirists","20th-century French non-fiction writers","20th-century French novelists","20th-century French philosophers","20th-century French women writers","20th-century LGBT people","Atheist feminists","Atheist philosophers","Bisexual feminists","Bisexual women","Bisexual writers","Burials at Montparnasse Cemetery","Communist women writers","Continental philosophers","Critical theorists","Cultural critics","Deaths from pneumonia in France","Epistemologists","Existentialists","Feminist philosophers","Feminist studies scholars","Feminist theorists","Former Roman Catholics","French LGBT novelists","French Marxist writers","French Marxists","French abortion-rights activists","French anti-war activists","French atheists","French communists","French ethicists","French feminist writers","French literary critics","French magazine founders","French political philosophers","French social commentators","French socialist feminists","French socialists","French women critics","French women memoirists","French women non-fiction writers","French women novelists","French women philosophers","Jerusalem Prize recipients","LGBT memoirists","LGBT philosophers","Légion d'honneur refusals","Marxist feminists","Materialist feminists","Metaphysicians","Moral philosophers","Ontologists","Phenomenologists","Philosophers of art","Philosophers of culture","Philosophers of education","Philosophers of ethics and morality","Philosophers of literature","Philosophers of nihilism","Philosophers of sexuality","Political philosophers","Prix Goncourt winners","Signatories of the 1971 Manifesto of the 343","Simone de Beauvoir","Social critics","Social philosophers","University of Paris alumni","Women literary critics","Writers from Paris"],"types":["http://dbpedia.org/ontology/Philosopher","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:51:58.756"} +2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 +2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 +2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Nobel_Prize_in_Literature +2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 30 +2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 48 +2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Simone_de_Beauvoir +2023-10-27 13:51:58.805 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d8576d33-c3ea-4658-bee6-96c95b479221 +2023-10-27 13:51:58.805  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37828751 +2023-10-27 13:51:58.805 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:51:58.812  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nobel_Prize_in_Literature" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:58.813  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nobel_Prize_in_Literature" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:58.813 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nobel_Prize_in_Literature" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:58.833  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13fd34af +2023-10-27 13:51:58.834 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:51:58.836  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Simone_de_Beauvoir" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:58.837  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Simone_de_Beauvoir" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:58.837 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Simone_de_Beauvoir" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:58.848 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : processing took: 201 ms +2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"} +2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"} +2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"},"inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"} +2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4c57c324 +2023-10-27 13:52:06.490  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@429034de +2023-10-27 13:52:06.490 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:06.492  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:06.493  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:06.502 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b1a79c7a-4106-461b-b919-cd5de1aec6c6 +2023-10-27 13:52:06.502  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b1a79c7a-4106-461b-b919-cd5de1aec6c6 found in urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42 at http://localhost:8080/sparql +2023-10-27 13:52:06.504 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:52:06.505  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=987631136 +2023-10-27 13:52:06.643 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3ad3ee5 +2023-10-27 13:52:06.643 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:06.644 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:52:06.644  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":9,"end":15,"spot":"Oscars","confidence":0.7615,"id":324,"title":"Academy Awards","uri":"http://en.wikipedia.org/wiki/Academy_Awards","abstract":"The Academy Awards, mainly known as the Oscars, are awards for artistic and technical merit for the film industry. They are presented annually by the Academy of Motion Picture Arts and Sciences (AMPAS), in recognition of excellence in cinematic achievements as assessed by the Academy's voting membership. The Academy Awards are regarded by many as the most prestigious, significant awards in the entertainment industry in the United States and worldwide. The Oscar statuette depicts a knight rendered in the Art Deco style.","label":"Academy Award","categories":["1929 establishments in California","Academy Awards","American annual television specials","American film awards","American live television shows","Annual events in Los Angeles County, California","Awards established in 1929","Cinema of Southern California","Culture of Hollywood, Los Angeles","Events in Los Angeles","Performing arts trophies"],"types":["http://dbpedia.org/ontology/Award"]},{"start":47,"end":61,"spot":"Hayao Miyazaki","confidence":0.907,"id":20312,"title":"Hayao Miyazaki","uri":"http://en.wikipedia.org/wiki/Hayao_Miyazaki","abstract":"is a Japanese animator, filmmaker, and manga artist. A co-founder of Studio Ghibli, he has attained international acclaim as a masterful storyteller and creator of Japanese animated feature films, and is widely regarded as one of the most accomplished filmmakers in the history of animation.","label":"Hayao Miyazaki","categories":["1941 births","Academy Honorary Award recipients","Anime character designers","Anime directors","Annie Award winners","Anti–nuclear power activists","Directors of Best Animated Feature Academy Award winners","Directors of Golden Bear winners","Ecofeminists","Environmental writers","Fantasy artists","Fantasy film directors","Feminist artists","Feminist writers","Gakushuin University alumni","Hayao Miyazaki","Inkpot Award winners","Japanese Shintoists","Japanese animated film directors","Japanese animated film producers","Japanese animators","Japanese cartoonists","Japanese environmentalists","Japanese feminists","Japanese pacifists","Japanese production designers","Japanese screenwriters","Japanese speculative fiction artists","Japanese storyboard artists","Living people","Male feminists","Manga artists","Nebula Award winners","People from Bunkyō","Persons of Cultural Merit","Science Fiction Hall of Fame inductees","Studio Ghibli people","Topcraft","World Masterpiece Theater series"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:06.618"} +2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 +2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 15 +2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Academy_Awards +2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 47 +2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 61 +2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Hayao_Miyazaki +2023-10-27 13:52:06.655 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b1a79c7a-4106-461b-b919-cd5de1aec6c6 +2023-10-27 13:52:06.656  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71118357 +2023-10-27 13:52:06.656 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:06.660  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Academy_Awards" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:06.661  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Academy_Awards" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:06.661 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Academy_Awards" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:06.670  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32647f6f +2023-10-27 13:52:06.670 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:06.673  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "62"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hayao_Miyazaki" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:06.674  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "62"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hayao_Miyazaki" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:06.674 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "62"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hayao_Miyazaki" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:06.684 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 238 ms +2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"} +2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"} +2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"},"inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"} +2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@70e9f86a +2023-10-27 13:52:15.018  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7e2e0807 +2023-10-27 13:52:15.018 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:15.020  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:15.021  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:15.030 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7562e139-8be2-4eca-a51f-e082c9c4ce91 +2023-10-27 13:52:15.030  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7562e139-8be2-4eca-a51f-e082c9c4ce91 found in urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929 at http://localhost:8080/sparql +2023-10-27 13:52:15.032 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was Funny Games and its remake directed by different persons? +2023-10-27 13:52:15.032 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question Was Funny Games and its remake directed by different persons? +2023-10-27 13:52:15.033 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Was+Funny+Games+and+its+remake+directed+by+different+persons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:15.033 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Was+Funny+Games+and+its+remake+directed+by+different+persons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:15.033 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:52:15.033  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=59805812 +2023-10-27 13:52:15.172 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3f13023c +2023-10-27 13:52:15.172 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:15.172 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:52:15.173  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Was+Funny+Games+and+its+remake+directed+by+different+persons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:15.173 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":4,"end":15,"spot":"Funny Games","confidence":0.8609,"id":3870912,"title":"Funny Games (1997 film)","uri":"http://en.wikipedia.org/wiki/Funny_Games_%281997_film%29","abstract":"Funny Games is a 1997 Austrian psychological horror film written and directed by Michael Haneke, and starring Susanne Lothar, Ulrich Mühe, and Arno Frisch. The plot involves two young men who hold a family hostage and torture them with sadistic games in their vacation home. The film was entered into the 1997 Cannes Film Festival. A shot-for-shot remake, filmed and set in the United States, was released in 2007, also directed by Haneke, this time with an English-speaking cast and a mostly American crew.","label":"Funny Games","categories":["1990s French-language films","1990s German-language films","1990s psychological thriller films","1990s serial killer films","1990s thriller drama films","1997 crime thriller films","1997 drama films","1997 films","1997 independent films","1997 multilingual films","Austrian drama films","Austrian independent films","Austrian multilingual films","Films directed by Michael Haneke","Films set in Austria","Films set in country houses","Home invasions in film","Self-reflexive films","Torture in films"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:15.151"} +2023-10-27 13:52:15.174 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 4 +2023-10-27 13:52:15.174 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 15 +2023-10-27 13:52:15.174 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Funny_Games_%281997_film%29 +2023-10-27 13:52:15.182 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7562e139-8be2-4eca-a51f-e082c9c4ce91 +2023-10-27 13:52:15.182  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6971c +2023-10-27 13:52:15.182 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:15.185  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Funny_Games_%281997_film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:15.186  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Funny_Games_%281997_film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:15.186 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Funny_Games_%281997_film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:15.196 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 186 ms +2023-10-27 13:52:22.203  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"} +2023-10-27 13:52:22.203  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"} +2023-10-27 13:52:22.204  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"},"inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"} +2023-10-27 13:52:22.204  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5283ae27 +2023-10-27 13:52:22.216  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c444a07 +2023-10-27 13:52:22.216 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:22.217  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:22.218  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:22.229 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9c339a0f-8630-4f2e-858c-0f6e60ccdd72 +2023-10-27 13:52:22.229  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9c339a0f-8630-4f2e-858c-0f6e60ccdd72 found in urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b at http://localhost:8080/sparql +2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was K-pop star Lisa Manoban born? +2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Question Where was K-pop star Lisa Manoban born? +2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+K-pop+star+Lisa+Manoban+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+K-pop+star+Lisa+Manoban+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:52:22.231  INFO 28726 --- [io-8088-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=883534214 +2023-10-27 13:52:22.360 DEBUG 28726 --- [io-8088-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1d79403c +2023-10-27 13:52:22.360 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:52:22.361  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+K-pop+star+Lisa+Manoban+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":0,"annotations":[{"start":10,"end":20,"spot":"K-pop star","confidence":0.7598,"id":34346577,"title":"K-pop Star","uri":"http://en.wikipedia.org/wiki/K-pop_Star","abstract":"Survival Audition K-pop Star is a South Korean reality TV competition series where three entertainment/talent agencies in South Korea hold worldwide auditions to find the next potential K-Pop stars. Preliminary auditions are held around the world in Asia, North America, South America, Europe, and Australia. The final winner debuts with the company of his or her choice, along with a cash prize of three hundred million won (approx. 300,000 U.S. dollars), two brand new vehicles, opportunities to become commercial models and casting in dramas, and many more benefits.","label":"K-pop Star","categories":["2011 South Korean television series debuts","2017 South Korean television series endings","K-pop Star","Korean-language television shows","Music competitions in South Korea","Singing talent shows","South Korean reality television series","Talent shows","Television series by Chorokbaem Media"],"types":["http://dbpedia.org/ontology/TelevisionShow","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":0.5949,"timestamp":"2023-10-27T11:52:22.340"} +2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 10 +2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 20 +2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/K-pop_Star +2023-10-27 13:52:22.369 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9c339a0f-8630-4f2e-858c-0f6e60ccdd72 +2023-10-27 13:52:22.369  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52442722 +2023-10-27 13:52:22.369 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:22.371  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/K-pop_Star" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:22.371  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/K-pop_Star" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:22.371 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/K-pop_Star" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:22.380 DEBUG 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : processing took: 177 ms +2023-10-27 13:52:25.541  INFO 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"} +2023-10-27 13:52:25.542  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"} +2023-10-27 13:52:25.542  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"},"inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"} +2023-10-27 13:52:25.542  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@63a0a07c +2023-10-27 13:52:25.549  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76de75a7 +2023-10-27 13:52:25.549 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:25.550  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:25.550  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:25.557 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_04d8a21e-f3a7-4db1-93ab-47d03ee149d1 +2023-10-27 13:52:25.558  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_04d8a21e-f3a7-4db1-93ab-47d03ee149d1 found in urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb at http://localhost:8080/sparql +2023-10-27 13:52:25.560 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Joe Cocker play at the Woodstock festival? +2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Question Did Joe Cocker play at the Woodstock festival? +2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Joe+Cocker+play+at+the+Woodstock+festival%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Joe+Cocker+play+at+the+Woodstock+festival%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:52:25.561  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-567531903 +2023-10-27 13:52:25.610 DEBUG 28726 --- [nio-8088-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@26edb921 +2023-10-27 13:52:25.610 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:25.610 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:52:25.611  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Joe+Cocker+play+at+the+Woodstock+festival%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":4,"end":14,"spot":"Joe Cocker","confidence":0.9391,"id":88371,"title":"Joe Cocker","uri":"http://en.wikipedia.org/wiki/Joe_Cocker","abstract":"John Robert \"Joe\" Cocker (20 May 1944 – 22 December 2014) was an English singer known for his gritty, bluesy voice and dynamic stage performances that featured expressive body movements. Most of his best known singles, such as.","label":"Joe Cocker","categories":["1944 births","2014 deaths","20th-century English singers","21st-century English singers","A&M Records artists","Capitol Records artists","DJM Records artists","Deaths from cancer in Colorado","Deaths from lung cancer","English baritones","English expatriates in the United States","English pop singers","English rock singers","English soul singers","Gasfitters","Grammy Award winners","Island Records artists","Joe Cocker","Musicians from Sheffield","Officers of the Order of the British Empire","People deported from Australia","Rocket Records artists","The Grease Band members"],"types":["http://dbpedia.org/ontology/MusicalArtist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Artist","http://dbpedia.org/ontology/Animal"]},{"start":15,"end":19,"spot":"play","confidence":0.6715,"id":52086,"title":"Word play","uri":"http://en.wikipedia.org/wiki/Word_play","abstract":"Word play or wordplay (also: play-on-words) is a literary technique and a form of wit in which words used become the main subject of the work, primarily for the purpose of intended effect or amusement. Examples of word play include puns, phonetic mix-ups such as spoonerisms, obscure words and meanings, clever rhetorical excursions, oddly formed sentences, double entendres, and telling character names (such as in the play The Importance of Being Earnest, Ernest being a given name that sounds exactly like the adjective earnest).","label":"Word play","categories":["Comedy genres","Rhetoric","Word games","Word play"],"types":[]},{"start":27,"end":45,"spot":"Woodstock festival","confidence":0.9108,"id":33884,"title":"Woodstock","uri":"http://en.wikipedia.org/wiki/Woodstock","abstract":"Woodstock Music and Art Fair, commonly referred to as Woodstock, was a music festival held during August 15–18, 1969, on Max Yasgur's dairy farm in Bethel, New York, United States, southwest of the town of Woodstock. Billed as \"an Aquarian Exposition: 3 Days of Peace & Music\" and alternatively referred to as the Woodstock Rock Festival, it attracted more than 400,000 attendees. Thirty-two acts performed outdoors despite sporadic rain. It was one of the largest music festivals in history.","label":"Woodstock","categories":["1969 festivals","1969 in American music","1969 in New York (state)","1969 in music","1969 music festivals","August 1969 events in the United States","Catskills","Commemorative stamps","Concerts in the United States","Counterculture festivals","Counterculture of the 1960s","Free festivals","Hippie movement","Jam band festivals","Mass media franchises","Music festivals established in 1969","National Register of Historic Places in Sullivan County, New York","Riots and civil disorder in New York (state)","Rock festivals in the United States","Timeline of 1960s counterculture","Tourist attractions in Sullivan County, New York","Woodstock Festival"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:25.591"} +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 4 +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 14 +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Joe_Cocker +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 15 +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 19 +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Word_play +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 27 +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 45 +2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Woodstock +2023-10-27 13:52:25.617 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_04d8a21e-f3a7-4db1-93ab-47d03ee149d1 +2023-10-27 13:52:25.618  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2132d272 +2023-10-27 13:52:25.618 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:25.620  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Joe_Cocker" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.621  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Joe_Cocker" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.621 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Joe_Cocker" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.631  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@47f73568 +2023-10-27 13:52:25.631 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:25.633  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "15"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Word_play" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.633  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "15"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Word_play" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.633 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "15"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Word_play" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.639  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4281037c +2023-10-27 13:52:25.641 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:25.644  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Woodstock" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.644  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Woodstock" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.644 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Woodstock" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:25.650 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : processing took: 108 ms +2023-10-27 13:52:29.513  INFO 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"} +2023-10-27 13:52:29.514  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"} +2023-10-27 13:52:29.514  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"},"inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"} +2023-10-27 13:52:29.514  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@694c14e2 +2023-10-27 13:52:29.527  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@784880a8 +2023-10-27 13:52:29.528 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:29.529  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:29.529  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:29.537 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a50f0b8-7640-4f89-ad2b-61d6b80426e2 +2023-10-27 13:52:29.537  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a50f0b8-7640-4f89-ad2b-61d6b80426e2 found in urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb at http://localhost:8080/sparql +2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When did Allen Ginsberg die? +2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Question When did Allen Ginsberg die? +2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=When+did+Allen+Ginsberg+die%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=When+did+Allen+Ginsberg+die%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:52:29.539  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1710231881 +2023-10-27 13:52:29.587 DEBUG 28726 --- [nio-8088-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@58efdeae +2023-10-27 13:52:29.587 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:29.587 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:52:29.587  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=When+did+Allen+Ginsberg+die%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":9,"end":23,"spot":"Allen Ginsberg","confidence":0.8609,"id":37352,"title":"Allen Ginsberg","uri":"http://de.wikipedia.org/wiki/Allen_Ginsberg","abstract":"Irwin Allen Ginsberg (* 3. Juni 1926 in Paterson, New Jersey; † 5. April 1997 in New York) war ein US-amerikanischer Dichter der Beat Generation. Er gilt als Vater der Flower-Power-Bewegung.","label":"Allen Ginsberg","categories":["Autor","Beat Generation","Geboren 1926","Gestorben 1997","Homosexualität in der Literatur","LGBT-Aktivist (Vereinigte Staaten)","Literatur (20. Jahrhundert)","Literatur (Englisch)","Literatur (Vereinigte Staaten)","Lyrik","Mann","Mitglied der American Academy of Arts and Letters","Mitglied der American Academy of Arts and Sciences","Person (Hippiebewegung)","Person (New York)","Person des Anarchismus","Person des Vajrayana-Buddhismus","Person des tibetischen Buddhismus","Träger des National Book Award","US-Amerikaner"],"types":["http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work"]}],"lang":"de","langConfidence":0.6424,"timestamp":"2023-10-27T11:52:29.569"} +2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 +2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 +2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Allen_Ginsberg +2023-10-27 13:52:29.595 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a50f0b8-7640-4f89-ad2b-61d6b80426e2 +2023-10-27 13:52:29.595  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1144b +2023-10-27 13:52:29.595 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:29.597  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Allen_Ginsberg" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:29.597  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Allen_Ginsberg" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:29.597 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Allen_Ginsberg" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:29.604 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : processing took: 90 ms +2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"} +2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"} +2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"},"inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"} +2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7bd7ad0e +2023-10-27 13:52:33.608  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@280684a8 +2023-10-27 13:52:33.609 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:33.610  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:33.610  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:33.616 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d04df65b-f42b-4906-8917-4bec7b66b02b +2023-10-27 13:52:33.617  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d04df65b-f42b-4906-8917-4bec7b66b02b found in urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43 at http://localhost:8080/sparql +2023-10-27 13:52:33.618 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What brand uses petroleum jelly? +2023-10-27 13:52:33.618 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question What brand uses petroleum jelly? +2023-10-27 13:52:33.619 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+brand+uses+petroleum+jelly%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:33.619 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+brand+uses+petroleum+jelly%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:33.619 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:52:33.619  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1866798781 +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4237b4cc +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:52:33.699  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+brand+uses+petroleum+jelly%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":5,"end":10,"spot":"brand","confidence":0.7055,"id":18950900,"title":"Brand","uri":"http://en.wikipedia.org/wiki/Brand","abstract":"A brand is a name, term, design, symbol or any other feature that distinguishes one seller's good or service from those of other sellers. Brands are used in business, marketing, and advertising for recognition and, importantly, to create and store value as brand equity for the object identified, to the benefit of the brand's customers, its owners and shareholders. Brand names are sometimes distinguished from generic or store brands.","label":"Brand","categories":["Brand management","Branding terminology","Brands","Communication design","Graphic design","Intangible assets","Product management"],"types":[]},{"start":16,"end":31,"spot":"petroleum jelly","confidence":0.8928,"id":271860,"title":"Petroleum jelly","uri":"http://en.wikipedia.org/wiki/Petroleum_jelly","abstract":"Petroleum jelly, petrolatum, white petrolatum, soft paraffin, or multi-hydrocarbon, CAS number 8009-03-8, is a semi-solid mixture of hydrocarbons (with carbon numbers mainly higher than 25), originally promoted as a topical ointment for its healing properties. Vaseline has been a well-known American brand of petroleum jelly since 1870.","label":"Petroleum jelly","categories":["American inventions","Amorphous solids","Cosmetics chemicals","Dosage forms","Personal lubricants","Petroleum products"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:33.665"} +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 5 +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 10 +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Brand +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 16 +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 31 +2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Petroleum_jelly +2023-10-27 13:52:33.705 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d04df65b-f42b-4906-8917-4bec7b66b02b +2023-10-27 13:52:33.705  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fe05d2d +2023-10-27 13:52:33.705 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:33.707  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Brand" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:33.707  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Brand" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:33.707 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Brand" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:33.714  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39992002 +2023-10-27 13:52:33.715 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:33.716  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Petroleum_jelly" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:33.716  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Petroleum_jelly" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:33.716 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Petroleum_jelly" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:33.722 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 121 ms +2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@ee6d92b +2023-10-27 13:53:35.702  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@781912ae +2023-10-27 13:53:35.702 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:35.703  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:35.703  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:35.714 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:35.714  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql +2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? +2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question Which universities have more than 200000 students? +2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:53:35.717 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:53:35.717  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-962009526 +2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@631d789b +2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:53:36.047  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":0,"annotations":[{"start":6,"end":18,"spot":"universities","confidence":0.7669,"id":19725260,"title":"University","uri":"http://en.wikipedia.org/wiki/University","abstract":"A university is an institution of higher (or tertiary) education and research which awards academic degrees in several academic disciplines. Universities typically offer both undergraduate and postgraduate programs. In the United States, the designation is reserved for colleges that have a graduate school.","label":"University","categories":["Educational stages","Higher education","Types of university or college","Universities and colleges"],"types":[]},{"start":41,"end":49,"spot":"students","confidence":0.7604,"id":155526,"title":"Student","uri":"http://en.wikipedia.org/wiki/Student","abstract":"A student is a person enrolled in a school or other educational institution. In the United Kingdom and most commonwealth countries, a \"student\" attends a secondary school or higher (e.g., college or university); those in primary or elementary schools are \"pupils\".","label":"Student","categories":["Students"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:53:36.027"} +2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 6 +2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 18 +2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/University +2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 41 +2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 49 +2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Student +2023-10-27 13:53:36.053 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:36.053  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b72c6ee +2023-10-27 13:53:36.053 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:53:36.055  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/University" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:36.055  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/University" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:36.055 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/University" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:36.063  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e1d3b8 +2023-10-27 13:53:36.063 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:53:36.065  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Student" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:36.065  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Student" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:36.065 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Student" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:36.071 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 376 ms +2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@96e9ebc +2023-10-27 13:54:10.888  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e786ca1 +2023-10-27 13:54:10.889 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:10.889  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:10.890  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:10.898 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 +2023-10-27 13:54:10.898  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql +2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? +2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Question Did Kobe Bryant leave the Lakers when LeBron James joined that team? +2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Kobe+Bryant+leave+the+Lakers+when+LeBron+James+joined+that+team%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Kobe+Bryant+leave+the+Lakers+when+LeBron+James+joined+that+team%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:54:10.900  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=321342393 +2023-10-27 13:54:11.035 DEBUG 28726 --- [nio-8088-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@776cd774 +2023-10-27 13:54:11.036 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:11.036 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:54:11.036  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Kobe+Bryant+leave+the+Lakers+when+LeBron+James+joined+that+team%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:54:11.037 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":4,"end":15,"spot":"Kobe Bryant","confidence":0.9576,"id":246185,"title":"Kobe Bryant","uri":"http://en.wikipedia.org/wiki/Kobe_Bryant","abstract":"Kobe Bean Bryant (August 23, 1978 – January 26, 2020) was an American professional basketball player. A shooting guard, he spent his entire 20-year career with the Los Angeles Lakers in the National Basketball Association (NBA). Widely regarded as one of the greatest basketball players of all time, Bryant won five NBA championships, was an 18-time All-Star, a 15-time member of the All-NBA Team, a 12-time member of the All-Defensive Team, the 2008 NBA Most Valuable Player (MVP), and a two-time NBA Finals MVP. Bryant also led the NBA in scoring twice, and ranks fourth in league all-time regular season and postseason scoring. He was posthumously voted into the Naismith Memorial Basketball Hall of Fame in 2020 and named to the NBA 75th Anniversary Team in 2021.","label":"Kobe Bryant","categories":["1978 births","2020 deaths","Accidental deaths in California","African-American Catholics","African-American basketball players","American expatriate basketball people in Italy","American men's basketball players","American men podcasters","American philanthropists","American podcasters","Basketball players at the 2008 Summer Olympics","Basketball players at the 2012 Summer Olympics","Basketball players from Los Angeles","Basketball players from Philadelphia","Burials at Pacific View Memorial Park","Catholics from California","Catholics from Pennsylvania","Charlotte Hornets draft picks","Deaths from fire in the United States","Kobe Bryant","Los Angeles Lakers players","Lower Merion High School alumni","McDonald's High School All-Americans","Medalists at the 2008 Summer Olympics","Medalists at the 2012 Summer Olympics","Naismith Memorial Basketball Hall of Fame inductees","National Basketball Association All-Stars","National Basketball Association high school draftees","National Basketball Association players with retired numbers","Olympic gold medalists for the United States in basketball","Parade High School All-Americans (boys' basketball)","Philanthropists from California","Philanthropists from Pennsylvania","Producers who won the Best Animated Short Academy Award","Shooting guards","Sportspeople from Newport Beach, California","United States men's national basketball team players","Victims of aviation accidents or incidents in 2020","Victims of helicopter accidents or incidents in the United States"],"types":[]},{"start":26,"end":32,"spot":"Lakers","confidence":0.7934,"id":72893,"title":"Los Angeles Lakers","uri":"http://en.wikipedia.org/wiki/Los_Angeles_Lakers","abstract":"The Los Angeles Lakers are an American professional basketball team based in Los Angeles. The Lakers compete in the National Basketball Association (NBA) as a member of the league's Western Conference Pacific Division. The Lakers play their home games at Crypto.com Arena, an arena shared with the NBA's Los Angeles Clippers, the Los Angeles Sparks of the Women's National Basketball Association, and the Los Angeles Kings of the National Hockey League. The Lakers are one of the most successful teams in the history of the NBA, and have won 17 NBA championships, tied with the Boston Celtics for the most in NBA history.","label":"Los Angeles Lakers","categories":["1947 establishments in Minnesota","1960 establishments in California","Basketball teams established in 1947","Basketball teams in Los Angeles","Los Angeles Lakers","National Basketball Association teams","Relocated National Basketball Association teams"],"types":["http://dbpedia.org/ontology/BasketballTeam","http://dbpedia.org/ontology/SportsTeam","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]},{"start":38,"end":50,"spot":"LeBron James","confidence":0.9553,"id":240940,"title":"LeBron James","uri":"http://en.wikipedia.org/wiki/LeBron_James","abstract":"LeBron Raymone James Sr. (born December 30, 1984), also known as Bron for short, is an American professional basketball player for the Los Angeles Lakers of the National Basketball Association (NBA). Nicknamed \"King James\", he is widely regarded as one of the greatest players in the history of the sport and is often compared to Michael Jordan in debates over the greatest basketball player of all time. James is the all-time leading scorer in NBA history and ranks fourth in career assists. He has won four NBA championships (two with the Miami Heat, one each with the Lakers and Cleveland Cavaliers), and has competed in 10 NBA Finals, including eight consecutive Finals appearances from 2011 to 2018. He has also won four Most Valuable Player (MVP) Awards, four Finals MVP Awards, and two Olympic gold medals, and has been named an All-Star 19 times, selected to the All-NBA Team 19 times (including 13 First Team selections) and the All-Defensive Team six times, and was a runner-up for the NBA Defensive Player of the Year Award twice in his career.","label":"LeBron James","categories":["1984 births","2006 FIBA World Championship players","21st-century American male actors","African-American basketball players","African-American billionaires","African-American businesspeople","African-American film producers","African-American investors","African-American male actors","African-American television producers","Amateur Athletic Union men's basketball players","American film producers","American investors","American male film actors","American male television actors","American male voice actors","American men's basketball players","American philanthropists","American soccer chairmen and investors","Basketball players at the 2004 Summer Olympics","Basketball players at the 2008 Summer Olympics","Basketball players at the 2012 Summer Olympics","Basketball players from Akron, Ohio","Basketball players from Los Angeles","Businesspeople from Akron, Ohio","Businesspeople from Los Angeles","California Democrats","Cleveland Cavaliers draft picks","Cleveland Cavaliers players","Fenway Sports Group people","Film producers from California","Film producers from Ohio","Illeists","LeBron James","Liverpool F.C. chairmen and investors","Living people","Los Angeles Lakers players","Male actors from Akron, Ohio","Male actors from California","Male actors from Los Angeles","McDonald's High School All-Americans","Medalists at the 2004 Summer Olympics","Medalists at the 2008 Summer Olympics","Medalists at the 2012 Summer Olympics","Miami Heat players","National Basketball Association All-Stars","National Basketball Association high school draftees","Olympic bronze medalists for the United States in basketball","Olympic gold medalists for the United States in basketball","Parade High School All-Americans (boys' basketball)","People from Brentwood, Los Angeles","Power forwards (basketball)","Small forwards","St. Vincent–St. Mary High School alumni","Television producers from Ohio","United States men's national basketball team players"],"types":["http://dbpedia.org/ontology/BasketballPlayer","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Athlete","http://dbpedia.org/ontology/Animal"]},{"start":63,"end":67,"spot":"team","confidence":0.6687,"id":988407,"title":"Team sport","uri":"http://en.wikipedia.org/wiki/Team_sport","abstract":"A team sport includes any sport where individuals are organized into opposing teams which compete to win or cooperate to entertain their audience. Team members act together towards a shared objective. This can be done in a number of ways such as outscoring the opposing team. Team members set goals, make decisions, communicate, manage conflict, and solve problems in a supportive, trusting atmosphere in order to accomplish their objectives. Examples are basketball, volleyball, rugby, water polo, handball, lacrosse, cricket, baseball, and the various forms of football, and hockey. Team sports require internal coordination between members of the team in order to achieve success.","label":"Team sport","categories":["Sports terminology","Team activities","Team sports"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:54:11.015"} +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 4 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 15 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Kobe_Bryant +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 32 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Los_Angeles_Lakers +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 38 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 50 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/LeBron_James +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 63 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 67 +2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Team_sport +2023-10-27 13:54:11.046 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 +2023-10-27 13:54:11.046  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a8ca05c +2023-10-27 13:54:11.046 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:11.048  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.048  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.048 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.054  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1857a2a4 +2023-10-27 13:54:11.054 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:11.056  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Los_Angeles_Lakers" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.056  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Los_Angeles_Lakers" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.056 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Los_Angeles_Lakers" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.064  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43993fc2 +2023-10-27 13:54:11.064 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:11.065  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/LeBron_James" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.066  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/LeBron_James" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.066 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/LeBron_James" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.072  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@525f97b2 +2023-10-27 13:54:11.072 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:11.074  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "63"^^xsd:nonNegativeInteger . + _:b1 oa:end "68"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Team_sport" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.074  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "63"^^xsd:nonNegativeInteger . + _:b1 oa:end "68"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Team_sport" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.074 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "63"^^xsd:nonNegativeInteger . + _:b1 oa:end "68"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Team_sport" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:11.081 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : processing took: 200 ms +2023-10-27 13:54:32.607  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:32.608  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:32.608  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:32.608  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@2526c05d +2023-10-27 13:54:32.617  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a4891e1 +2023-10-27 13:54:32.617 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:32.618  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:32.618  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:32.624 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c +2023-10-27 13:54:32.624  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql +2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:54:32.629  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1199248673 +2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@57d51b75 +2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:54:32.756  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":5,"end":16,"spot":"Bremerhaven","confidence":0.8733,"id":18933240,"title":"Bremerhaven","uri":"http://en.wikipedia.org/wiki/Bremerhaven","abstract":"Bremerhaven is a city at the seaport of the Free Hanseatic City of Bremen, a state of the Federal Republic of Germany.","label":"Bremerhaven","categories":["1827 establishments in Bremen","Bremerhaven","Enclaves and exclaves","Populated coastal places in Germany (North Sea)","Port cities and towns in Germany","Port cities and towns of the North Sea"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:54:32.736"} +2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 5 +2023-10-27 13:54:32.757 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 16 +2023-10-27 13:54:32.757 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Bremerhaven +2023-10-27 13:54:32.764 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c +2023-10-27 13:54:32.764  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44621dfa +2023-10-27 13:54:32.764 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:54:32.766  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Bremerhaven" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:32.766  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Bremerhaven" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:32.766 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Bremerhaven" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:32.772 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 164 ms +2023-10-27 13:57:36.290  INFO 28726 --- [nio-8088-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.291  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.292  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.292  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6c722b81 +2023-10-27 13:57:36.336  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@62b5d87f +2023-10-27 13:57:36.342 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:36.358  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:36.359  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:36.373 DEBUG 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:36.373  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql +2023-10-27 13:57:36.392 DEBUG 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? +2023-10-27 13:57:36.392 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : Question How many people died due to the Great Leap Forward according to the highest estimate? +2023-10-27 13:57:36.394 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:36.396 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:36.396 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:57:36.401  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1346854899 +2023-10-27 13:57:36.555 DEBUG 28726 --- [nio-8088-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2388d244 +2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:57:36.556  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":32,"end":50,"spot":"Great Leap Forward","confidence":0.8609,"id":71262,"title":"Great Leap Forward","uri":"http://en.wikipedia.org/wiki/Great_Leap_Forward","abstract":"The Great Leap Forward of the People's Republic of China (PRC) was an economic and social campaign led by the Chinese Communist Party (CCP) from 1958 to 1962. CCP Chairman Mao Zedong launched the campaign to reconstruct the country from an agrarian economy into an industrialized society through the formation of people's communes. Mao decreed that efforts to multiply grain yields and bring industry to the countryside should be increased. Local officials were fearful of Anti-Rightist Campaigns and they competed to fulfill or over-fulfill quotas which were based on Mao's exaggerated claims, collecting non-existent \"surpluses\" and leaving farmers to starve to death. Higher officials did not dare to report the economic disaster which was being caused by these policies, and national officials, blaming bad weather for the decline in food output, took little or no action. Millions of people died in China during the Great Leap, with estimates ranging from 15 to 55 million, making the Great Chinese Famine the largest or second-largest famine in human history.","label":"Great Leap Forward","categories":["1950s in China","1950s neologisms","1958 in China","1959 in China","1960 in China","1960s in China","Campaigns of the Chinese Communist Party","Cold War history of China","Crimes against humanity","Economic collapses","Economic history of the People's Republic of China","Famines in China","Great Leap Forward","Incidents of cannibalism","Industrial history of China","Man-made disasters in China","Maoist terminology","Political controversies in China","Politicides"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:36.538"} +2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 32 +2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : End: 50 +2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Great_Leap_Forward +2023-10-27 13:57:36.570 DEBUG 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:36.571  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e5bcb97 +2023-10-27 13:57:36.571 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:36.575  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Great_Leap_Forward" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.576  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Great_Leap_Forward" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.576 DEBUG 28726 --- [nio-8088-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Great_Leap_Forward" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.598 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.component.QanaryServiceController  : processing took: 307 ms +2023-10-27 13:57:59.694  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:57:59.694  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:57:59.695  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:57:59.695  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9329c7f +2023-10-27 13:57:59.710  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6382c1aa +2023-10-27 13:57:59.710 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:59.712  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:59.713  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:59.720 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 +2023-10-27 13:57:59.720  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql +2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:57:59.723  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1780760583 +2023-10-27 13:57:59.854 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@ffa7610 +2023-10-27 13:57:59.854 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:59.854 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:57:59.854  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":3,"annotations":[{"start":24,"end":35,"spot":"the witcher","confidence":0.8785,"id":33912861,"title":"The Witcher","uri":"http://en.wikipedia.org/wiki/The_Witcher","abstract":"The Witcher is a series of six fantasy novels and 15 short stories written by Polish author Andrzej Sapkowski. The series revolves around the eponymous \"witcher\", Geralt of Rivia. In Sapkowski's works, \"witchers\" are beast hunters who are given supernatural abilities at a young age to battle wild beasts and monsters. The Witcher began with a titular 1986 short story that Sapkowski entered into a competition held by Fantastyka magazine, marking his debut as an author. Due to reader demand, Sapkowski wrote 14 more stories before starting a series of novels in 1994. Known as The Witcher Saga, he wrote one book a year until the fifth and final installment in 1999. A standalone prequel novel, Season of Storms, was published in 2013.","label":"The Witcher","categories":["Book series introduced in 1986","Family saga novels","Novels adapted into comics","Novels adapted into video games","Polish fantasy","Polish novels","Polish novels adapted into films","Polish novels adapted into television shows","Polish short stories","Slavic mythology in popular culture","The Witcher"],"types":[]},{"start":69,"end":77,"spot":"Yennefer","confidence":0.7768,"id":64246707,"title":"Yennifer Toledo","uri":"http://en.wikipedia.org/wiki/Yennifer_Toledo","abstract":"Yennifer Amanda Toledo Abreu (born 1 October 2000) is a Cuban handball player for Villa Clara and the Cuban national team.","label":"Yennifer Toledo","categories":["2000 births","21st-century Cuban women","Central American and Caribbean Games bronze medalists for Cuba","Central American and Caribbean Games medalists in handball","Competitors at the 2018 Central American and Caribbean Games","Cuban female handball players","Handball players at the 2019 Pan American Games","Living people","Medalists at the 2019 Pan American Games","Pan American Games bronze medalists for Cuba","Pan American Games medalists in handball"],"types":["http://dbpedia.org/ontology/HandballPlayer","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Athlete","http://dbpedia.org/ontology/Animal"]},{"start":96,"end":101,"spot":"Triss","confidence":0.8054,"id":61317,"title":"Shannara","uri":"http://en.wikipedia.org/wiki/Shannara","abstract":"Shannara is a series of high fantasy novels written by Terry Brooks, beginning with The Sword of Shannara in 1977 and concluding with The Last Druid which was released in October 2020; there is also a prequel, First King of Shannara. The series blends magic and primitive technology and is set in the Four Lands, which are identified as Earth long after civilization was destroyed in a chemical and nuclear holocaust called the Great Wars. By the time of the prequel First King of Shannara, the world had reverted to a pre-industrial state and magic had re-emerged to supplement science.","label":"Shannara","categories":["American novels adapted into television shows","Book series introduced in 1977","High fantasy novels","Novels adapted into video games","Shannara"],"types":[]},{"start":102,"end":110,"spot":"Merigold","confidence":0.7486,"id":122224,"title":"Merigold, Mississippi","uri":"http://en.wikipedia.org/wiki/Merigold%2C_Mississippi","abstract":"Merigold (sometimes misspelled as Marigold or Merrigold) is a town in Bolivar County, Mississippi, United States. Per the 2020 census, the population was 379.","label":"Merigold","categories":["Mississippi Blues Trail","Towns in Bolivar County, Mississippi","Towns in Mississippi"],"types":["http://dbpedia.org/ontology/Town","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:59.833"} +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 24 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 35 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/The_Witcher +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 69 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 77 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Yennifer_Toledo +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 96 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 101 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Shannara +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 102 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 110 +2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Merigold%2C_Mississippi +2023-10-27 13:57:59.861 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 +2023-10-27 13:57:59.861  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1236d2f4 +2023-10-27 13:57:59.862 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:59.863  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/The_Witcher" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.864  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/The_Witcher" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.864 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/The_Witcher" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.870  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67ccde89 +2023-10-27 13:57:59.870 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:59.872  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "69"^^xsd:nonNegativeInteger . + _:b1 oa:end "78"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Yennifer_Toledo" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.872  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "69"^^xsd:nonNegativeInteger . + _:b1 oa:end "78"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Yennifer_Toledo" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.872 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "69"^^xsd:nonNegativeInteger . + _:b1 oa:end "78"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Yennifer_Toledo" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.881  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e6c168b +2023-10-27 13:57:59.881 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:59.882  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "96"^^xsd:nonNegativeInteger . + _:b1 oa:end "102"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Shannara" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.883  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "96"^^xsd:nonNegativeInteger . + _:b1 oa:end "102"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Shannara" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.883 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "96"^^xsd:nonNegativeInteger . + _:b1 oa:end "102"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Shannara" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.890  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@27ab1a0 +2023-10-27 13:57:59.890 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:59.892  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "102"^^xsd:nonNegativeInteger . + _:b1 oa:end "111"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Merigold%2C_Mississippi" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.892  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "102"^^xsd:nonNegativeInteger . + _:b1 oa:end "111"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Merigold%2C_Mississippi" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.892 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "102"^^xsd:nonNegativeInteger . + _:b1 oa:end "111"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Merigold%2C_Mississippi" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:59.900 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 206 ms +2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@2c2e5b1f +2023-10-27 13:58:43.892  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2af962b0 +2023-10-27 13:58:43.892 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:43.893  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:43.893  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:43.902 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:43.902  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql +2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Question Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:43.904 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:58:43.904  INFO 28726 --- [io-8088-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-612690955 +2023-10-27 13:58:44.087 DEBUG 28726 --- [io-8088-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3979fc7b +2023-10-27 13:58:44.087 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:58:44.088  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":24,"end":32,"spot":"Free Guy","confidence":0.9181,"id":60203476,"title":"Free Guy","uri":"http://en.wikipedia.org/wiki/Free_Guy","abstract":"Free Guy is a 2021 American action comedy film directed and produced by Shawn Levy from a screenplay by Matt Lieberman and Zak Penn, and a story by Lieberman. The film stars Ryan Reynolds, Jodie Comer, Lil Rel Howery, Utkarsh Ambudkar, Joe Keery, and Taika Waititi. It tells the story of a bank teller who discovers that he is a non-player character in a massively multiplayer online game who then partners with a player to find evidence that a gaming company's CEO stole the player's game's source code.","label":"Free Guy","categories":["2020s American films","2020s English-language films","2020s science fiction comedy films","2021 action comedy films","2021 films","2021 science fiction action films","20th Century Studios films","21 Laps Entertainment films","4DX films","American action comedy films","American science fiction action films","American science fiction comedy films","Films about video games","Films about virtual reality","Films directed by Shawn Levy","Films postponed due to the COVID-19 pandemic","Films produced by Greg Berlanti","Films produced by Ryan Reynolds","Films scored by Christophe Beck","Films set in the future","Films shot in Boston","Films shot in Massachusetts","IMAX films","Self-reflexive films","TSG Entertainment films","Works set in computers"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]},{"start":49,"end":57,"spot":"Deadpool","confidence":0.9265,"id":43867095,"title":"Deadpool (film)","uri":"http://en.wikipedia.org/wiki/Deadpool_%28film%29","abstract":"Deadpool is a 2016 American superhero film based on the Marvel Comics character of the same name. Distributed by 20th Century Fox, it is a spin-off in the X-Men film series and the eighth installment overall. Directed by Tim Miller (in his feature directorial debut) and written by Rhett Reese and Paul Wernick, it stars Ryan Reynolds in the title role alongside Morena Baccarin, Ed Skrein, T. J. Miller, Gina Carano, and Brianna Hildebrand. In the film, Wade Wilson hunts the man who gave him mutant abilities and a scarred physical appearance, becoming the antihero Deadpool.","label":"Deadpool","categories":["2010s American films","2010s English-language films","2010s superhero comedy films","2016 action comedy films","2016 black comedy films","2016 directorial debut films","2016 films","20th Century Fox films","American action comedy films","American black comedy films","American films about revenge","American superhero films","American vigilante films","Deadpool (film series)","Film spin-offs","Films directed by Tim Miller","Films produced by Lauren Shuler Donner","Films produced by Ryan Reynolds","Films produced by Simon Kinberg","Films scored by Junkie XL","Films set in Westchester County, New York","Films shot in Vancouver","Films using motion capture","Films with screenplays by Paul Wernick","Films with screenplays by Rhett Reese","Human experimentation in fiction","IMAX films","Live-action films based on Marvel Comics","Metafictional works","Self-reflexive films","Superhero black comedy films","TSG Entertainment films","X-Men (film series)"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:44.066"} +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 24 +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 32 +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Free_Guy +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 49 +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 57 +2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Deadpool_%28film%29 +2023-10-27 13:58:44.093 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:44.093  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ed919e +2023-10-27 13:58:44.093 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:44.095  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Free_Guy" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.096  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Free_Guy" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.096 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Free_Guy" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.103  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4894d42f +2023-10-27 13:58:44.103 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:44.104  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "58"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Deadpool_%28film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.105  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "58"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Deadpool_%28film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.105 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "58"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Deadpool_%28film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.111 DEBUG 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : processing took: 246 ms +2023-10-27 13:58:58.177  INFO 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.178  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.178  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.178  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@963ebad +2023-10-27 13:58:58.187  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@351267e9 +2023-10-27 13:58:58.188 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:58.189  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:58.189  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:58.196 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:58:58.196  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql +2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? +2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Question What notes does a C major chord consist of? +2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:58:58.199  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-709828756 +2023-10-27 13:58:58.320 DEBUG 28726 --- [nio-8088-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1b053829 +2023-10-27 13:58:58.320 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:58:58.321  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":18,"end":25,"spot":"C major","confidence":0.7995,"id":421402,"title":"C major","uri":"http://en.wikipedia.org/wiki/C_major","abstract":"C major (or the key of C) is a major scale based on C, consisting of the pitches C, D, E, F, G, A, and B. C major is one of the most common keys used in music. Its key signature has no flats or sharps. Its relative minor is A minor and its parallel minor is C minor.","label":"C major","categories":["Compositions in C major","Major scales","Musical keys"],"types":[]},{"start":20,"end":31,"spot":"major chord","confidence":0.7794,"id":417032,"title":"Major chord","uri":"http://en.wikipedia.org/wiki/Major_chord","abstract":"In music theory, a major chord is a chord that has a root, a major third, and a perfect fifth. When a chord comprises only these three notes, it is called a major triad. For example, the major triad built on C, called a C major triad, has pitches C–E–G:","label":"Major chord","categories":["Chords"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:58.301"} +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 18 +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/C_major +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 20 +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 31 +2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Major_chord +2023-10-27 13:58:58.327 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:58:58.327  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d2d9667 +2023-10-27 13:58:58.327 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:58.332  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/C_major" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.332  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/C_major" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.332 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/C_major" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.339  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ba68504 +2023-10-27 13:58:58.340 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:58.342  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Major_chord" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.342  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Major_chord" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.342 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Major_chord" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.350 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : processing took: 173 ms +2023-10-27 13:59:03.901  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:03.901  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:03.903  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:03.903  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5abb5b0e +2023-10-27 13:59:03.950  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1870efcf +2023-10-27 13:59:03.951 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:03.957  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:03.957  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:03.975 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f +2023-10-27 13:59:03.975  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql +2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question in which language does the united stated have the shortest short name? +2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:03.980 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:59:03.981  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-687015730 +2023-10-27 13:59:04.177 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@33d80dc0 +2023-10-27 13:59:04.177 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:59:04.178 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:59:04.179  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:04.179 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":9,"end":17,"spot":"language","confidence":0.671,"id":6880370,"title":"Philosophy of language","uri":"http://en.wikipedia.org/wiki/Philosophy_of_language","abstract":"In analytic philosophy, philosophy of language investigates the nature of language and the relations between language, language users, and the world. Investigations may include inquiry into the nature of meaning, intentionality, reference, the constitution of sentences, concepts, learning, and thought.","label":"Philosophy of language","categories":["Analytic philosophy","Meaning (philosophy of language)","Philosophy of language","Semantics","Semiotics"],"types":[]},{"start":59,"end":69,"spot":"short name","confidence":0.6764,"id":53430,"title":"Nickname","uri":"http://en.wikipedia.org/wiki/Nickname","abstract":"A nickname or short name is a substitute for the proper name of a person, place or thing. It is commonly used to express affection, amusement, a character trait or defamation of character. It is distinct from a pseudonym, stage name or title, although the concepts can overlap. Also known as sobriquet, it is typically informal.","label":"Nickname","categories":["Nicknames"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:59:04.093"} +2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 +2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 17 +2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Philosophy_of_language +2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 59 +2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 69 +2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Nickname +2023-10-27 13:59:04.190 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f +2023-10-27 13:59:04.190  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33bb539e +2023-10-27 13:59:04.190 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:59:04.193  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Philosophy_of_language" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.194  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Philosophy_of_language" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.194 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Philosophy_of_language" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.206  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2caadcb1 +2023-10-27 13:59:04.206 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:59:04.208  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "70"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nickname" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.209  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "70"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nickname" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.209 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "70"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Nickname" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.220 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 319 ms +2023-10-27 14:00:07.442  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:07.442  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:07.443  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:07.443  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5e7e97a3 +2023-10-27 14:00:07.474  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@562fe557 +2023-10-27 14:00:07.474 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:07.475  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:07.475  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:07.485 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 +2023-10-27 14:00:07.486  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql +2023-10-27 14:00:07.487 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? +2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question Which egyptian pyramid is the tallest? +2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+egyptian+pyramid+is+the+tallest%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+egyptian+pyramid+is+the+tallest%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:07.488  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1858310610 +2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@48090b40 +2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:00:07.651  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+egyptian+pyramid+is+the+tallest%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:00:07.633"} +2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 209 ms +2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@53c5a732 +2023-10-27 14:00:22.417  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25a91315 +2023-10-27 14:00:22.417 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:22.418  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:22.418  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:22.423 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f +2023-10-27 14:00:22.424  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql +2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? +2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Question What is the second letter in the Greek alphabet? +2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+letter+in+the+Greek+alphabet%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+letter+in+the+Greek+alphabet%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:22.426  INFO 28726 --- [io-8088-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1950581997 +2023-10-27 14:00:22.552 DEBUG 28726 --- [io-8088-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@267e97d8 +2023-10-27 14:00:22.552 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:00:22.553  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+letter+in+the+Greek+alphabet%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":25,"spot":"second letter","confidence":0.7412,"id":8859979,"title":"Epistles (Plato)","uri":"http://en.wikipedia.org/wiki/Epistles_%28Plato%29","abstract":"The Epistles (Greek: Ἐπιστολαί; Latin: Epistolae) of Plato are a series of thirteen letters traditionally included in the Platonic corpus. With the exception of the Seventh Letter, they are generally considered to be forgeries, although many scholars even reject the seventh.They were \"generally accepted as genuine until modern times\"; but by the close of the nineteenth century, many philologists believed that none of the letters were actually written by Plato.","label":"Epistles","categories":["Epistles of Plato"],"types":[]},{"start":33,"end":47,"spot":"Greek alphabet","confidence":0.8974,"id":3598847,"title":"History of the Greek alphabet","uri":"http://en.wikipedia.org/wiki/History_of_the_Greek_alphabet","abstract":"The history of the Greek alphabet starts with the adoption of Phoenician letter forms in the 9th–8th centuries BC during early Archaic Greece and continues to the present day. The Greek alphabet was developed during the Iron Age, centuries after the loss of Linear B, the syllabic script that was used for writing Mycenaean Greek until the Late Bronze Age collapse and Greek Dark Age. This article concentrates on the development of the alphabet before the modern codification of the standard Greek alphabet.","label":"History of the Greek alphabet","categories":["Greek alphabet","History of writing","Iron Age Greece","Palaeography"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:00:22.533"} +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Epistles_%28Plato%29 +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 33 +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 47 +2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/History_of_the_Greek_alphabet +2023-10-27 14:00:22.560 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f +2023-10-27 14:00:22.560  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58fc5812 +2023-10-27 14:00:22.560 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:00:22.562  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Epistles_%28Plato%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.562  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Epistles_%28Plato%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.562 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Epistles_%28Plato%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.570  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3520d9a3 +2023-10-27 14:00:22.570 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:00:22.571  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "48"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/History_of_the_Greek_alphabet" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.571  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "48"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/History_of_the_Greek_alphabet" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.571 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "48"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/History_of_the_Greek_alphabet" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.577 DEBUG 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : processing took: 170 ms +2023-10-27 14:02:10.707  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:10.710  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:10.710  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:10.710  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@26ff7269 +2023-10-27 14:02:10.725  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2746c8a9 +2023-10-27 14:02:10.725 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:10.725  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:10.726  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:10.736 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d +2023-10-27 14:02:10.736  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql +2023-10-27 14:02:10.737 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:02:10.737 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:02:10.738 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:02:10.738 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:02:10.738 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:02:10.738  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1694464597 +2023-10-27 14:02:10.863 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4e800fb1 +2023-10-27 14:02:10.863 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:02:10.864  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]},{"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]},{"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:02:10.844"} +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 21 +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 34 +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Impressionism +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 38 +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 51 +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Expressionism +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 53 +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 66 +2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Art_movement +2023-10-27 14:02:10.870 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d +2023-10-27 14:02:10.872  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13b14032 +2023-10-27 14:02:10.872 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:02:10.874  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Impressionism" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.874  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Impressionism" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.874 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Impressionism" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.882  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a3d16d +2023-10-27 14:02:10.882 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:02:10.883  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Expressionism" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.884  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Expressionism" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.884 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Expressionism" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.889  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19cc4fc7 +2023-10-27 14:02:10.890 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:02:10.891  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Art_movement" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.891  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Art_movement" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.891 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Art_movement" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:10.897 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 187 ms +2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@57ff36c8 +2023-10-27 14:04:56.864  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4e564cd5 +2023-10-27 14:04:56.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:56.866  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:56.866  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:56.872 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:04:56.872  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql +2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? +2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question What is the capital of the prefecture Tokyo ? +2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+capital+of+the+prefecture+Tokyo+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+capital+of+the+prefecture+Tokyo+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:04:56.875  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1800000773 +2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@547306af +2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:04:57.056  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+capital+of+the+prefecture+Tokyo+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":19,"spot":"capital","confidence":0.6717,"id":41188263,"title":"Madrid","uri":"http://en.wikipedia.org/wiki/Madrid","abstract":"Madrid is the capital and most populous city of Spain. The city has almost 3.4 million inhabitants and a metropolitan area population of approximately 6.7 million. It is the second-largest city in the European Union (EU), and its metropolitan area is the second-largest in the EU. The municipality covers geographical area. Madrid lies on the River Manzanares in the central part of the Iberian Peninsula. Capital city of both Spain (almost without interruption since 1561) and the surrounding autonomous community of Madrid (since 1983), it is also the political, economic and cultural centre of the country. The city is situated on an elevated plain about from the closest seaside location. The climate of Madrid features hot summers and cool winters.","label":"Madrid","categories":["9th-century establishments in Spain","Capitals in Europe","Madrid","Municipalities in the Community of Madrid","Populated places established in the 9th century"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]},{"start":38,"end":43,"spot":"Tokyo","confidence":0.8144,"id":30057,"title":"Tokyo","uri":"http://en.wikipedia.org/wiki/Tokyo","abstract":"Tokyo, officially the Tokyo Metropolis, is the capital and most populous city of Japan. Tokyo's metropolitan area (including neighboring prefectures) is the most populous in the world, with an estimated 37.468 million residents; although this number has been gradually decreasing since then, the prefecture itself has a population of 14.09 million people while the city's central 23 special wards have a population of 9.73 million. Located at the head of Tokyo Bay, the prefecture forms part of the Kantō region on the central coast of Honshu, Japan's largest island. Tokyo serves as Japan's economic center and is the seat of both the Japanese government and the Emperor of Japan.","label":"Tokyo","categories":["1457 establishments in Asia","15th-century establishments in Japan","Capitals in Asia","Kantō region","Populated coastal places in Japan","Populated places established in the 1450s","Port settlements in Japan","States and territories established in the 1450s","Tokyo"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:04:57.037"} +2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 19 +2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Madrid +2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 38 +2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 43 +2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Tokyo +2023-10-27 14:04:57.062 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:04:57.062  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e5b3458 +2023-10-27 14:04:57.062 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:57.064  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Madrid" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.064  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Madrid" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.064 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Madrid" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.071  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f2c5368 +2023-10-27 14:04:57.071 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:04:57.072  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Tokyo" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.073  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Tokyo" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.073 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Tokyo" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.079 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 229 ms +2023-10-27 14:06:40.228  INFO 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.228  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.228  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.229  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4f801913 +2023-10-27 14:06:40.237  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1b83bcda +2023-10-27 14:06:40.238 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:40.238  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.238  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.244 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 +2023-10-27 14:06:40.244  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql +2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? +2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Question How many female Chinese Empresses have there been? +2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+female+Chinese+Empresses+have+there+been%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+female+Chinese+Empresses+have+there+been%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:06:40.246  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1612962465 +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@46743587 +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:06:40.385  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+female+Chinese+Empresses+have+there+been%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":16,"end":23,"spot":"Chinese","confidence":0.7501,"id":5760,"title":"History of China","uri":"http://en.wikipedia.org/wiki/History_of_China","abstract":"The history of China spans several millennia across a wide geographical area. The notion of \"China\" can be understood under many diverse historiographical, cultural, geographic, and political lenses, and has evolved tremendously over time. Each region now understood to be part of the Chinese world has alternated between many periods of unity, fracture, prosperity, and hardship. Classical Chinese civilization first emerged in the Yellow River valley, which along with the Yangtze and Pearl valleys now constitute the geographic core of China and have for the majority of its imperial history. China maintains a rich diversity of ethnic and linguistic people groups. The traditional lens for viewing Chinese history is the dynastic cycle: imperial dynasties rise and fall, and are ascribed certain achievements. Throughout pervades the narrative that Chinese civilization can be traced as an unbroken thread many thousands of years into the past, making it one of the cradles of civilization. At various times, states representative of a dominant Chinese culture have directly controlled areas stretching as far west as the Tian Shan, the Tarim Basin, and the Himalayas, as far north as the Sayan Mountains, and as far south as the delta of the Red River.","label":"Chinese","categories":["History of China"],"types":[]},{"start":24,"end":33,"spot":"Empresses","confidence":0.716,"id":10111,"title":"Emperor","uri":"http://en.wikipedia.org/wiki/Emperor","abstract":"The word emperor (from, via) can mean the male absolute ruler of an empire. Empress, the female equivalent, may indicate an emperor's wife (empress consort), mother/grandmother (empress dowager/grand empress dowager), or a woman who rules in her own right and name (empress regnant). Emperors are generally recognized to be of the highest monarchic honor and rank, surpassing kings. In Europe, the title of Emperor has been used since the Middle Ages, considered in those times equal or almost equal in dignity to that of Pope due to the latter's position as visible head of the Church and spiritual leader of the Catholic part of Western Europe. The emperor of Japan is the only currently reigning monarch whose title is translated into English as \"Emperor\".","label":"Emperor","categories":["Emperors","Gendered occupations","Heads of state","Imperial titles","Political philosophy"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:06:40.363"} +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 16 +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/History_of_China +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 24 +2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 33 +2023-10-27 14:06:40.386 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Emperor +2023-10-27 14:06:40.391 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 +2023-10-27 14:06:40.392  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a19f008 +2023-10-27 14:06:40.392 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:06:40.393  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/History_of_China" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.393  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/History_of_China" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.393 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/History_of_China" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.399  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c7afcfd +2023-10-27 14:06:40.400 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:06:40.401  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Emperor" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.401  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Emperor" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.401 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Emperor" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.407 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : processing took: 179 ms +2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@306fa53a +2023-10-27 14:07:12.414  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ce59be6 +2023-10-27 14:07:12.414 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:12.415  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:12.415  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:12.421 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:12.421  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql +2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? +2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question can i play don't starve on play station 4? +2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=can+i+play+don%27t+starve+on+play+station+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=can+i+play+don%27t+starve+on+play+station+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:07:12.422  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1532633591 +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@79552b5 +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:07:12.604  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=can+i+play+don%27t+starve+on+play+station+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":11,"end":23,"spot":"don't starve","confidence":0.891,"id":37858394,"title":"Don't Starve","uri":"http://en.wikipedia.org/wiki/Don%27t_Starve","abstract":"Don't Starve is a survival video game developed by the Canadian indie video game developer Klei Entertainment. The game was initially released for Microsoft Windows, OS X, and Linux on April 23, 2013. A PlayStation 4 port, renamed Don't Starve: Giant Edition, became available the following year (with PlayStation Vita and PlayStation 3 versions released in September 2014 and June 2015 respectively, and an Xbox One version released in August 2015). Don't Starve for iOS, renamed Don't Starve: Pocket Edition was released on July 9, 2015. An Android version was released on October 20, 2016. Downloadable content titled Reign of Giants was released on April 30, 2014, and a multiplayer standalone expansion called Don't Starve Together became free for existing users on June 3, 2015. On Steam, this game is able to be purchased with a free copy for a friend. A Nintendo Switch port came out on April 12, 2018.","label":"Don't Starve","categories":["2013 video games","505 Games games","Action-adventure games","Android (operating system) games","Game jam video games","IOS games","Indie video games","Klei Entertainment games","Linux games","Lua (programming language)-scripted video games","MacOS games","Multiplayer and single-player video games","Nintendo Switch games","Open-world video games","PlayStation 3 games","PlayStation 4 games","PlayStation Network games","PlayStation Vita games","Single-player video games","Survival video games","Video games developed in Canada","Video games using procedural generation","Video games with Steam Workshop support","Video games with expansion packs","Wii U eShop games","Wii U games","Windows games","Xbox Cloud Gaming games","Xbox One games"],"types":["http://dbpedia.org/ontology/VideoGame","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Software"]},{"start":27,"end":41,"spot":"play station 4","confidence":0.9078,"id":35723752,"title":"PlayStation 4","uri":"http://en.wikipedia.org/wiki/PlayStation_4","abstract":"The PlayStation 4 (PS4) is a home video game console developed by Sony Interactive Entertainment. Announced as the successor to the PlayStation 3 in February 2013, it was launched on November 15, 2013, in North America, November 29, 2013 in Europe, South America and Australia, and on February 22, 2014 in Japan. A console of the eighth generation, it competes with Microsoft's Xbox One and Nintendo's Wii U and Switch.","label":"PlayStation 4","categories":["2010s toys","2013 in video gaming","Computer-related introductions in 2013","Eighth-generation video game consoles","Home video game consoles","PlayStation (brand)","PlayStation 4","Products introduced in 2013","Regionless game consoles","Sony consoles","X86-based game consoles"],"types":["http://dbpedia.org/ontology/InformationAppliance","http://dbpedia.org/ontology/Device"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:12.583"} +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 11 +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Don%27t_Starve +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 27 +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 +2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/PlayStation_4 +2023-10-27 14:07:12.610 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:12.610  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9de55e5 +2023-10-27 14:07:12.610 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:12.611  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "11"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Don%27t_Starve" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.612  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "11"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Don%27t_Starve" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.612 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "11"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Don%27t_Starve" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.618  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cb38eea +2023-10-27 14:07:12.618 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:12.620  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/PlayStation_4" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.620  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/PlayStation_4" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.620 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/PlayStation_4" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.630 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 222 ms +2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7430d977 +2023-10-27 14:07:22.634  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7af73981 +2023-10-27 14:07:22.636 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:22.637  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:22.638  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:22.643 DEBUG 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 +2023-10-27 14:07:22.643  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql +2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? +2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Question In how many movies did Carey Mulligan and Ryan Gosling star together? +2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=In+how+many+movies+did+Carey+Mulligan+and+Ryan+Gosling+star+together%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=In+how+many+movies+did+Carey+Mulligan+and+Ryan+Gosling+star+together%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:07:22.645  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-711100201 +2023-10-27 14:07:22.779 DEBUG 28726 --- [nio-8088-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3bca33ba +2023-10-27 14:07:22.779 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:07:22.779 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:07:22.779  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=In+how+many+movies+did+Carey+Mulligan+and+Ryan+Gosling+star+together%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":12,"end":18,"spot":"movies","confidence":0.6759,"id":21555729,"title":"Film","uri":"http://en.wikipedia.org/wiki/Film","abstract":"A film also called a movie, motion picture, moving picture, picture, photoplay or (slang) flick is a work of visual art that simulates experiences and otherwise communicates ideas, stories, perceptions, feelings, beauty, or atmosphere through the use of moving images. These images are generally accompanied by sound and, more rarely, other sensory stimulations. The word \"cinema\", short for cinematography, is often used to refer to filmmaking and the film industry, and the art form that is the result of it.","label":"Film","categories":["19th-century inventions","Articles containing video clips","Film","French inventions","Media formats","Visual arts media"],"types":[]},{"start":23,"end":37,"spot":"Carey Mulligan","confidence":0.9381,"id":4311446,"title":"Carey Mulligan","uri":"http://en.wikipedia.org/wiki/Carey_Mulligan","abstract":"Carey Hannah Mulligan (born 28 May 1985) is an English actress. She has received various accolades, including a British Academy Film Award, in addition to nominations for two Academy Awards, three Golden Globe Awards, and a Tony Award.","label":"Carey Mulligan","categories":["1985 births","21st-century English actresses","Actresses from London","Audiobook narrators","Best Actress BAFTA Award winners","English expatriates in the United States","English film actresses","English health activists","English people of Irish descent","English people of Welsh descent","English radio actresses","English stage actresses","English television actresses","English voice actresses","Independent Spirit Award for Best Female Lead winners","Living people","People educated at Woldingham School","Sexual abuse victim advocates","WFTV Award winners"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":42,"end":54,"spot":"Ryan Gosling","confidence":0.9383,"id":891226,"title":"Ryan Gosling","uri":"http://en.wikipedia.org/wiki/Ryan_Gosling","abstract":"Ryan Thomas Gosling (born November 12, 1980) is a Canadian actor. Prominent in both independent film and major studio features of varying genres, his films have accrued a worldwide box office gross of over 1.9 billion USD. He has received various accolades, including a Golden Globe Award, and nominations for two Academy Awards and a BAFTA Award.","label":"Ryan Gosling","categories":["1980 births","20th-century Canadian male actors","21st-century Canadian male actors","21st-century Canadian male musicians","Best Musical or Comedy Actor Golden Globe (film) winners","Canadian documentary film producers","Canadian expatriate film directors in the United States","Canadian expatriate male actors in the United States","Canadian expatriate musicians in the United States","Canadian expatriate writers in the United States","Canadian film producers","Canadian folk rock musicians","Canadian indie rock musicians","Canadian male child actors","Canadian male film actors","Canadian male television actors","Canadian male voice actors","Canadian people of English descent","Canadian people of French descent","Canadian people of German descent","Canadian people of Irish descent","Canadian people of Scottish descent","Canadian philanthropists","Canadian restaurateurs","Film directors from London, Ontario","Former Latter Day Saints","Franco-Ontarian people","Independent Spirit Award for Best Male Lead winners","Living people","Male actors from London, Ontario","Mouseketeers","Musicians from London, Ontario","People from Burlington, Ontario","People from Cornwall, Ontario","Writers from London, Ontario"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":55,"end":59,"spot":"star","confidence":0.7404,"id":7767613,"title":"Star! (film)","uri":"http://en.wikipedia.org/wiki/Star%21_%28film%29","abstract":"Star! (re-titled Those Were the Happy Times for its 1969 re-release) is a 1968 American biographical musical film directed by Robert Wise and starring Julie Andrews. The screenplay by William Fairchild is based on the life and career of British performer Gertrude Lawrence.","label":"Star!","categories":["1960s American films","1960s English-language films","1968 films","1968 musical films","20th Century Fox films","American biographical films","American musical films","Biographical films about actors","Films directed by Robert Wise","Films featuring a Best Supporting Actor Golden Globe winning performance","Films scored by Lennie Hayton","Films set in London","Films set in New York City","Films set in the 1910s","Films set in the 1940s","Musical films based on actual events"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:22.758"} +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 18 +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Film +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 23 +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 37 +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Carey_Mulligan +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 42 +2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 54 +2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Ryan_Gosling +2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 55 +2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 59 +2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Star%21_%28film%29 +2023-10-27 14:07:22.786 DEBUG 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 +2023-10-27 14:07:22.786  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4943aed5 +2023-10-27 14:07:22.786 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:22.788  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Film" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.788  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Film" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.788 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Film" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.794  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@abbad4d +2023-10-27 14:07:22.794 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:22.796  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Carey_Mulligan" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.796  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Carey_Mulligan" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.796 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Carey_Mulligan" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.803  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31d86e97 +2023-10-27 14:07:22.803 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:22.805  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Ryan_Gosling" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.805  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Ryan_Gosling" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.805 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Ryan_Gosling" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.813  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5be5ccf5 +2023-10-27 14:07:22.813 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:22.815  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "55"^^xsd:nonNegativeInteger . + _:b1 oa:end "60"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Star%21_%28film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.815  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "55"^^xsd:nonNegativeInteger . + _:b1 oa:end "60"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Star%21_%28film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.816 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "55"^^xsd:nonNegativeInteger . + _:b1 oa:end "60"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Star%21_%28film%29" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:22.822 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.component.QanaryServiceController  : processing took: 196 ms +2023-10-27 14:08:04.726  INFO 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:04.728  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:04.728  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:04.728  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4e4789b6 +2023-10-27 14:08:04.737  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c313427 +2023-10-27 14:08:04.737 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:04.738  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:04.738  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:04.745 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 +2023-10-27 14:08:04.745  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql +2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? +2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Question is there female main character in hunter x hunter? +2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:04.746  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-191225740 +2023-10-27 14:08:04.948 DEBUG 28726 --- [nio-8088-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4a28311c +2023-10-27 14:08:04.948 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:04.948 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:04.949  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":16,"end":30,"spot":"main character","confidence":0.6301,"id":68315,"title":"Protagonist","uri":"http://en.wikipedia.org/wiki/Protagonist","abstract":"A protagonist is the main character of a story. The protagonist makes key decisions that affect the plot, primarily influencing the story and propelling it forward, and is often the character who faces the most significant obstacles. If a story contains a subplot, or is a narrative made up of several stories, then each subplot may have its own protagonist.","label":"Protagonist","categories":["Ancient Greek theatre","Protagonists by role","Psychodrama"],"types":[]},{"start":34,"end":49,"spot":"hunter x hunter","confidence":0.8917,"id":771172,"title":"Hunter × Hunter","uri":"http://en.wikipedia.org/wiki/Hunter_%C3%97_Hunter","abstract":"Hunter × Hunter (stylized as HUNTER×HUNTER and pronounced \"hunter hunter\") is a Japanese manga series written and illustrated by Yoshihiro Togashi. It has been serialized in Shueisha's shōnen manga magazine Weekly Shōnen Jump since March 1998, although the manga has frequently gone on extended hiatuses since 2006. Its chapters have been collected in 37 tankōbon volumes as of November 2022. The story focuses on a young boy named Gon Freecss who discovers that his father, who left him at a young age, is actually a world-renowned Hunter, a licensed professional who specializes in fantastical pursuits such as locating rare or unidentified animal species, treasure hunting, surveying unexplored enclaves, or hunting down lawless individuals. Gon departs on a journey to become a Hunter and eventually find his father. Along the way, Gon meets various other Hunters and encounters the paranormal.","label":"Hunter × Hunter","categories":["1998 manga","1999 anime television series debuts","2002 anime OVAs","2011 Japanese television series debuts","Adventure anime and manga","Animated films based on manga","Anime series based on manga","Coming-of-age anime and manga","Fantasy anime and manga","Fuji TV original programming","Hunter × Hunter","Japanese-language films","Madhouse (company)","Manga adapted into films","Martial arts anime and manga","Muse Communication","Musicals based on anime and manga","Nippon Animation","Nippon TV original programming","Odex","Shueisha franchises","Shueisha manga","Shōnen manga","Toonami","Viz Media anime","Viz Media manga"],"types":["http://dbpedia.org/ontology/Manga","http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Comic"]}],"lang":"en","langConfidence":0.9999,"timestamp":"2023-10-27T12:08:04.928"} +2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 16 +2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 30 +2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Protagonist +2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 34 +2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 49 +2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Hunter_%C3%97_Hunter +2023-10-27 14:08:04.954 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 +2023-10-27 14:08:04.954  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70c8ae95 +2023-10-27 14:08:04.954 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:04.956  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Protagonist" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:04.956  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Protagonist" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:04.956 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Protagonist" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:04.961  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4a45115e +2023-10-27 14:08:04.962 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:04.963  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hunter_%C3%97_Hunter" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:04.963  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hunter_%C3%97_Hunter" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:04.963 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hunter_%C3%97_Hunter" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:04.969 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : processing took: 242 ms +2023-10-27 14:08:06.189  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.190  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.190  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.190  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@414e395a +2023-10-27 14:08:06.197  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@328b9abe +2023-10-27 14:08:06.197 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:06.197  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:06.198  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:06.203 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:06.204  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql +2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? +2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question What caused Kobe Bryant's Death? +2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+caused+Kobe+Bryant%27s+Death%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+caused+Kobe+Bryant%27s+Death%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:06.205  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-851927106 +2023-10-27 14:08:06.257 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5bc508d2 +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:06.258  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+caused+Kobe+Bryant%27s+Death%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":23,"spot":"Kobe Bryant","confidence":0.9751,"id":246185,"title":"Kobe Bryant","uri":"http://en.wikipedia.org/wiki/Kobe_Bryant","abstract":"Kobe Bean Bryant (August 23, 1978 – January 26, 2020) was an American professional basketball player. A shooting guard, he spent his entire 20-year career with the Los Angeles Lakers in the National Basketball Association (NBA). Widely regarded as one of the greatest basketball players of all time, Bryant won five NBA championships, was an 18-time All-Star, a 15-time member of the All-NBA Team, a 12-time member of the All-Defensive Team, the 2008 NBA Most Valuable Player (MVP), and a two-time NBA Finals MVP. Bryant also led the NBA in scoring twice, and ranks fourth in league all-time regular season and postseason scoring. He was posthumously voted into the Naismith Memorial Basketball Hall of Fame in 2020 and named to the NBA 75th Anniversary Team in 2021.","label":"Kobe Bryant","categories":["1978 births","2020 deaths","Accidental deaths in California","African-American Catholics","African-American basketball players","American expatriate basketball people in Italy","American men's basketball players","American men podcasters","American philanthropists","American podcasters","Basketball players at the 2008 Summer Olympics","Basketball players at the 2012 Summer Olympics","Basketball players from Los Angeles","Basketball players from Philadelphia","Burials at Pacific View Memorial Park","Catholics from California","Catholics from Pennsylvania","Charlotte Hornets draft picks","Deaths from fire in the United States","Kobe Bryant","Los Angeles Lakers players","Lower Merion High School alumni","McDonald's High School All-Americans","Medalists at the 2008 Summer Olympics","Medalists at the 2012 Summer Olympics","Naismith Memorial Basketball Hall of Fame inductees","National Basketball Association All-Stars","National Basketball Association high school draftees","National Basketball Association players with retired numbers","Olympic gold medalists for the United States in basketball","Parade High School All-Americans (boys' basketball)","Philanthropists from California","Philanthropists from Pennsylvania","Producers who won the Best Animated Short Academy Award","Shooting guards","Sportspeople from Newport Beach, California","United States men's national basketball team players","Victims of aviation accidents or incidents in 2020","Victims of helicopter accidents or incidents in the United States"],"types":[]},{"start":17,"end":31,"spot":"Bryant's Death","confidence":0.8532,"id":62938434,"title":"2020 Calabasas helicopter crash","uri":"http://en.wikipedia.org/wiki/2020_Calabasas_helicopter_crash","abstract":"On January 26, 2020, a Sikorsky S-76B helicopter crashed in the city of Calabasas, California, around northwest of Downtown Los Angeles, while en route from John Wayne Airport to Camarillo Airport. All nine people on board were killed: retired professional basketball player Kobe Bryant, his 13-year-old daughter Gianna, baseball coach John Altobelli, his wife Keri, his daughter Alyssa, Payton Chester, her mother Sarah, basketball coach Christina Mauser, and the pilot, Ara Zobayan.","label":"2020 Calabasas helicopter crash","categories":["2020 in Los Angeles County, California","2020 in basketball","Accidents and incidents involving the Sikorsky S-76","Articles containing video clips","Aviation accidents and incidents caused by pilot error","Aviation accidents and incidents in California","Aviation accidents and incidents in the United States in 2020","Aviation accidents and incidents involving controlled flight into terrain","Calabasas, California","January 2020 events in the United States","Kobe Bryant","Los Angeles Lakers","Sports-related aviation accidents and incidents"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:06.235"} +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Kobe_Bryant +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 17 +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 31 +2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/2020_Calabasas_helicopter_crash +2023-10-27 14:08:06.263 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:06.263  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2170084f +2023-10-27 14:08:06.263 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:06.265  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.265  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.265 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.270  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@114461d2 +2023-10-27 14:08:06.270 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:06.272  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/2020_Calabasas_helicopter_crash" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.272  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/2020_Calabasas_helicopter_crash" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.272 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/2020_Calabasas_helicopter_crash" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.278 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 89 ms +2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5b387afc +2023-10-27 14:08:24.306  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c87a411 +2023-10-27 14:08:24.306 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:24.307  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:24.307  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:24.315 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c +2023-10-27 14:08:24.316  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql +2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? +2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Question How often was Naomi Novik nominated for a Hugo Award? +2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+often+was+Naomi+Novik+nominated+for+a+Hugo+Award%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+often+was+Naomi+Novik+nominated+for+a+Hugo+Award%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:24.319  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1146220859 +2023-10-27 14:08:24.453 DEBUG 28726 --- [nio-8088-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@229d18ef +2023-10-27 14:08:24.453 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:24.453 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:24.454  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+often+was+Naomi+Novik+nominated+for+a+Hugo+Award%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":14,"end":25,"spot":"Naomi Novik","confidence":0.964,"id":4734491,"title":"Naomi Novik","uri":"http://en.wikipedia.org/wiki/Naomi_Novik","abstract":"Naomi Novik (born 1973) is an American author of speculative fiction. She is known for the Temeraire series (2006–2016), an alternate history of the Napoleonic Wars involving dragons, and her Scholomance fantasy series (2020–2022). Her standalone fantasy novels Uprooted (2015) and Spinning Silver (2018) were inspired by Polish folklore and the Rumpelstiltskin fairy tale respectively. Novik has won many awards for her work, including the Alex, Audie, British Fantasy, Locus, Mythopoeic and Nebula Awards.","label":"Naomi Novik","categories":["1973 births","21st-century American novelists","21st-century American women writers","American alternate history writers","American fantasy writers","American historical novelists","American people of Lithuanian-Jewish descent","American people of Polish-Jewish descent","American women novelists","Brown University alumni","Columbia Graduate School of Arts and Sciences alumni","Fan fiction writers","John W. Campbell Award for Best New Writer winners","Living people","Nebula Award winners","Novelists from New York (state)","People from Roslyn Heights, New York","Women historical novelists","Women science fiction and fantasy writers"],"types":["http://dbpedia.org/ontology/Writer","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":42,"end":52,"spot":"Hugo Award","confidence":0.9069,"id":28866471,"title":"Hugo Award","uri":"http://en.wikipedia.org/wiki/Hugo_Award","abstract":"The Hugo Award is an annual literary award for the best science fiction or fantasy works and achievements of the previous year, given at the World Science Fiction Convention and chosen by its members. The Hugo is widely considered the premier award in science fiction. The award is administered by the World Science Fiction Society. It is named after Hugo Gernsback, the founder of the pioneering science fiction magazine Amazing Stories. Hugos were first given in 1953, at the 11th World Science Fiction Convention, and have been awarded every year since 1955.","label":"Hugo Award","categories":["1953 establishments in the United States","Awards established in 1953","Fantasy awards","Hugo Awards","Science fiction awards"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:24.429"} +2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 14 +2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 +2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Naomi_Novik +2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 42 +2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 52 +2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Hugo_Award +2023-10-27 14:08:24.462 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c +2023-10-27 14:08:24.462  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aea69da +2023-10-27 14:08:24.462 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:24.465  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Naomi_Novik" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.465  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Naomi_Novik" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.465 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Naomi_Novik" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.477  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b4cf5ba +2023-10-27 14:08:24.477 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:24.480  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hugo_Award" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.480  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hugo_Award" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.480 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "53"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Hugo_Award" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.490 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : processing took: 194 ms +2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@67a52fe5 +2023-10-27 14:09:00.358  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67933974 +2023-10-27 14:09:00.359 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:00.359  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:00.359  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:00.367 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf +2023-10-27 14:09:00.367  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql +2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? +2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question What language do they speak in Poland ? +2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+language+do+they+speak+in+Poland+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+language+do+they+speak+in+Poland+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:09:00.370  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1792806726 +2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2d24c9f5 +2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:09:00.663  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+language+do+they+speak+in+Poland+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":31,"end":37,"spot":"Poland","confidence":0.7434,"id":343234,"title":"Polish–Lithuanian Commonwealth","uri":"http://en.wikipedia.org/wiki/Polish%E2%80%93Lithuanian_Commonwealth","abstract":"The Polish–Lithuanian Commonwealth, formally known as the Kingdom of Poland and the Grand Duchy of Lithuania, or simply Poland–Lithuania, was a bi-confederal state, sometimes called a federation, of Poland and Lithuania ruled by a common monarch in real union, who was both King of Poland and Grand Duke of Lithuania. It was one of the largest and most populous countries of 16th- to 17th-century Europe. At its largest territorial extent, in the early 17th century, the Commonwealth covered almost and as of 1618 sustained a multi-ethnic population of almost 12 million. Polish and Latin were the two co-official languages.","label":"Polish–Lithuanian Commonwealth","categories":["1569 establishments in Poland","16th century in Lithuania","16th century in Poland","16th century in Ukraine","1795 disestablishments in Poland","17th century in Lithuania","17th century in Poland","17th century in Ukraine","18th century in Lithuania","18th century in Poland","18th century in Ukraine","Christian states","Diarchies","Duchy of Livonia","Early Modern history of Belarus","Early Modern history of Lithuania","Early Modern history of Poland","Early Modern history of Ukraine","Former countries in Europe","Former monarchies of Europe","Former republics","Former state unions","History of Lithuania (1569–1795)","History of Transnistria","Lithuania–Poland relations","Polish–Lithuanian Commonwealth","Political history of Lithuania","Political history of Poland","Political history of Ukraine","States and territories disestablished in 1795","States and territories established in 1569"],"types":["http://dbpedia.org/ontology/Country","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:09:00.616"} +2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 31 +2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 37 +2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth +2023-10-27 14:09:00.671 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf +2023-10-27 14:09:00.672  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55708c22 +2023-10-27 14:09:00.672 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:09:00.675  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:00.675  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:00.675 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody "http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:00.683 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 334 ms +2023-10-27 14:15:38.592  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | spring.application.name -> spring_application_name=DandelionNED +2023-10-27 14:15:38.594  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | spring.application.description -> spring_application_description=DandelionNED is a Qanary component +2023-10-27 14:15:38.594  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | springdoc.swagger-ui.path -> springdoc_swagger_ui_path=This text is shown as the property springdoc.swagger-ui.path is not defined (e.g., in application.properties). +2023-10-27 14:15:38.594  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | spring.boot.admin.url -> spring_boot_admin_url=http://localhost:8080 +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | rdfcomponentdescription=/component-description +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | ImplementationVersion=3.7.2 +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | SpecificationVendor=null +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | SpecificationVersion=3.7 +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | ImplementationTitle=qa.component +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | component_description_file=description +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | component_description_url=/description +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | SpecificationTitle=qa.component +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | ImplementationVendor=null +2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | Name=eu.wdaqua.qanary.component diff --git a/qanary-component-NED-Dandelion/src/main/resources/config/application.properties b/qanary-component-NED-Dandelion/src/main/resources/config/application.properties index 9a1fd05c5..d98f25a1f 100644 --- a/qanary-component-NED-Dandelion/src/main/resources/config/application.properties +++ b/qanary-component-NED-Dandelion/src/main/resources/config/application.properties @@ -44,4 +44,4 @@ server.ssl.enabled=false qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # dandelion configuration dandelion.api.live.test.active=true -dandelion.api.key= +dandelion.api.key=7d29f867b39a432e8884e99f69c194c9 diff --git a/qanary-component-NED-Ontotext/nohup.out b/qanary-component-NED-Ontotext/nohup.out new file mode 100644 index 000000000..07f06d2df --- /dev/null +++ b/qanary-component-NED-Ontotext/nohup.out @@ -0,0 +1,5519 @@ +Error: Unable to access jarfile target/*.jar + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +OntoTextNED -- OntoTextNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.1.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080 + +2023-10-27 12:01:33.701 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 7851 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) +2023-10-27 12:01:33.706 DEBUG 7851 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:01:33.720 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:01:41.463 INFO 7851 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ab7a938 +2023-10-27 12:01:43.658 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 12:01:43.758 INFO 7851 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46baf579 +2023-10-27 12:01:44.363 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 12:01:44.365 INFO 7851 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@28952dea +2023-10-27 12:01:44.373 INFO 7851 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: +server.host = null +server.port = 8096 +spring.application.name = OntoTextNED +spring.application.description = OntoTextNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:01:44.410 INFO 7851 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl +2023-10-27 12:01:45.327 WARN 7851 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:01:45.381 WARN 7851 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized +2023-10-27 12:01:45.490 WARN 7851 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:01:45.505 INFO 7851 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: +2023-10-27 12:01:47.640 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.Application : Started Application in 15.881 seconds (JVM running for 18.943) +2023-10-27 12:01:47.838 WARN 7851 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:01:57.692 INFO 7851 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Application registered itself as ca420f64ffcd +2023-10-27 12:08:47.657 WARN 7851 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +OntoTextNED -- OntoTextNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.1.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080 + +2023-10-27 12:09:22.538 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 9648 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) +2023-10-27 12:09:22.557 DEBUG 9648 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.558 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:46.064 INFO 9648 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29ef6856 +2023-10-27 12:09:49.591 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 12:09:49.858 INFO 9648 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f4f9acd +2023-10-27 12:09:50.357 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 12:09:50.358 INFO 9648 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@23eee4b8 +2023-10-27 12:09:50.369 INFO 9648 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: +server.host = null +server.port = 8096 +spring.application.name = OntoTextNED +spring.application.description = OntoTextNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:50.492 INFO 9648 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl +2023-10-27 12:09:53.979 WARN 9648 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:54.121 WARN 9648 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized +2023-10-27 12:09:54.639 WARN 9648 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:54.718 INFO 9648 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: +2023-10-27 12:10:00.177 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.Application : Started Application in 42.306 seconds (JVM running for 49.286) +2023-10-27 12:10:00.542 WARN 9648 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:10.299 INFO 9648 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Application registered itself as ca420f64ffcd + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +OntoTextNED -- OntoTextNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.1.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080 + +2023-10-27 12:15:52.892 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 11761 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) +2023-10-27 12:15:52.899 DEBUG 11761 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:52.900 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:23.544 INFO 11761 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ab7a938 +2023-10-27 12:16:27.888 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 12:16:28.322 INFO 11761 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46baf579 +2023-10-27 12:16:28.833 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 12:16:28.834 INFO 11761 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@28952dea +2023-10-27 12:16:28.994 INFO 11761 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: +server.host = null +server.port = 8096 +spring.application.name = OntoTextNED +spring.application.description = OntoTextNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:29.294 INFO 11761 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl +2023-10-27 12:16:33.736 WARN 11761 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:33.938 WARN 11761 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized +2023-10-27 12:16:34.688 WARN 11761 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:34.763 INFO 11761 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: +2023-10-27 12:16:43.766 WARN 11761 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8096 is already in use +2023-10-27 12:16:44.252 ERROR 11761 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8096 was already in use. + +Action: + +Identify and stop the process that's listening on port 8096 or configure this application to listen on another port. + +2023-10-27 13:37:20.228 WARN 9648 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +OntoTextNED -- OntoTextNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.1.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080 + +2023-10-27 13:37:48.236 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 28728 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) +2023-10-27 13:37:48.272 DEBUG 28728 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:48.295 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:11.282 INFO 28728 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ab7a938 +2023-10-27 13:38:16.044 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 13:38:16.181 INFO 28728 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46baf579 +2023-10-27 13:38:16.688 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 13:38:16.691 INFO 28728 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@28952dea +2023-10-27 13:38:16.712 INFO 28728 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: +server.host = null +server.port = 8096 +spring.application.name = OntoTextNED +spring.application.description = OntoTextNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:16.856 INFO 28728 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl +2023-10-27 13:38:20.957 WARN 28728 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:21.196 WARN 28728 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized +2023-10-27 13:38:22.027 WARN 28728 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:22.142 INFO 28728 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: +2023-10-27 13:38:32.594 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.Application : Started Application in 49.589 seconds (JVM running for 55.381) +2023-10-27 13:38:33.281 WARN 28728 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 13:38:42.944 INFO 28728 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Application registered itself as ca420f64ffcd + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +OntoTextNED -- OntoTextNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.1.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080 + +2023-10-27 13:38:52.915 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 30119 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) +2023-10-27 13:38:52.922 DEBUG 30119 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:52.934 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:17.547 INFO 30119 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3faf2e7d +2023-10-27 13:39:21.627 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 13:39:22.090 INFO 30119 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4bf324f9 +2023-10-27 13:39:22.595 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected +2023-10-27 13:39:22.597 INFO 30119 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@5a9800f8 +2023-10-27 13:39:22.624 INFO 30119 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: +server.host = null +server.port = 8096 +spring.application.name = OntoTextNED +spring.application.description = OntoTextNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:22.829 INFO 30119 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl +2023-10-27 13:39:27.545 WARN 30119 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:27.759 WARN 30119 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized +2023-10-27 13:39:28.442 WARN 30119 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:28.647 INFO 30119 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: +2023-10-27 13:39:35.942 WARN 30119 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8096 is already in use +2023-10-27 13:39:36.163 ERROR 30119 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8096 was already in use. + +Action: + +Identify and stop the process that's listening on port 8096 or configure this application to listen on another port. + +2023-10-27 13:51:52.891 INFO 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"} +2023-10-27 13:51:52.902 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"} +2023-10-27 13:51:52.908 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"},"inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"} +2023-10-27 13:51:53.093 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@58b1d0f4 +2023-10-27 13:51:53.212 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7121165c +2023-10-27 13:51:53.244 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:51:53.530 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:51:53.532 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:51:54.025 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_b5b5627c-327e-4d2c-9e30-76c4450c97b1 +2023-10-27 13:51:54.025 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_b5b5627c-327e-4d2c-9e30-76c4450c97b1 found in urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad at http://localhost:8080/sparql +2023-10-27 13:51:54.053 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation With how many countries does Australia share a border? +2023-10-27 13:51:54.053 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: With how many countries does Australia share a border? +2023-10-27 13:51:54.733 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Australia","startOffset":29,"endOffset":38,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:51:54.734 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":38,"startOffset":29,"name":"Australia","type":"Location"} +2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 29 +2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 38 +2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"} +2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 +2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 23 +2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Australia","startOffset":29,"endOffset":38,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:51:54.737 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":38,"startOffset":29,"name":"Australia","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"}] +2023-10-27 13:51:54.737 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:51:54.737 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:51:54.748 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b5b5627c-327e-4d2c-9e30-76c4450c97b1 +2023-10-27 13:51:54.748 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c7a17ee +2023-10-27 13:51:54.749 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:51:54.778 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:54.779 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:54.779 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:54.802 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fa555b8 +2023-10-27 13:51:54.803 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:51:54.824 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:54.825 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:54.825 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:51:54.836 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : processing took: 1936 ms +2023-10-27 13:52:02.986 INFO 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"} +2023-10-27 13:52:02.987 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"} +2023-10-27 13:52:02.987 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"},"inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"} +2023-10-27 13:52:02.987 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@18684ed6 +2023-10-27 13:52:03.041 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16afa3ab +2023-10-27 13:52:03.042 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:03.043 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:03.044 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:03.052 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_0b9cb1e6-7a14-4b5b-88dd-9b50c25beac4 +2023-10-27 13:52:03.052 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_0b9cb1e6-7a14-4b5b-88dd-9b50c25beac4 found in urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0 at http://localhost:8080/sparql +2023-10-27 13:52:03.054 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many languages are widely used in India? +2023-10-27 13:52:03.055 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many languages are widely used in India? +2023-10-27 13:52:03.611 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"languages","startOffset":9,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Language","confidence":0.5}},{"name":"India","startOffset":38,"endOffset":43,"type":"Location","features":{"isGenerated":"true","relevanceScore":0.17142857142857143,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"false","confidence":0.9848925387658187,"inst":"http://data.ontotext.com/publishing/location/India"}}]} +2023-10-27 13:52:03.611 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"languages","startOffset":9,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Language","confidence":0.5}},{"name":"India","startOffset":38,"endOffset":43,"type":"Location","features":{"isGenerated":"true","relevanceScore":0.17142857142857143,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"false","confidence":0.9848925387658187,"inst":"http://data.ontotext.com/publishing/location/India"}}]} +2023-10-27 13:52:03.611 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Language","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":18,"startOffset":9,"name":"languages","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":0.17142857142857143,"confidence":0.9848925387658187,"inst":"http://data.ontotext.com/publishing/location/India","class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"false"},"endOffset":43,"startOffset":38,"name":"India","type":"Location"}] +2023-10-27 13:52:03.612 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:52:03.612 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:52:03.612 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : processing took: 625 ms +2023-10-27 13:52:19.277 INFO 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"} +2023-10-27 13:52:19.278 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"} +2023-10-27 13:52:19.278 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"},"inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"} +2023-10-27 13:52:19.278 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@18f447ee +2023-10-27 13:52:19.288 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1633ba80 +2023-10-27 13:52:19.288 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:19.290 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:19.291 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:19.313 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_cdcd04d5-0468-463b-b599-54c9c9d675b5 +2023-10-27 13:52:19.313 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_cdcd04d5-0468-463b-b599-54c9c9d675b5 found in urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24 at http://localhost:8080/sparql +2023-10-27 13:52:19.315 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What is the area of the great lakes? +2023-10-27 13:52:19.315 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: What is the area of the great lakes? +2023-10-27 13:52:19.799 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"area","startOffset":12,"endOffset":16,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Area","confidence":0.5}}]} +2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"area","startOffset":12,"endOffset":16,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Area","confidence":0.5}}]} +2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Area","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":16,"startOffset":12,"name":"area","type":"Keyphrase"}] +2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:52:19.800 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : processing took: 523 ms +2023-10-27 13:52:21.163 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"} +2023-10-27 13:52:21.164 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"} +2023-10-27 13:52:21.164 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"},"inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"} +2023-10-27 13:52:21.164 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@142b52b2 +2023-10-27 13:52:21.171 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1aecae47 +2023-10-27 13:52:21.171 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:21.172 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:21.172 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:21.182 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7effcbe-b2a5-4862-8dbe-63b776c52673 +2023-10-27 13:52:21.182 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7effcbe-b2a5-4862-8dbe-63b776c52673 found in urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3 at http://localhost:8080/sparql +2023-10-27 13:52:21.184 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What event killed the most people in the years 1910 to 1920? +2023-10-27 13:52:21.184 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: What event killed the most people in the years 1910 to 1920? +2023-10-27 13:52:21.681 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"event","startOffset":5,"endOffset":10,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Event","confidence":0.5}}]} +2023-10-27 13:52:21.681 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"event","startOffset":5,"endOffset":10,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Event","confidence":0.5}}]} +2023-10-27 13:52:21.682 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Event","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":10,"startOffset":5,"name":"event","type":"Keyphrase"}] +2023-10-27 13:52:21.682 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:52:21.682 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:52:21.682 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 519 ms +2023-10-27 13:52:26.408 INFO 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"} +2023-10-27 13:52:26.408 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"} +2023-10-27 13:52:26.409 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"},"inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"} +2023-10-27 13:52:26.409 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@6865e89 +2023-10-27 13:52:26.418 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@841a029 +2023-10-27 13:52:26.418 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:26.420 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:26.421 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:26.429 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_d3d8a1ac-9a7a-4f06-8e70-302fbccedf8d +2023-10-27 13:52:26.429 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_d3d8a1ac-9a7a-4f06-8e70-302fbccedf8d found in urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b at http://localhost:8080/sparql +2023-10-27 13:52:26.431 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation From which country are the beagles originally from? +2023-10-27 13:52:26.431 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: From which country are the beagles originally from? +2023-10-27 13:52:27.007 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"country","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":18,"startOffset":11,"name":"country","type":"Keyphrase"} +2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 11 +2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 18 +2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"country","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":18,"startOffset":11,"name":"country","type":"Keyphrase"}] +2023-10-27 13:52:27.009 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:52:27.009 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:52:27.016 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d3d8a1ac-9a7a-4f06-8e70-302fbccedf8d +2023-10-27 13:52:27.017 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b128ea6 +2023-10-27 13:52:27.017 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:27.021 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "11"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:27.022 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "11"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:27.022 DEBUG 28728 --- [nio-8096-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "11"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:27.032 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : processing took: 624 ms +2023-10-27 13:52:27.636 INFO 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"} +2023-10-27 13:52:27.636 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"} +2023-10-27 13:52:27.637 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"},"inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"} +2023-10-27 13:52:27.637 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@3a370891 +2023-10-27 13:52:27.686 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34f0e1a7 +2023-10-27 13:52:27.686 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:27.687 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:27.687 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:27.705 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_74f06030-502a-45c0-85dc-e3471296d600 +2023-10-27 13:52:27.706 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_74f06030-502a-45c0-85dc-e3471296d600 found in urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba at http://localhost:8080/sparql +2023-10-27 13:52:27.709 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:52:27.709 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:52:28.158 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Netflix","startOffset":37,"endOffset":44,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"cast member","startOffset":18,"endOffset":29,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":44,"startOffset":37,"name":"Netflix","type":"Location"} +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 37 +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 44 +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":29,"startOffset":18,"name":"cast member","type":"Keyphrase"} +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 18 +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 29 +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Netflix","startOffset":37,"endOffset":44,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"cast member","startOffset":18,"endOffset":29,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":44,"startOffset":37,"name":"Netflix","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":29,"startOffset":18,"name":"cast member","type":"Keyphrase"}] +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:52:28.166 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_74f06030-502a-45c0-85dc-e3471296d600 +2023-10-27 13:52:28.167 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@113e29ca +2023-10-27 13:52:28.167 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:28.169 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:28.169 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:28.169 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:28.178 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71d6e7e8 +2023-10-27 13:52:28.178 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:28.180 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:28.180 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:28.180 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:28.188 DEBUG 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : processing took: 552 ms +2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"} +2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"} +2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"},"inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"} +2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@47316724 +2023-10-27 13:52:35.484 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@62488ce2 +2023-10-27 13:52:35.484 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:35.486 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:35.486 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:35.495 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa123bd3-cc4c-4051-8b6d-626e9e6f94b7 +2023-10-27 13:52:35.495 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa123bd3-cc4c-4051-8b6d-626e9e6f94b7 found in urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1 at http://localhost:8080/sparql +2023-10-27 13:52:35.497 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What are the occupations of Kazuo Ishiguro’s daughter? +2023-10-27 13:52:35.497 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: What are the occupations of Kazuo Ishiguro’s daughter? +2023-10-27 13:52:35.884 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Kazuo Ishiguro","startOffset":28,"endOffset":42,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"occupations","startOffset":13,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Occupation","confidence":0.5}}]} +2023-10-27 13:52:35.884 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":42,"startOffset":28,"name":"Kazuo Ishiguro","type":"Person"} +2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 +2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 42 +2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Kazuo Ishiguro","startOffset":28,"endOffset":42,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"occupations","startOffset":13,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Occupation","confidence":0.5}}]} +2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":42,"startOffset":28,"name":"Kazuo Ishiguro","type":"Person"},{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Occupation","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":24,"startOffset":13,"name":"occupations","type":"Keyphrase"}] +2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:52:35.892 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa123bd3-cc4c-4051-8b6d-626e9e6f94b7 +2023-10-27 13:52:35.893 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2e1c74ee +2023-10-27 13:52:35.893 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:52:35.895 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:35.896 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:35.896 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:52:35.903 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : processing took: 432 ms +2023-10-27 13:55:11.882 INFO 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:11.883 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:11.883 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:11.883 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@3a36ccec +2023-10-27 13:55:11.895 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5503d326 +2023-10-27 13:55:11.896 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:11.898 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:11.898 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:11.907 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 +2023-10-27 13:55:11.908 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql +2023-10-27 13:55:11.913 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation when was the magazine in which hunter x hunter is published established? +2023-10-27 13:55:11.913 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: when was the magazine in which hunter x hunter is published established? +2023-10-27 13:55:12.610 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"magazine","startOffset":13,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":21,"startOffset":13,"name":"magazine","type":"Keyphrase"} +2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 13 +2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 21 +2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"magazine","startOffset":13,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":21,"startOffset":13,"name":"magazine","type":"Keyphrase"}] +2023-10-27 13:55:12.612 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:55:12.612 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:55:12.619 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 +2023-10-27 13:55:12.620 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4f0cce25 +2023-10-27 13:55:12.620 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:55:12.622 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.623 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.623 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.634 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : processing took: 751 ms +2023-10-27 13:55:25.469 INFO 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:25.469 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:25.470 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:25.470 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4afd9963 +2023-10-27 13:55:25.477 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@589e0376 +2023-10-27 13:55:25.477 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:25.478 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:25.479 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:25.485 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 +2023-10-27 13:55:25.485 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql +2023-10-27 13:55:25.487 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:25.487 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"NPR","startOffset":23,"endOffset":26,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Tiny Desk Concert","startOffset":30,"endOffset":47,"type":"Work","features":{"confidence":0.8613574048223805,"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"subclasses":["Work"],"string":"Tiny Desk Concert","overallScore":0.687435459167947,"inst":"http://ontology.ontotext.com/resource/7bzxpos9","isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","class":"http://ontology.ontotext.com/taxonomy/Thing","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"id":4205928,"isTrusted":"true"}},{"name":"website","startOffset":12,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":26,"startOffset":23,"name":"NPR","type":"Keyphrase"} +2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 23 +2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 26 +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"string":"Tiny Desk Concert","confidence":0.8613574048223805,"overallScore":0.687435459167947,"isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"inst":"http://ontology.ontotext.com/resource/7bzxpos9","id":4205928,"class":"http://ontology.ontotext.com/taxonomy/Thing","subclasses":["Work"],"isTrusted":"true"},"endOffset":47,"startOffset":30,"name":"Tiny Desk Concert","type":"Work"} +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 30 +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 47 +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"website","type":"Keyphrase"} +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 12 +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"NPR","startOffset":23,"endOffset":26,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Tiny Desk Concert","startOffset":30,"endOffset":47,"type":"Work","features":{"confidence":0.8613574048223805,"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"subclasses":["Work"],"string":"Tiny Desk Concert","overallScore":0.687435459167947,"inst":"http://ontology.ontotext.com/resource/7bzxpos9","isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","class":"http://ontology.ontotext.com/taxonomy/Thing","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"id":4205928,"isTrusted":"true"}},{"name":"website","startOffset":12,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":26,"startOffset":23,"name":"NPR","type":"Keyphrase"},{"features":{"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"string":"Tiny Desk Concert","confidence":0.8613574048223805,"overallScore":0.687435459167947,"isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"inst":"http://ontology.ontotext.com/resource/7bzxpos9","id":4205928,"class":"http://ontology.ontotext.com/taxonomy/Thing","subclasses":["Work"],"isTrusted":"true"},"endOffset":47,"startOffset":30,"name":"Tiny Desk Concert","type":"Work"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"website","type":"Keyphrase"}] +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:55:25.869 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 +2023-10-27 13:55:25.870 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@209d3619 +2023-10-27 13:55:25.870 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:55:25.871 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.872 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.872 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.880 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58d21fc6 +2023-10-27 13:55:25.880 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:55:25.882 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.882 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.882 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "30"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.888 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@708fc055 +2023-10-27 13:55:25.888 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:55:25.890 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.891 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.891 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:25.898 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : processing took: 429 ms +2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@2667ecbb +2023-10-27 13:56:00.251 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@28a00607 +2023-10-27 13:56:00.251 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:56:00.252 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:00.252 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:00.259 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:00.259 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql +2023-10-27 13:56:00.262 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:00.263 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"president","startOffset":78,"endOffset":87,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"presidents","startOffset":15,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":87,"startOffset":78,"name":"president","type":"Keyphrase"} +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 78 +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 87 +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":25,"startOffset":15,"name":"presidents","type":"Keyphrase"} +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 15 +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 25 +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"president","startOffset":78,"endOffset":87,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"presidents","startOffset":15,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":87,"startOffset":78,"name":"president","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":25,"startOffset":15,"name":"presidents","type":"Keyphrase"}] +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:56:01.134 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:01.135 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61f7f6d3 +2023-10-27 13:56:01.135 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:56:01.137 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "78"^^xsd:nonNegativeInteger . + _:b1 oa:end "87"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:01.138 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "78"^^xsd:nonNegativeInteger . + _:b1 oa:end "87"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:01.138 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "78"^^xsd:nonNegativeInteger . + _:b1 oa:end "87"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:01.145 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@258bfcd5 +2023-10-27 13:56:01.146 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:56:01.148 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "15"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:01.148 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "15"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:01.148 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "15"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:01.155 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 915 ms +2023-10-27 13:57:00.408 INFO 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:00.409 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:00.409 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:00.409 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@87248ef +2023-10-27 13:57:00.426 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33d0ddbc +2023-10-27 13:57:00.427 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:00.429 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:00.430 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:00.440 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:00.440 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql +2023-10-27 13:57:00.442 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation When was the University of Hamburg founded? +2023-10-27 13:57:00.442 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: When was the University of Hamburg founded? +2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"University of Hamburg","startOffset":13,"endOffset":34,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} +2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":34,"startOffset":13,"name":"University of Hamburg","type":"Organization"} +2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 13 +2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 34 +2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"University of Hamburg","startOffset":13,"endOffset":34,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} +2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":34,"startOffset":13,"name":"University of Hamburg","type":"Organization"}] +2023-10-27 13:57:01.041 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:57:01.041 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:57:01.049 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:01.049 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fa38b25 +2023-10-27 13:57:01.050 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:01.063 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:01.064 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:01.064 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:01.071 DEBUG 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : processing took: 662 ms +2023-10-27 13:57:21.516 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:21.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:21.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:21.517 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@6ce9b452 +2023-10-27 13:57:21.536 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55600528 +2023-10-27 13:57:21.537 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:21.541 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:21.541 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:21.556 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:21.556 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql +2023-10-27 13:57:21.562 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What is the twitter name of Running Wild? +2023-10-27 13:57:21.564 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: What is the twitter name of Running Wild? +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"name","startOffset":20,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"twitter","startOffset":12,"endOffset":19,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":24,"startOffset":20,"name":"name","type":"Keyphrase"} +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 20 +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 24 +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"twitter","type":"Location"} +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 12 +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"name","startOffset":20,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"twitter","startOffset":12,"endOffset":19,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} +2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":24,"startOffset":20,"name":"name","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"twitter","type":"Location"}] +2023-10-27 13:57:21.973 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:57:21.973 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:57:21.984 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:21.984 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4cfd5052 +2023-10-27 13:57:21.984 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:21.988 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:21.988 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:21.988 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:22.002 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e0b4216 +2023-10-27 13:57:22.003 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:22.007 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:22.007 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:22.008 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:22.020 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 504 ms +2023-10-27 13:57:29.265 INFO 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:29.266 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:29.266 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:29.266 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@73b94164 +2023-10-27 13:57:29.292 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a5d9cf4 +2023-10-27 13:57:29.293 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:29.295 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:29.296 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:29.308 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 +2023-10-27 13:57:29.308 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql +2023-10-27 13:57:29.314 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many different colors can water take? +2023-10-27 13:57:29.314 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many different colors can water take? +2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"can water","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"can water","type":"Keyphrase"} +2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 26 +2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 35 +2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"can water","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:57:29.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"can water","type":"Keyphrase"}] +2023-10-27 13:57:29.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:57:29.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:57:29.873 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 +2023-10-27 13:57:29.874 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1b9ea62c +2023-10-27 13:57:29.874 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:57:29.880 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:29.881 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:29.881 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:29.894 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : processing took: 628 ms +2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4e34ae41 +2023-10-27 13:58:13.863 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f75963c +2023-10-27 13:58:13.864 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:13.867 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:13.867 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:13.880 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 +2023-10-27 13:58:13.881 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql +2023-10-27 13:58:13.883 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation how many plays has William Shakespeare written in the 16th century. +2023-10-27 13:58:13.884 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: how many plays has William Shakespeare written in the 16th century. +2023-10-27 13:58:14.340 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"William Shakespeare","startOffset":19,"endOffset":38,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"plays","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":38,"startOffset":19,"name":"William Shakespeare","type":"Person"} +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 38 +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"plays","type":"Keyphrase"} +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 9 +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"William Shakespeare","startOffset":19,"endOffset":38,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"plays","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":38,"startOffset":19,"name":"William Shakespeare","type":"Person"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"plays","type":"Keyphrase"}] +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:58:14.348 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 +2023-10-27 13:58:14.349 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@711e1299 +2023-10-27 13:58:14.349 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:14.351 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.351 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.351 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.357 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66419167 +2023-10-27 13:58:14.358 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:58:14.360 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.360 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.360 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.368 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 519 ms +2023-10-27 13:59:05.535 INFO 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:05.535 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:05.535 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:05.536 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@1dd59c1a +2023-10-27 13:59:05.544 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6211e910 +2023-10-27 13:59:05.545 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:05.547 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:05.547 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:05.556 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:05.556 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql +2023-10-27 13:59:05.558 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Was the first female chancellor in Germany ever married? +2023-10-27 13:59:05.558 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: Was the first female chancellor in Germany ever married? +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"female","startOffset":14,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Germany","startOffset":35,"endOffset":42,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":20,"startOffset":14,"name":"female","type":"Keyphrase"} +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 20 +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":42,"startOffset":35,"name":"Germany","type":"Location"} +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 35 +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 42 +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"female","startOffset":14,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Germany","startOffset":35,"endOffset":42,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":20,"startOffset":14,"name":"female","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":42,"startOffset":35,"name":"Germany","type":"Location"}] +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:59:05.993 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:05.993 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5457d4fd +2023-10-27 13:59:05.994 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:59:05.997 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:05.998 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:05.998 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.007 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d893393 +2023-10-27 13:59:06.007 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:59:06.009 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.009 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.009 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.019 DEBUG 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : processing took: 484 ms +2023-10-27 13:59:35.849 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:35.849 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:35.849 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:35.850 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@48ba88ee +2023-10-27 13:59:35.860 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c65c667 +2023-10-27 13:59:35.860 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:35.864 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:35.864 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:35.874 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 +2023-10-27 13:59:35.874 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql +2023-10-27 13:59:35.876 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:35.876 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"actresses","startOffset":12,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Actress","confidence":0.5}},{"name":"Portrait","startOffset":25,"endOffset":33,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6749999999999999,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Portrait","confidence":0.5}}]} +2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"actresses","startOffset":12,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Actress","confidence":0.5}},{"name":"Portrait","startOffset":25,"endOffset":33,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6749999999999999,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Portrait","confidence":0.5}}]} +2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Actress","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":21,"startOffset":12,"name":"actresses","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":0.6749999999999999,"inst":"http://data.ontotext.com/publishing/topic/Portrait","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":33,"startOffset":25,"name":"Portrait","type":"Keyphrase"}] +2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:59:36.397 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 548 ms +2023-10-27 13:59:47.608 INFO 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:47.609 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:47.611 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:47.612 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@26b9875c +2023-10-27 13:59:47.631 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22860753 +2023-10-27 13:59:47.631 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:47.633 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:47.633 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:47.640 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 13:59:47.640 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql +2023-10-27 13:59:47.642 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What are the professions of John Lennon’s sons? +2023-10-27 13:59:47.642 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: What are the professions of John Lennon’s sons? +2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"sons","startOffset":42,"endOffset":46,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"John Lennon","startOffset":28,"endOffset":39,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} +2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":46,"startOffset":42,"name":"sons","type":"Keyphrase"} +2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 42 +2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 46 +2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":39,"startOffset":28,"name":"John Lennon","type":"Person"} +2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 +2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 +2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"sons","startOffset":42,"endOffset":46,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"John Lennon","startOffset":28,"endOffset":39,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} +2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":46,"startOffset":42,"name":"sons","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":39,"startOffset":28,"name":"John Lennon","type":"Person"}] +2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 13:59:48.132 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 13:59:48.132 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26d4bcc6 +2023-10-27 13:59:48.132 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:59:48.133 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.134 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.134 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.140 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@610d205 +2023-10-27 13:59:48.140 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 13:59:48.141 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.142 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.142 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.149 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : processing took: 541 ms +2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@7e9d41e8 +2023-10-27 14:00:12.776 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2703b5ec +2023-10-27 14:00:12.776 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:12.777 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:12.777 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:12.786 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d +2023-10-27 14:00:12.786 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql +2023-10-27 14:00:12.788 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:12.788 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"fellow Hobbit","startOffset":12,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Fellow_hobbit","confidence":0.5}}]} +2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"fellow Hobbit","startOffset":12,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Fellow_hobbit","confidence":0.5}}]} +2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Fellow_hobbit","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":25,"startOffset":12,"name":"fellow Hobbit","type":"Keyphrase"}] +2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:00:13.266 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 499 ms +2023-10-27 14:00:20.278 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:20.279 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:20.279 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:20.279 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@422fec51 +2023-10-27 14:00:20.290 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ab556b +2023-10-27 14:00:20.291 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:20.291 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:20.291 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:20.299 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 +2023-10-27 14:00:20.299 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql +2023-10-27 14:00:20.300 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Through which countries does the Danube go? +2023-10-27 14:00:20.300 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: Through which countries does the Danube go? +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Danube","startOffset":33,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":33,"name":"Danube","type":"Location"} +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 33 +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"} +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 23 +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Danube","startOffset":33,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":33,"name":"Danube","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"}] +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:00:20.796 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 +2023-10-27 14:00:20.796 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20b2b614 +2023-10-27 14:00:20.797 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:00:20.799 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:20.799 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:20.799 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:20.807 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7e8460ea +2023-10-27 14:00:20.808 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:00:20.811 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:20.811 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:20.811 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:20.821 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 542 ms +2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@385fc364 +2023-10-27 14:00:30.417 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21d5f65 +2023-10-27 14:00:30.417 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:30.418 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:30.418 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:30.436 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:30.436 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql +2023-10-27 14:00:30.438 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which of the dragons in Game of Thrones died? +2023-10-27 14:00:30.438 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which of the dragons in Game of Thrones died? +2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"dragons","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Dragon","confidence":0.5}}]} +2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"dragons","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Dragon","confidence":0.5}}]} +2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Dragon","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":20,"startOffset":13,"name":"dragons","type":"Keyphrase"}] +2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:00:31.023 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : processing took: 615 ms +2023-10-27 14:01:10.515 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:10.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:10.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:10.516 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@77f0ee41 +2023-10-27 14:01:10.523 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21e985c4 +2023-10-27 14:01:10.523 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:01:10.524 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:10.524 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:10.532 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:10.532 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql +2023-10-27 14:01:10.534 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:10.534 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Italian national soccer team","startOffset":23,"endOffset":51,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/National_soccer_team","confidence":0.5}},{"name":"Fifa World Cup","startOffset":60,"endOffset":74,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":74,"startOffset":60,"name":"Fifa World Cup","type":"Keyphrase"} +2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 60 +2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 74 +2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Italian national soccer team","startOffset":23,"endOffset":51,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/National_soccer_team","confidence":0.5}},{"name":"Fifa World Cup","startOffset":60,"endOffset":74,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/National_soccer_team","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":51,"startOffset":23,"name":"Italian national soccer team","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":74,"startOffset":60,"name":"Fifa World Cup","type":"Keyphrase"}] +2023-10-27 14:01:11.661 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:01:11.661 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:01:11.667 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:11.667 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@81994d6 +2023-10-27 14:01:11.668 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:01:11.669 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:11.669 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:11.669 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:11.675 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 1160 ms +2023-10-27 14:02:29.820 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:29.820 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:29.820 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:29.821 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@72b99276 +2023-10-27 14:02:29.830 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@177a336 +2023-10-27 14:02:29.831 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:29.832 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:29.833 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:29.840 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:29.840 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql +2023-10-27 14:02:29.842 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who founded the Worpswede artist colony ? +2023-10-27 14:02:29.842 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who founded the Worpswede artist colony ? +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Worpswede artist colony","startOffset":16,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":16,"name":"Worpswede artist colony","type":"Location"} +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 16 +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Worpswede artist colony","startOffset":16,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":16,"name":"Worpswede artist colony","type":"Location"}] +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:02:30.380 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:30.381 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45184bfe +2023-10-27 14:02:30.382 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:02:30.383 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.383 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.383 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.390 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 570 ms +2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@66d6b737 +2023-10-27 14:06:00.991 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cd9874 +2023-10-27 14:06:00.993 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:00.995 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:00.995 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:01.006 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:01.006 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql +2023-10-27 14:06:01.010 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many poems did Allen Ginsberg published? +2023-10-27 14:06:01.010 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many poems did Allen Ginsberg published? +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"poems","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Allen Ginsberg","startOffset":19,"endOffset":33,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"poems","type":"Keyphrase"} +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 9 +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":33,"startOffset":19,"name":"Allen Ginsberg","type":"Person"} +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 33 +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"poems","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Allen Ginsberg","startOffset":19,"endOffset":33,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"poems","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":33,"startOffset":19,"name":"Allen Ginsberg","type":"Person"}] +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:06:01.572 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:01.572 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@570c7366 +2023-10-27 14:06:01.573 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:06:01.575 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:01.576 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:01.576 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:01.582 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63abe20e +2023-10-27 14:06:01.582 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:06:01.584 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:01.584 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:01.584 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:01.589 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : processing took: 634 ms +2023-10-27 14:06:42.317 INFO 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:42.317 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:42.317 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:42.318 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@50218651 +2023-10-27 14:06:42.324 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d624bad +2023-10-27 14:06:42.325 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:42.325 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:42.325 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:42.349 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:42.349 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql +2023-10-27 14:06:42.351 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:42.351 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Dinosaurs","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"creator","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"Dinosaurs","type":"Keyphrase"} +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 26 +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 35 +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Dinosaurs","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"creator","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"Dinosaurs","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":18,"startOffset":11,"name":"creator","type":"Keyphrase"}] +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:06:42.828 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:42.828 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4f6c55bb +2023-10-27 14:06:42.828 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:06:42.829 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:42.830 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:42.830 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:42.835 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : processing took: 518 ms +2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@70474114 +2023-10-27 14:07:15.531 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1012ea84 +2023-10-27 14:07:15.531 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:15.532 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:15.532 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:15.540 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:15.540 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql +2023-10-27 14:07:15.541 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:15.541 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"} +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 21 +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 34 +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"}] +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:07:15.940 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:15.940 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51b57a6f +2023-10-27 14:07:15.940 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:15.944 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:15.944 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:15.944 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:15.951 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 428 ms +2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4c35379a +2023-10-27 14:07:33.026 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b396c82 +2023-10-27 14:07:33.026 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:33.027 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:33.027 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:33.033 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 +2023-10-27 14:07:33.033 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql +2023-10-27 14:07:33.035 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:33.035 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:33.455 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Isfahan","startOffset":18,"endOffset":25,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"population","startOffset":4,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:07:33.455 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":25,"startOffset":18,"name":"Isfahan","type":"Location"} +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 18 +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 25 +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":4,"name":"population","type":"Keyphrase"} +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 4 +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Isfahan","startOffset":18,"endOffset":25,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"population","startOffset":4,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":25,"startOffset":18,"name":"Isfahan","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":4,"name":"population","type":"Keyphrase"}] +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:07:33.460 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 +2023-10-27 14:07:33.460 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@212b205e +2023-10-27 14:07:33.460 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:33.462 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.462 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.462 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.469 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26928d49 +2023-10-27 14:07:33.469 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:33.470 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.471 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.471 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.476 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 457 ms +2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@28618021 +2023-10-27 14:07:34.709 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@238f8fc7 +2023-10-27 14:07:34.709 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:34.710 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:34.710 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:34.716 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:34.717 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql +2023-10-27 14:07:34.718 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:34.718 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Reinhold Messner","startOffset":12,"endOffset":28,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"brothers","startOffset":31,"endOffset":39,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":28,"startOffset":12,"name":"Reinhold Messner","type":"Person"} +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 12 +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":39,"startOffset":31,"name":"brothers","type":"Keyphrase"} +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 31 +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Reinhold Messner","startOffset":12,"endOffset":28,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"brothers","startOffset":31,"endOffset":39,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":28,"startOffset":12,"name":"Reinhold Messner","type":"Person"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":39,"startOffset":31,"name":"brothers","type":"Keyphrase"}] +2023-10-27 14:07:35.257 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:07:35.257 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:07:35.262 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:35.262 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b831e1b +2023-10-27 14:07:35.262 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:35.264 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.265 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.265 DEBUG 28728 --- [nio-8096-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.273 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51b2dba0 +2023-10-27 14:07:35.274 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:07:35.276 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.276 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.276 DEBUG 28728 --- [nio-8096-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.286 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : processing took: 585 ms +2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@31293b04 +2023-10-27 14:08:16.427 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@426a2f68 +2023-10-27 14:08:16.427 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:16.428 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:16.428 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:16.441 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 +2023-10-27 14:08:16.441 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql +2023-10-27 14:08:16.443 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Where was Roland Corporation founded? +2023-10-27 14:08:16.443 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: Where was Roland Corporation founded? +2023-10-27 14:08:16.931 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Roland Corporation","startOffset":10,"endOffset":28,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} +2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":28,"startOffset":10,"name":"Roland Corporation","type":"Organization"} +2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 10 +2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 +2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Roland Corporation","startOffset":10,"endOffset":28,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} +2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":28,"startOffset":10,"name":"Roland Corporation","type":"Organization"}] +2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:08:16.939 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 +2023-10-27 14:08:16.940 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55214e22 +2023-10-27 14:08:16.940 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:16.941 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:16.942 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:16.942 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:16.947 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 531 ms +2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@6950fb24 +2023-10-27 14:08:23.699 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ab01814 +2023-10-27 14:08:23.699 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:23.700 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:23.701 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:23.713 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:23.713 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql +2023-10-27 14:08:23.715 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:23.715 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:24.138 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:08:24.138 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"} +2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 21 +2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 34 +2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} +2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"}] +2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:08:24.283 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:24.283 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@77690f0e +2023-10-27 14:08:24.283 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) +} +2023-10-27 14:08:24.285 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.286 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.286 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:hasBody . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.294 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : processing took: 608 ms +2023-10-27 14:09:10.183 INFO 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:10.186 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:10.186 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:10.186 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@3f209e34 +2023-10-27 14:09:10.199 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30a28647 +2023-10-27 14:09:10.199 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:10.201 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:10.201 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:10.210 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 +2023-10-27 14:09:10.210 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql +2023-10-27 14:09:10.212 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:10.212 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"piece","startOffset":22,"endOffset":27,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6779661016949152,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Piece","confidence":0.5}},{"name":"samurai champloo","startOffset":3,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Samurai_champloo","confidence":0.5}}]} +2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"piece","startOffset":22,"endOffset":27,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6779661016949152,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Piece","confidence":0.5}},{"name":"samurai champloo","startOffset":3,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Samurai_champloo","confidence":0.5}}]} +2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":0.6779661016949152,"inst":"http://data.ontotext.com/publishing/topic/Piece","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":27,"startOffset":22,"name":"piece","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Samurai_champloo","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":19,"startOffset":3,"name":"samurai champloo","type":"Keyphrase"}] +2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:09:10.781 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : processing took: 596 ms +2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@1275ee59 +2023-10-27 14:09:12.715 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46c6e5d +2023-10-27 14:09:12.716 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:12.716 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:12.716 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:12.725 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 +2023-10-27 14:09:12.725 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql +2023-10-27 14:09:12.727 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation when was the creator of saturday night live born? +2023-10-27 14:09:12.727 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: when was the creator of saturday night live born? +2023-10-27 14:09:13.268 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"creator","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} +2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"creator","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} +2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":20,"startOffset":13,"name":"creator","type":"Keyphrase"}] +2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:09:13.269 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 561 ms +2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4e602205 +2023-10-27 14:10:26.724 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7130cc63 +2023-10-27 14:10:26.724 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:26.725 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:26.725 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:26.732 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb +2023-10-27 14:10:26.732 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql +2023-10-27 14:10:26.734 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which creator of The OA also acted in it? +2023-10-27 14:10:26.734 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which creator of The OA also acted in it? +2023-10-27 14:10:27.220 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"creator","startOffset":6,"endOffset":13,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}},{"name":"OA","startOffset":21,"endOffset":23,"type":"Organization","features":{"isGenerated":"true","relevanceScore":0.5714285714285714,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"false","confidence":0.8675383808431975,"inst":"http://data.ontotext.com/publishing/organization/OA"}}]} +2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"creator","startOffset":6,"endOffset":13,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}},{"name":"OA","startOffset":21,"endOffset":23,"type":"Organization","features":{"isGenerated":"true","relevanceScore":0.5714285714285714,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"false","confidence":0.8675383808431975,"inst":"http://data.ontotext.com/publishing/organization/OA"}}]} +2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":13,"startOffset":6,"name":"creator","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":0.5714285714285714,"confidence":0.8675383808431975,"inst":"http://data.ontotext.com/publishing/organization/OA","class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"false"},"endOffset":23,"startOffset":21,"name":"OA","type":"Organization"}] +2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null +2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph +2023-10-27 14:10:27.221 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : processing took: 510 ms diff --git a/qanary-component-NED-Tagme/nohup.out b/qanary-component-NED-Tagme/nohup.out new file mode 100644 index 000000000..51005bef7 --- /dev/null +++ b/qanary-component-NED-Tagme/nohup.out @@ -0,0 +1,4473 @@ +Error: Unable to access jarfile target/*.jar + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNED -- TagmeNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:01:32.632  INFO 7850 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 7850 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) +2023-10-27 12:01:32.638 DEBUG 7850 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:01:32.640  INFO 7850 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:01:39.884  INFO 7850 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 +2023-10-27 12:01:39.999  INFO 7850 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 +2023-10-27 12:01:40.000  INFO 7850 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 +2023-10-27 12:01:40.010  INFO 7850 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8092 +spring.application.name = TagmeNED +spring.application.description = TagmeNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:01:40.050  INFO 7850 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl +2023-10-27 12:01:41.548  WARN 7850 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:01:41.653  WARN 7850 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:01:41.911  WARN 7850 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:01:41.976  INFO 7850 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:01:44.338  INFO 7850 --- [ main] e.w.q.component.tagme.ned.Application  : Started Application in 13.515 seconds (JVM running for 15.641) +2023-10-27 12:01:44.746  WARN 7850 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:01:54.578  INFO 7850 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 40f23396d00b + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNED -- TagmeNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:21.623  INFO 9647 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 9647 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) +2023-10-27 12:09:21.655 DEBUG 9647 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:21.662  INFO 9647 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:40.576  INFO 9647 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76ba13c +2023-10-27 12:09:40.781  INFO 9647 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fd4acee +2023-10-27 12:09:40.788  INFO 9647 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@6175619b +2023-10-27 12:09:40.835  INFO 9647 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8092 +spring.application.name = TagmeNED +spring.application.description = TagmeNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:40.973  INFO 9647 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl +2023-10-27 12:09:44.207  WARN 9647 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:44.432  WARN 9647 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:44.904  WARN 9647 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:45.033  INFO 9647 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:09:53.371  INFO 9647 --- [ main] e.w.q.component.tagme.ned.Application  : Started Application in 36.392 seconds (JVM running for 42.482) +2023-10-27 12:09:54.406  WARN 9647 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:13.490  INFO 9647 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 40f23396d00b + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNED -- TagmeNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:50.782  INFO 11760 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 11760 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) +2023-10-27 12:15:50.789 DEBUG 11760 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:50.790  INFO 11760 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:19.264  INFO 11760 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 +2023-10-27 12:16:19.669  INFO 11760 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 +2023-10-27 12:16:19.671  INFO 11760 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 +2023-10-27 12:16:19.710  INFO 11760 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8092 +spring.application.name = TagmeNED +spring.application.description = TagmeNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:19.920  INFO 11760 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl +2023-10-27 12:16:26.038  WARN 11760 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:26.641  WARN 11760 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:27.893  WARN 11760 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:28.004  INFO 11760 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:16:38.427  WARN 11760 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8092 is already in use +2023-10-27 12:16:39.190 ERROR 11760 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8092 was already in use. + +Action: + +Identify and stop the process that's listening on port 8092 or configure this application to listen on another port. + +2023-10-27 13:37:23.457  WARN 9647 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNED -- TagmeNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:48.407  INFO 28727 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 28727 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) +2023-10-27 13:37:48.438 DEBUG 28727 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:48.439  INFO 28727 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:09.769  INFO 28727 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 +2023-10-27 13:38:09.973  INFO 28727 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 +2023-10-27 13:38:10.009  INFO 28727 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 +2023-10-27 13:38:10.073  INFO 28727 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8092 +spring.application.name = TagmeNED +spring.application.description = TagmeNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:10.263  INFO 28727 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl +2023-10-27 13:38:15.532  WARN 28727 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:15.843  WARN 28727 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:16.515  WARN 28727 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:16.546  INFO 28727 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:38:27.167  INFO 28727 --- [ main] e.w.q.component.tagme.ned.Application  : Started Application in 43.703 seconds (JVM running for 49.958) +2023-10-27 13:38:28.388  WARN 28727 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 13:38:47.619  INFO 28727 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 40f23396d00b + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNED -- TagmeNED is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:52.388  INFO 30118 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 30118 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) +2023-10-27 13:38:52.394 DEBUG 30118 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:52.395  INFO 30118 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:12.776  INFO 30118 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 +2023-10-27 13:39:13.021  INFO 30118 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 +2023-10-27 13:39:13.023  INFO 30118 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 +2023-10-27 13:39:13.035  INFO 30118 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8092 +spring.application.name = TagmeNED +spring.application.description = TagmeNED is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:13.073  INFO 30118 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl +2023-10-27 13:39:16.256  WARN 30118 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:16.500  WARN 30118 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:16.914  WARN 30118 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:16.953  INFO 30118 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:39:25.466  WARN 30118 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8092 is already in use +2023-10-27 13:39:26.021 ERROR 30118 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8092 was already in use. + +Action: + +Identify and stop the process that's listening on port 8092 or configure this application to listen on another port. + +2023-10-27 13:51:59.859  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"} +2023-10-27 13:51:59.869  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"} +2023-10-27 13:51:59.975  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"},"inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"} +2023-10-27 13:52:00.132  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3df3425e +2023-10-27 13:52:00.239  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6de18420 +2023-10-27 13:52:00.275 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:00.649  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:00.650  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:00.954 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_287f9844-108b-4779-bb7b-a4f2ec0013b1 +2023-10-27 13:52:00.954  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_287f9844-108b-4779-bb7b-a4f2ec0013b1 found in urn:graph:1237a227-0e9e-436a-a1ca-984017429395 at http://localhost:8080/sparql +2023-10-27 13:52:00.993 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does the ATI Company still exist? +2023-10-27 13:52:00.994  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Does the ATI Company still exist? +2023-10-27 13:52:00.994  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Does the ATI Company still exist? +2023-10-27 13:52:00.996  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Does+the+ATI+Company+still+exist%3F +2023-10-27 13:52:01.013  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Does+the+ATI+Company+still+exist%3F +2023-10-27 13:52:01.846  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"ATI","start":9,"link_probability":0.24807527661323547,"rho":0.3229750096797943,"end":12,"id":2400,"title":"Advanced Micro Devices"},{"spot":"Company","start":13,"link_probability":0.008127721026539803,"rho":0.1542670577764511,"end":20,"id":4918223,"title":"Company"},{"spot":"still","start":21,"link_probability":0.0010785296326503158,"rho":0.18633651733398438,"end":26,"id":52797,"title":"Digital camera"}],"time":15,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:01"} +2023-10-27 13:52:01.847  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Advanced_Micro_Devices at (9,13) with probability 0.24807527661323547 +2023-10-27 13:52:01.850 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"ATI","start":9,"link_probability":0.24807527661323547,"rho":0.3229750096797943,"end":12,"id":2400,"title":"Advanced Micro Devices"} +2023-10-27 13:52:01.850  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.24807527661323547 < 0.25) for http://dbpedia.org/resource/Advanced_Micro_Devices +2023-10-27 13:52:01.851  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Company at (13,21) with probability 0.008127721026539803 +2023-10-27 13:52:01.851 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Company","start":13,"link_probability":0.008127721026539803,"rho":0.1542670577764511,"end":20,"id":4918223,"title":"Company"} +2023-10-27 13:52:01.851  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.008127721026539803 < 0.25) for http://dbpedia.org/resource/Company +2023-10-27 13:52:01.851  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Digital_camera at (21,27) with probability 0.0010785296326503158 +2023-10-27 13:52:01.851 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"still","start":21,"link_probability":0.0010785296326503158,"rho":0.18633651733398438,"end":26,"id":52797,"title":"Digital camera"} +2023-10-27 13:52:01.851  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0010785296326503158 < 0.25) for http://dbpedia.org/resource/Digital_camera +2023-10-27 13:52:01.851  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:01.851  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:01.851 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : processing took: 1984 ms +2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"} +2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"} +2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"},"inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"} +2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5a42d48c +2023-10-27 13:52:04.288  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@548521b4 +2023-10-27 13:52:04.289 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:04.292  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:04.294  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:04.303 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a77cdadb-26cb-4c6a-a71a-9d302b7da275 +2023-10-27 13:52:04.304  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a77cdadb-26cb-4c6a-a71a-9d302b7da275 found in urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3 at http://localhost:8080/sparql +2023-10-27 13:52:04.306 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? +2023-10-27 13:52:04.307  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many female Chinese Empresses have there been? +2023-10-27 13:52:04.307  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many female Chinese Empresses have there been? +2023-10-27 13:52:04.307  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+female+Chinese+Empresses+have+there+been%3F +2023-10-27 13:52:04.308  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+female+Chinese+Empresses+have+there+been%3F +2023-10-27 13:52:04.760  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"female","start":9,"link_probability":0.006207597441971302,"rho":0.058314092457294464,"end":15,"id":33183,"title":"Woman"},{"spot":"Chinese","start":16,"link_probability":0.20171232521533966,"rho":0.27631738781929016,"end":23,"id":5760,"title":"History of China"},{"spot":"Empresses","start":24,"link_probability":0.010126582346856594,"rho":0.12531423568725586,"end":33,"id":3618690}],"time":23,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:04"} +2023-10-27 13:52:04.761  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Woman at (9,16) with probability 0.006207597441971302 +2023-10-27 13:52:04.761 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"female","start":9,"link_probability":0.006207597441971302,"rho":0.058314092457294464,"end":15,"id":33183,"title":"Woman"} +2023-10-27 13:52:04.761  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006207597441971302 < 0.25) for http://dbpedia.org/resource/Woman +2023-10-27 13:52:04.761  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/History_of_China at (16,24) with probability 0.20171232521533966 +2023-10-27 13:52:04.761 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chinese","start":16,"link_probability":0.20171232521533966,"rho":0.27631738781929016,"end":23,"id":5760,"title":"History of China"} +2023-10-27 13:52:04.761  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.20171232521533966 < 0.25) for http://dbpedia.org/resource/History_of_China +2023-10-27 13:52:04.782 ERROR 28727 --- [nio-8092-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.json.JSONException: JSONObject["title"] not found.] with root cause + +org.json.JSONException: JSONObject["title"] not found. + at org.json.JSONObject.get(JSONObject.java:570) ~[json-20230227.jar!/:na] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.retrieveDataFromWebService(TagmeNED.java:143) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:88) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:52:05.520  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"} +2023-10-27 13:52:05.520  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"} +2023-10-27 13:52:05.520  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"},"inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"} +2023-10-27 13:52:05.521  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@505c246a +2023-10-27 13:52:05.529  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e9bc011 +2023-10-27 13:52:05.530 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:05.531  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:05.532  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:05.540 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d3145cb-f8da-48eb-af0c-ec7c012390af +2023-10-27 13:52:05.540  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d3145cb-f8da-48eb-af0c-ec7c012390af found in urn:graph:98eb4aba-bd29-4792-977f-7daf47391833 at http://localhost:8080/sparql +2023-10-27 13:52:05.544 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded “The Blue Rider”? +2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Who founded “The Blue Rider”? +2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question Who founded “The Blue Rider”? +2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path Who+founded+%E2%80%9CThe+Blue+Rider%E2%80%9D%3F +2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Who+founded+%E2%80%9CThe+Blue+Rider%E2%80%9D%3F +2023-10-27 13:52:05.849  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.001720538828521967,"end":3,"id":36517,"title":"The Who"},{"spot":"Blue Rider","start":17,"link_probability":0.1894736886024475,"rho":0.09473684430122375,"end":27,"id":621334,"title":"Der Blaue Reiter"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:05"} +2023-10-27 13:52:05.849  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Who at (0,4) with probability 0.003441077657043934 +2023-10-27 13:52:05.849 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.001720538828521967,"end":3,"id":36517,"title":"The Who"} +2023-10-27 13:52:05.849  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003441077657043934 < 0.25) for http://dbpedia.org/resource/The_Who +2023-10-27 13:52:05.850  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Der_Blaue_Reiter at (17,28) with probability 0.1894736886024475 +2023-10-27 13:52:05.850 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Blue Rider","start":17,"link_probability":0.1894736886024475,"rho":0.09473684430122375,"end":27,"id":621334,"title":"Der Blaue Reiter"} +2023-10-27 13:52:05.850  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.1894736886024475 < 0.25) for http://dbpedia.org/resource/Der_Blaue_Reiter +2023-10-27 13:52:05.850  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:05.850  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:05.850 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : processing took: 330 ms +2023-10-27 13:52:07.503  INFO 28727 --- [nio-8092-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"} +2023-10-27 13:52:07.504  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"} +2023-10-27 13:52:07.504  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"},"inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"} +2023-10-27 13:52:07.504  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7cd6ab11 +2023-10-27 13:52:07.514  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72114afb +2023-10-27 13:52:07.514 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:07.516  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:07.516  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:07.528 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5d26d172-f706-4d9c-a379-4409f55d4001 +2023-10-27 13:52:07.528  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5d26d172-f706-4d9c-a379-4409f55d4001 found in urn:graph:94933918-2f59-41a2-bb88-fdf83e189013 at http://localhost:8080/sparql +2023-10-27 13:52:07.531 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who wrote the poem Howl ? +2023-10-27 13:52:07.531  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Who wrote the poem Howl ? +2023-10-27 13:52:07.531  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question Who wrote the poem Howl ? +2023-10-27 13:52:07.531  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Path Who+wrote+the+poem+Howl+%3F +2023-10-27 13:52:07.532  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Who+wrote+the+poem+Howl+%3F +2023-10-27 13:52:07.806  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.09884143620729446,"end":3,"id":36517,"title":"The Who"},{"spot":"poem","start":14,"link_probability":0.031330473721027374,"rho":0.1457822322845459,"end":18,"id":22926,"title":"Poetry"},{"spot":"Howl","start":19,"link_probability":0.2416943460702896,"rho":0.313016802072525,"end":23,"id":158051,"title":"Howl"}],"time":7,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:07"} +2023-10-27 13:52:07.807  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Who at (0,4) with probability 0.003441077657043934 +2023-10-27 13:52:07.807 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.09884143620729446,"end":3,"id":36517,"title":"The Who"} +2023-10-27 13:52:07.807  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003441077657043934 < 0.25) for http://dbpedia.org/resource/The_Who +2023-10-27 13:52:07.807  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Poetry at (14,19) with probability 0.031330473721027374 +2023-10-27 13:52:07.807 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"poem","start":14,"link_probability":0.031330473721027374,"rho":0.1457822322845459,"end":18,"id":22926,"title":"Poetry"} +2023-10-27 13:52:07.807  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.031330473721027374 < 0.25) for http://dbpedia.org/resource/Poetry +2023-10-27 13:52:07.807  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Howl at (19,24) with probability 0.2416943460702896 +2023-10-27 13:52:07.807 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Howl","start":19,"link_probability":0.2416943460702896,"rho":0.313016802072525,"end":23,"id":158051,"title":"Howl"} +2023-10-27 13:52:07.808  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.2416943460702896 < 0.25) for http://dbpedia.org/resource/Howl +2023-10-27 13:52:07.808  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:07.808  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:07.808 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.component.QanaryServiceController  : processing took: 304 ms +2023-10-27 13:52:09.276  INFO 28727 --- [nio-8092-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"} +2023-10-27 13:52:09.277  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"} +2023-10-27 13:52:09.277  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"},"inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"} +2023-10-27 13:52:09.277  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5fd3a63e +2023-10-27 13:52:09.292  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@511453b4 +2023-10-27 13:52:09.292 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:09.293  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:09.294  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:09.320 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_005a5973-7f1a-4b40-90dc-661a0d981e0c +2023-10-27 13:52:09.321  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_005a5973-7f1a-4b40-90dc-661a0d981e0c found in urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2 at http://localhost:8080/sparql +2023-10-27 13:52:09.323 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How high is the mountain on which Günther Messner died? +2023-10-27 13:52:09.323  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How high is the mountain on which Günther Messner died? +2023-10-27 13:52:09.323  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question How high is the mountain on which Günther Messner died? +2023-10-27 13:52:09.323  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+high+is+the+mountain+on+which+G%C3%BCnther+Messner+died%3F +2023-10-27 13:52:09.324  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+high+is+the+mountain+on+which+G%C3%BCnther+Messner+died%3F +2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"How high","start":0,"link_probability":0.12693935632705688,"rho":0.06346967816352844,"end":8,"id":1373922,"title":"How High"},{"spot":"mountain","start":16,"link_probability":0.05517559498548508,"rho":0.02758779749274254,"end":24,"id":37754,"title":"Mountain"},{"spot":"Günther Messner","start":34,"link_probability":1,"rho":0.5,"end":49,"id":32054390,"title":"Günther Messner"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:09"} +2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/How_High at (0,9) with probability 0.12693935632705688 +2023-10-27 13:52:09.647 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"How high","start":0,"link_probability":0.12693935632705688,"rho":0.06346967816352844,"end":8,"id":1373922,"title":"How High"} +2023-10-27 13:52:09.647  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.12693935632705688 < 0.25) for http://dbpedia.org/resource/How_High +2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Mountain at (16,25) with probability 0.05517559498548508 +2023-10-27 13:52:09.647 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"mountain","start":16,"link_probability":0.05517559498548508,"rho":0.02758779749274254,"end":24,"id":37754,"title":"Mountain"} +2023-10-27 13:52:09.647  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.05517559498548508 < 0.25) for http://dbpedia.org/resource/Mountain +2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Günther_Messner at (34,50) with probability 1.0 +2023-10-27 13:52:09.647 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Günther Messner","start":34,"link_probability":1,"rho":0.5,"end":49,"id":32054390,"title":"Günther Messner"} +2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Günther_Messner +2023-10-27 13:52:09.647  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:09.648  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:09.654 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_005a5973-7f1a-4b40-90dc-661a0d981e0c +2023-10-27 13:52:09.657  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1eef629f +2023-10-27 13:52:09.657 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:52:09.684 ERROR 28727 --- [nio-8092-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:52:13.948  INFO 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"} +2023-10-27 13:52:13.949  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"} +2023-10-27 13:52:13.949  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"},"inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"} +2023-10-27 13:52:13.949  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6fce2b64 +2023-10-27 13:52:13.965  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6109d8ed +2023-10-27 13:52:13.965 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:13.966  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:13.966  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:13.974 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fd16c4c4-77be-4bf1-b707-c7368e12b447 +2023-10-27 13:52:13.975  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fd16c4c4-77be-4bf1-b707-c7368e12b447 found in urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b at http://localhost:8080/sparql +2023-10-27 13:52:13.978 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 13:52:13.978  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many countries have never been members of the UN? +2023-10-27 13:52:13.978  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many countries have never been members of the UN? +2023-10-27 13:52:13.978  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+countries+have+never+been+members+of+the+UN%3F +2023-10-27 13:52:13.979  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+countries+have+never+been+members+of+the+UN%3F +2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"countries","start":9,"link_probability":0.004253060091286898,"rho":0.1980702430009842,"end":18,"id":2554950,"title":"Constituent country"},{"spot":"members","start":35,"link_probability":0.0018897185800597072,"rho":0.20980794727802277,"end":42,"id":82242,"title":"Unrepresented Nations and Peoples Organization"},{"spot":"UN","start":50,"link_probability":0.05032071843743324,"rho":0.21639645099639893,"end":52,"id":31769,"title":"United Nations"}],"time":28,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:14"} +2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Constituent_country at (9,19) with probability 0.004253060091286898 +2023-10-27 13:52:14.289 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"countries","start":9,"link_probability":0.004253060091286898,"rho":0.1980702430009842,"end":18,"id":2554950,"title":"Constituent country"} +2023-10-27 13:52:14.289  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.004253060091286898 < 0.25) for http://dbpedia.org/resource/Constituent_country +2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Unrepresented_Nations_and_Peoples_Organization at (35,43) with probability 0.0018897185800597072 +2023-10-27 13:52:14.289 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"members","start":35,"link_probability":0.0018897185800597072,"rho":0.20980794727802277,"end":42,"id":82242,"title":"Unrepresented Nations and Peoples Organization"} +2023-10-27 13:52:14.289  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0018897185800597072 < 0.25) for http://dbpedia.org/resource/Unrepresented_Nations_and_Peoples_Organization +2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/United_Nations at (50,53) with probability 0.05032071843743324 +2023-10-27 13:52:14.289 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"UN","start":50,"link_probability":0.05032071843743324,"rho":0.21639645099639893,"end":52,"id":31769,"title":"United Nations"} +2023-10-27 13:52:14.290  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.05032071843743324 < 0.25) for http://dbpedia.org/resource/United_Nations +2023-10-27 13:52:14.290  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:14.290  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:14.290 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : processing took: 341 ms +2023-10-27 13:52:17.287  INFO 28727 --- [io-8092-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"} +2023-10-27 13:52:17.288  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"} +2023-10-27 13:52:17.288  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"},"inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"} +2023-10-27 13:52:17.288  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3482d5b6 +2023-10-27 13:52:17.297  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a453d56 +2023-10-27 13:52:17.297 DEBUG 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:17.298  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:17.299  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:17.306 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6bd81410-ae07-44ee-810d-efbb461a036b +2023-10-27 13:52:17.306  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6bd81410-ae07-44ee-810d-efbb461a036b found in urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8 at http://localhost:8080/sparql +2023-10-27 13:52:17.310 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Chinese zodiac animals are there in total? +2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many Chinese zodiac animals are there in total? +2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many Chinese zodiac animals are there in total? +2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+Chinese+zodiac+animals+are+there+in+total%3F +2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+Chinese+zodiac+animals+are+there+in+total%3F +2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Chinese","start":9,"link_probability":0.20171232521533966,"rho":0.2247929871082306,"end":16,"id":156154,"title":"Chinese culture"},{"spot":"Chinese zodiac","start":9,"link_probability":0.1300448477268219,"rho":0.23730607330799103,"end":23,"id":159669,"title":"Chinese astrology"},{"spot":"zodiac","start":17,"link_probability":0.4333810806274414,"rho":0.35270795226097107,"end":23,"id":34411,"title":"Zodiac"},{"spot":"animals","start":24,"link_probability":0.019724231213331223,"rho":0.009862115606665611,"end":31,"id":10008194,"title":"The Animals (American album)"},{"spot":"total","start":45,"link_probability":0.0019201644463464618,"rho":0.0009600822231732309,"end":50,"id":5387604,"title":"Fish measurement"}],"time":111,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:17"} +2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Chinese_culture at (9,17) with probability 0.20171232521533966 +2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chinese","start":9,"link_probability":0.20171232521533966,"rho":0.2247929871082306,"end":16,"id":156154,"title":"Chinese culture"} +2023-10-27 13:52:17.815  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.20171232521533966 < 0.25) for http://dbpedia.org/resource/Chinese_culture +2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Chinese_astrology at (9,24) with probability 0.1300448477268219 +2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chinese zodiac","start":9,"link_probability":0.1300448477268219,"rho":0.23730607330799103,"end":23,"id":159669,"title":"Chinese astrology"} +2023-10-27 13:52:17.815  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.1300448477268219 < 0.25) for http://dbpedia.org/resource/Chinese_astrology +2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Zodiac at (17,24) with probability 0.4333810806274414 +2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"zodiac","start":17,"link_probability":0.4333810806274414,"rho":0.35270795226097107,"end":23,"id":34411,"title":"Zodiac"} +2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Zodiac +2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Animals_(American_album) at (24,32) with probability 0.019724231213331223 +2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"animals","start":24,"link_probability":0.019724231213331223,"rho":0.009862115606665611,"end":31,"id":10008194,"title":"The Animals (American album)"} +2023-10-27 13:52:17.815  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.019724231213331223 < 0.25) for http://dbpedia.org/resource/The_Animals_(American_album) +2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Fish_measurement at (45,51) with probability 0.0019201644463464618 +2023-10-27 13:52:17.816 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"total","start":45,"link_probability":0.0019201644463464618,"rho":0.0009600822231732309,"end":50,"id":5387604,"title":"Fish measurement"} +2023-10-27 13:52:17.816  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0019201644463464618 < 0.25) for http://dbpedia.org/resource/Fish_measurement +2023-10-27 13:52:17.816  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:17.816  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:17.822 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6bd81410-ae07-44ee-810d-efbb461a036b +2023-10-27 13:52:17.823  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f9985a1 +2023-10-27 13:52:17.824 DEBUG 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:52:17.828 ERROR 28727 --- [io-8092-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"} +2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"} +2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"},"inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"} +2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9ea811a +2023-10-27 13:52:24.722  INFO 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@139f8459 +2023-10-27 13:52:24.723 DEBUG 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:24.724  INFO 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:24.725  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:24.732 DEBUG 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_318a8b3f-f549-4e42-b7b0-5d9232246b6a +2023-10-27 13:52:24.732  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_318a8b3f-f549-4e42-b7b0-5d9232246b6a found in urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e at http://localhost:8080/sparql +2023-10-27 13:52:24.734 DEBUG 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 13:52:24.734  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 13:52:24.734  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Question Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 13:52:24.734  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Path Did+the+Chicago+Bulls+win+at+least+two+seasons+of+the+NBA+championship%3F +2023-10-27 13:52:24.735  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Did+the+Chicago+Bulls+win+at+least+two+seasons+of+the+NBA+championship%3F +2023-10-27 13:52:25.040  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Chicago Bulls","start":8,"link_probability":1,"rho":0.6962894797325134,"end":21,"id":72866,"title":"Chicago Bulls"},{"spot":"win","start":22,"link_probability":0.0032746954821050167,"rho":0.13843336701393127,"end":25,"id":2514586,"title":"Winning percentage"},{"spot":"seasons","start":39,"link_probability":0.00417748000472784,"rho":0.00208874000236392,"end":46,"id":19508643,"title":"Television program"},{"spot":"NBA championship","start":54,"link_probability":0.3371356129646301,"rho":0.3814297020435333,"end":70,"id":890793,"title":"NBA Finals"}],"time":37,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:25"} +2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Chicago_Bulls at (8,22) with probability 1.0 +2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chicago Bulls","start":8,"link_probability":1,"rho":0.6962894797325134,"end":21,"id":72866,"title":"Chicago Bulls"} +2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Chicago_Bulls +2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Winning_percentage at (22,26) with probability 0.0032746954821050167 +2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"win","start":22,"link_probability":0.0032746954821050167,"rho":0.13843336701393127,"end":25,"id":2514586,"title":"Winning percentage"} +2023-10-27 13:52:25.041  WARN 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0032746954821050167 < 0.25) for http://dbpedia.org/resource/Winning_percentage +2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Television_program at (39,47) with probability 0.00417748000472784 +2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"seasons","start":39,"link_probability":0.00417748000472784,"rho":0.00208874000236392,"end":46,"id":19508643,"title":"Television program"} +2023-10-27 13:52:25.041  WARN 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.00417748000472784 < 0.25) for http://dbpedia.org/resource/Television_program +2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/NBA_Finals at (54,71) with probability 0.3371356129646301 +2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"NBA championship","start":54,"link_probability":0.3371356129646301,"rho":0.3814297020435333,"end":70,"id":890793,"title":"NBA Finals"} +2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/NBA_Finals +2023-10-27 13:52:25.042  WARN 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:25.042  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:25.048 DEBUG 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_318a8b3f-f549-4e42-b7b0-5d9232246b6a +2023-10-27 13:52:25.048  INFO 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26054b4b +2023-10-27 13:52:25.049 DEBUG 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:52:25.051 ERROR 28727 --- [nio-8092-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:52:32.668  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"} +2023-10-27 13:52:32.669  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"} +2023-10-27 13:52:32.669  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"},"inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"} +2023-10-27 13:52:32.669  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6942fc05 +2023-10-27 13:52:32.676  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@60a612c0 +2023-10-27 13:52:32.676 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:32.677  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:32.678  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:32.684 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_05d1680b-cf94-45f6-81da-b79cd5878e3c +2023-10-27 13:52:32.684  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_05d1680b-cf94-45f6-81da-b79cd5878e3c found in urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447 at http://localhost:8080/sparql +2023-10-27 13:52:32.686 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which businesses are founded by the person in charge of Tesla? +2023-10-27 13:52:32.686  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Which businesses are founded by the person in charge of Tesla? +2023-10-27 13:52:32.686  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Which businesses are founded by the person in charge of Tesla? +2023-10-27 13:52:32.686  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F +2023-10-27 13:52:32.687  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F +2023-10-27 13:52:32.976  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"businesses","start":6,"link_probability":0.001852151588536799,"rho":0.09239320456981659,"end":16,"id":4918223,"title":"Company"},{"spot":"person in charge","start":36,"link_probability":0.013477088883519173,"rho":0.006738544441759586,"end":52,"id":7857011,"title":"Marine transfer operations"},{"spot":"Tesla","start":56,"link_probability":0.2774225175380707,"rho":0.23017838597297668,"end":61,"id":5533631,"title":"Tesla Motors"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:32"} +2023-10-27 13:52:32.976  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Company at (6,17) with probability 0.001852151588536799 +2023-10-27 13:52:32.976 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"businesses","start":6,"link_probability":0.001852151588536799,"rho":0.09239320456981659,"end":16,"id":4918223,"title":"Company"} +2023-10-27 13:52:32.977  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.001852151588536799 < 0.25) for http://dbpedia.org/resource/Company +2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Marine_transfer_operations at (36,53) with probability 0.013477088883519173 +2023-10-27 13:52:32.977 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"person in charge","start":36,"link_probability":0.013477088883519173,"rho":0.006738544441759586,"end":52,"id":7857011,"title":"Marine transfer operations"} +2023-10-27 13:52:32.977  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.013477088883519173 < 0.25) for http://dbpedia.org/resource/Marine_transfer_operations +2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Tesla_Motors at (56,62) with probability 0.2774225175380707 +2023-10-27 13:52:32.977 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Tesla","start":56,"link_probability":0.2774225175380707,"rho":0.23017838597297668,"end":61,"id":5533631,"title":"Tesla Motors"} +2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Tesla_Motors +2023-10-27 13:52:32.977  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:32.983 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_05d1680b-cf94-45f6-81da-b79cd5878e3c +2023-10-27 13:52:32.983  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63ae4c85 +2023-10-27 13:52:32.984 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:52:32.986 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"} +2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"} +2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"},"inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"} +2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@747c7915 +2023-10-27 13:52:34.495  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b24d004 +2023-10-27 13:52:34.495 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:52:34.496  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:34.496  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:52:34.502 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_f49a595c-0d6d-496a-a64f-eb38e86a6a62 +2023-10-27 13:52:34.503  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_f49a595c-0d6d-496a-a64f-eb38e86a6a62 found in urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82 at http://localhost:8080/sparql +2023-10-27 13:52:34.505 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many locations has Georges Braque worked at (work location)? +2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many locations has Georges Braque worked at (work location)? +2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many locations has Georges Braque worked at (work location)? +2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F +2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F +2023-10-27 13:52:34.780  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"},{"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"},{"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"},{"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"}],"time":14,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:34"} +2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Filming_location at (9,19) with probability 0.0013541904045268893 +2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"} +2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0013541904045268893 < 0.25) for http://dbpedia.org/resource/Filming_location +2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Georges_Braque at (23,38) with probability 1.0 +2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"} +2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Georges_Braque +2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Work_of_art at (49,54) with probability 0.001639241585507989 +2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"} +2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.001639241585507989 < 0.25) for http://dbpedia.org/resource/Work_of_art +2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Locations_of_Kenya at (54,63) with probability 0.0028062895871698856 +2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"} +2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0028062895871698856 < 0.25) for http://dbpedia.org/resource/Locations_of_Kenya +2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:52:34.786 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_f49a595c-0d6d-496a-a64f-eb38e86a6a62 +2023-10-27 13:52:34.787  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ed0223a +2023-10-27 13:52:34.787 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:52:34.789 ERROR 28727 --- [nio-8092-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"} +2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"} +2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"},"inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"} +2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@400fb46e +2023-10-27 13:53:55.346  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ac38c86 +2023-10-27 13:53:55.346 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:55.347  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:55.348  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:55.357 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e6f1ca33-9cec-4c63-9b6d-b29ef18af59d +2023-10-27 13:53:55.357  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e6f1ca33-9cec-4c63-9b6d-b29ef18af59d found in urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3 at http://localhost:8080/sparql +2023-10-27 13:53:55.361 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which teams participated in the 2020 UEFA Champions League Final ? +2023-10-27 13:53:55.361  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Which teams participated in the 2020 UEFA Champions League Final ? +2023-10-27 13:53:55.361  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question Which teams participated in the 2020 UEFA Champions League Final ? +2023-10-27 13:53:55.361  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Path Which+teams+participated+in+the+2020+UEFA+Champions+League+Final+%3F +2023-10-27 13:53:55.362  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Which+teams+participated+in+the+2020+UEFA+Champions+League+Final+%3F +2023-10-27 13:53:55.689  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"teams","start":6,"link_probability":0.0011753265280276537,"rho":0.3129396140575409,"end":11,"id":10830,"title":"Football team"},{"spot":"UEFA Champions League","start":37,"link_probability":0.9899473190307617,"rho":0.8045989274978638,"end":58,"id":44220,"title":"UEFA Champions League"},{"spot":"Champions League Final","start":42,"link_probability":0.13014981150627136,"rho":0.3893272876739502,"end":64,"id":32386942,"title":"2014 UEFA Champions League Final"}],"time":26,"api":"tag","lang":"en","timestamp":"2023-10-27T11:53:55"} +2023-10-27 13:53:55.689  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Football_team at (6,12) with probability 0.0011753265280276537 +2023-10-27 13:53:55.689 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"teams","start":6,"link_probability":0.0011753265280276537,"rho":0.3129396140575409,"end":11,"id":10830,"title":"Football team"} +2023-10-27 13:53:55.689  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0011753265280276537 < 0.25) for http://dbpedia.org/resource/Football_team +2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/UEFA_Champions_League at (37,59) with probability 0.9899473190307617 +2023-10-27 13:53:55.690 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"UEFA Champions League","start":37,"link_probability":0.9899473190307617,"rho":0.8045989274978638,"end":58,"id":44220,"title":"UEFA Champions League"} +2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/UEFA_Champions_League +2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/2014_UEFA_Champions_League_Final at (42,65) with probability 0.13014981150627136 +2023-10-27 13:53:55.690 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Champions League Final","start":42,"link_probability":0.13014981150627136,"rho":0.3893272876739502,"end":64,"id":32386942,"title":"2014 UEFA Champions League Final"} +2023-10-27 13:53:55.690  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.13014981150627136 < 0.25) for http://dbpedia.org/resource/2014_UEFA_Champions_League_Final +2023-10-27 13:53:55.690  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:53:55.697 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e6f1ca33-9cec-4c63-9b6d-b29ef18af59d +2023-10-27 13:53:55.698  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39cb1819 +2023-10-27 13:53:55.698 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:55.700 ERROR 28727 --- [nio-8092-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:54:06.705  INFO 28727 --- [io-8092-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:06.706  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:06.706  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:06.706  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3a3c5aa5 +2023-10-27 13:54:06.715  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7891bc48 +2023-10-27 13:54:06.715 DEBUG 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:06.716  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:06.716  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:06.722 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 +2023-10-27 13:54:06.723  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql +2023-10-27 13:54:06.725 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? +2023-10-27 13:54:06.725  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Where does the Nutri-Score originate from? +2023-10-27 13:54:06.725  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question Where does the Nutri-Score originate from? +2023-10-27 13:54:06.725  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Path Where+does+the+Nutri-Score+originate+from%3F +2023-10-27 13:54:06.726  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Where+does+the+Nutri-Score+originate+from%3F +2023-10-27 13:54:06.995  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:06"} +2023-10-27 13:54:06.995  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:54:06.995  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:54:06.995 DEBUG 28727 --- [io-8092-exec-10] e.w.q.component.QanaryServiceController  : processing took: 289 ms +2023-10-27 13:54:08.791  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"} +2023-10-27 13:54:08.795  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"} +2023-10-27 13:54:08.795  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"},"inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"} +2023-10-27 13:54:08.795  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4e3d2ec5 +2023-10-27 13:54:08.805  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7110cfce +2023-10-27 13:54:08.805 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:08.806  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:08.807  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:08.815 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_64ce574d-b31e-4f23-95c9-9d54967f3e5f +2023-10-27 13:54:08.815  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_64ce574d-b31e-4f23-95c9-9d54967f3e5f found in urn:graph:79398d76-c983-44db-a56a-73e480507a3f at http://localhost:8080/sparql +2023-10-27 13:54:08.817 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many locations has Georges Braque worked at (work location)? +2023-10-27 13:54:08.817  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many locations has Georges Braque worked at (work location)? +2023-10-27 13:54:08.817  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many locations has Georges Braque worked at (work location)? +2023-10-27 13:54:08.818  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F +2023-10-27 13:54:08.818  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F +2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"},{"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"},{"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"},{"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"}],"time":15,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:09"} +2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Filming_location at (9,19) with probability 0.0013541904045268893 +2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"} +2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0013541904045268893 < 0.25) for http://dbpedia.org/resource/Filming_location +2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Georges_Braque at (23,38) with probability 1.0 +2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"} +2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Georges_Braque +2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Work_of_art at (49,54) with probability 0.001639241585507989 +2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"} +2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.001639241585507989 < 0.25) for http://dbpedia.org/resource/Work_of_art +2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Locations_of_Kenya at (54,63) with probability 0.0028062895871698856 +2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"} +2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0028062895871698856 < 0.25) for http://dbpedia.org/resource/Locations_of_Kenya +2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:54:09.446 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_64ce574d-b31e-4f23-95c9-9d54967f3e5f +2023-10-27 13:54:09.447  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@617d78f7 +2023-10-27 13:54:09.448 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:09.450 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"} +2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"} +2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"},"inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"} +2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@ad36c7b +2023-10-27 13:54:10.054  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b11009f +2023-10-27 13:54:10.054 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:10.055  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:10.055  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:10.062 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4c463b21-5338-4ca6-924a-bdfac4efd189 +2023-10-27 13:54:10.063  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4c463b21-5338-4ca6-924a-bdfac4efd189 found in urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2 at http://localhost:8080/sparql +2023-10-27 13:54:10.064 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where are the founders of the band Metallica from? +2023-10-27 13:54:10.064  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Where are the founders of the band Metallica from? +2023-10-27 13:54:10.064  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Where are the founders of the band Metallica from? +2023-10-27 13:54:10.064  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Where+are+the+founders+of+the+band+Metallica+from%3F +2023-10-27 13:54:10.065  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Where+are+the+founders+of+the+band+Metallica+from%3F +2023-10-27 13:54:10.328  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"founders","start":14,"link_probability":0.0023921376559883356,"rho":0.02327084355056286,"end":22,"id":18950003,"title":"Entrepreneurship"},{"spot":"band","start":30,"link_probability":0.022593051195144653,"rho":0.13773344457149506,"end":34,"id":30965,"title":"The Band"},{"spot":"Metallica","start":35,"link_probability":1,"rho":0.6485117077827454,"end":44,"id":18787,"title":"Metallica"}],"time":9,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:10"} +2023-10-27 13:54:10.328  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Entrepreneurship at (14,23) with probability 0.0023921376559883356 +2023-10-27 13:54:10.328 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"founders","start":14,"link_probability":0.0023921376559883356,"rho":0.02327084355056286,"end":22,"id":18950003,"title":"Entrepreneurship"} +2023-10-27 13:54:10.328  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0023921376559883356 < 0.25) for http://dbpedia.org/resource/Entrepreneurship +2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Band at (30,35) with probability 0.022593051195144653 +2023-10-27 13:54:10.329 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"band","start":30,"link_probability":0.022593051195144653,"rho":0.13773344457149506,"end":34,"id":30965,"title":"The Band"} +2023-10-27 13:54:10.329  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.022593051195144653 < 0.25) for http://dbpedia.org/resource/The_Band +2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Metallica at (35,45) with probability 1.0 +2023-10-27 13:54:10.329 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Metallica","start":35,"link_probability":1,"rho":0.6485117077827454,"end":44,"id":18787,"title":"Metallica"} +2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Metallica +2023-10-27 13:54:10.329  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:54:10.334 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4c463b21-5338-4ca6-924a-bdfac4efd189 +2023-10-27 13:54:10.334  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d6905b5 +2023-10-27 13:54:10.334 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:10.337 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:58:03.022  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"} +2023-10-27 13:58:03.056  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"} +2023-10-27 13:58:03.057  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"},"inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"} +2023-10-27 13:58:03.059  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3b060f81 +2023-10-27 13:58:03.180  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3351cd59 +2023-10-27 13:58:03.182 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:03.214  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:03.215  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:03.266 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c12ad8a6-8829-485d-ba25-7758e030c583 +2023-10-27 13:58:03.266  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c12ad8a6-8829-485d-ba25-7758e030c583 found in urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161 at http://localhost:8080/sparql +2023-10-27 13:58:03.279 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who produced Star Wars: Episode VI – Return of the Jedi? +2023-10-27 13:58:03.279  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: who produced Star Wars: Episode VI – Return of the Jedi? +2023-10-27 13:58:03.279  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question who produced Star Wars: Episode VI – Return of the Jedi? +2023-10-27 13:58:03.280  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path who+produced+Star+Wars%3A+Episode+VI+%E2%80%93+Return+of+the+Jedi%3F +2023-10-27 13:58:03.299  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=who+produced+Star+Wars%3A+Episode+VI+%E2%80%93+Return+of+the+Jedi%3F +2023-10-27 13:58:03.690  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"who","start":0,"link_probability":0.003441077657043934,"rho":0.11360368877649307,"end":3,"id":36517,"title":"The Who"},{"spot":"produced","start":4,"link_probability":0.006508859805762768,"rho":0.12581665813922882,"end":12,"id":211405,"title":"Film producer"},{"spot":"Star Wars: Episode VI \u2013 Return of the Jedi","start":13,"link_probability":1,"rho":0.6642602682113647,"end":55,"id":50744,"title":"Return of the Jedi"}],"time":24,"api":"tag","lang":"en","timestamp":"2023-10-27T11:58:03"} +2023-10-27 13:58:03.691  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Who at (0,4) with probability 0.003441077657043934 +2023-10-27 13:58:03.693 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"who","start":0,"link_probability":0.003441077657043934,"rho":0.11360368877649307,"end":3,"id":36517,"title":"The Who"} +2023-10-27 13:58:03.693  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003441077657043934 < 0.25) for http://dbpedia.org/resource/The_Who +2023-10-27 13:58:03.693  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Film_producer at (4,13) with probability 0.006508859805762768 +2023-10-27 13:58:03.694 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"produced","start":4,"link_probability":0.006508859805762768,"rho":0.12581665813922882,"end":12,"id":211405,"title":"Film producer"} +2023-10-27 13:58:03.694  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006508859805762768 < 0.25) for http://dbpedia.org/resource/Film_producer +2023-10-27 13:58:03.694  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Return_of_the_Jedi at (13,56) with probability 1.0 +2023-10-27 13:58:03.694 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Star Wars: Episode VI \u2013 Return of the Jedi","start":13,"link_probability":1,"rho":0.6642602682113647,"end":55,"id":50744,"title":"Return of the Jedi"} +2023-10-27 13:58:03.694  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Return_of_the_Jedi +2023-10-27 13:58:03.694  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:58:03.694  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:58:03.701 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c12ad8a6-8829-485d-ba25-7758e030c583 +2023-10-27 13:58:03.704  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16f7e703 +2023-10-27 13:58:03.704 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:03.738 ERROR 28727 --- [nio-8092-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:59:34.776  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"} +2023-10-27 13:59:34.777  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"} +2023-10-27 13:59:34.777  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"},"inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"} +2023-10-27 13:59:34.778  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9e71aea +2023-10-27 13:59:34.806  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fdbe163 +2023-10-27 13:59:34.806 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:34.808  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:34.808  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:34.819 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88ba8507-bd4b-427d-a6c8-c839a9844b68 +2023-10-27 13:59:34.819  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88ba8507-bd4b-427d-a6c8-c839a9844b68 found in urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada at http://localhost:8080/sparql +2023-10-27 13:59:34.822 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does the postal code 32423 belong to Minden? +2023-10-27 13:59:34.822  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Does the postal code 32423 belong to Minden? +2023-10-27 13:59:34.822  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question Does the postal code 32423 belong to Minden? +2023-10-27 13:59:34.822  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path Does+the+postal+code+32423+belong+to+Minden%3F +2023-10-27 13:59:34.825  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Does+the+postal+code+32423+belong+to+Minden%3F +2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"postal code","start":9,"link_probability":0.5067114233970642,"rho":0.2813880443572998,"end":20,"id":51549,"title":"Postal code"},{"spot":"belong","start":27,"link_probability":0.0012591375270858407,"rho":0.0006295687635429204,"end":33,"id":5252646,"title":"Belong (band)"},{"spot":"Minden","start":37,"link_probability":0.6376119256019592,"rho":0.3468382954597473,"end":43,"id":182340,"title":"Minden"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T11:59:35"} +2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Postal_code at (9,21) with probability 0.5067114233970642 +2023-10-27 13:59:35.157 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"postal code","start":9,"link_probability":0.5067114233970642,"rho":0.2813880443572998,"end":20,"id":51549,"title":"Postal code"} +2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Postal_code +2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Belong_(band) at (27,34) with probability 0.0012591375270858407 +2023-10-27 13:59:35.157 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"belong","start":27,"link_probability":0.0012591375270858407,"rho":0.0006295687635429204,"end":33,"id":5252646,"title":"Belong (band)"} +2023-10-27 13:59:35.157  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0012591375270858407 < 0.25) for http://dbpedia.org/resource/Belong_(band) +2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Minden at (37,44) with probability 0.6376119256019592 +2023-10-27 13:59:35.158 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Minden","start":37,"link_probability":0.6376119256019592,"rho":0.3468382954597473,"end":43,"id":182340,"title":"Minden"} +2023-10-27 13:59:35.158  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Minden +2023-10-27 13:59:35.158  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:59:35.158  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:59:35.186 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88ba8507-bd4b-427d-a6c8-c839a9844b68 +2023-10-27 13:59:35.187  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a865d6a +2023-10-27 13:59:35.187 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:35.190 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:59:46.647  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"} +2023-10-27 13:59:46.648  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"} +2023-10-27 13:59:46.648  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"},"inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"} +2023-10-27 13:59:46.648  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@35c69c28 +2023-10-27 13:59:46.721  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@bc188b0 +2023-10-27 13:59:46.721 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:46.723  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:46.724  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:46.734 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_beb9ac82-b156-4ff6-92ad-2f7dcbc86653 +2023-10-27 13:59:46.734  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_beb9ac82-b156-4ff6-92ad-2f7dcbc86653 found in urn:graph:7d247d1a-e932-4db4-b279-a054690873fa at http://localhost:8080/sparql +2023-10-27 13:59:46.737 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:59:46.737  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:59:46.737  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:59:46.737  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F +2023-10-27 13:59:46.739  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F +2023-10-27 13:59:47.034  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"actor","start":6,"link_probability":0.09532184898853302,"rho":0.15277986228466034,"end":11,"id":21504235,"title":"Actor"},{"spot":"Free","start":24,"link_probability":0.008079309947788715,"rho":0.059098999947309494,"end":28,"id":34886418,"title":"Free (film)"},{"spot":"Guy","start":29,"link_probability":0.015608565881848335,"rho":0.03260781243443489,"end":32,"id":26508404,"title":"The Croods"},{"spot":"Deadpool","start":49,"link_probability":1,"rho":0.5252560377120972,"end":57,"id":36438854,"title":"Deadpool (video game)"}],"time":27,"api":"tag","lang":"en","timestamp":"2023-10-27T11:59:47"} +2023-10-27 13:59:47.034  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Actor at (6,12) with probability 0.09532184898853302 +2023-10-27 13:59:47.034 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"actor","start":6,"link_probability":0.09532184898853302,"rho":0.15277986228466034,"end":11,"id":21504235,"title":"Actor"} +2023-10-27 13:59:47.034  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.09532184898853302 < 0.25) for http://dbpedia.org/resource/Actor +2023-10-27 13:59:47.034  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Free_(film) at (24,29) with probability 0.008079309947788715 +2023-10-27 13:59:47.035 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Free","start":24,"link_probability":0.008079309947788715,"rho":0.059098999947309494,"end":28,"id":34886418,"title":"Free (film)"} +2023-10-27 13:59:47.035  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.008079309947788715 < 0.25) for http://dbpedia.org/resource/Free_(film) +2023-10-27 13:59:47.035  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Croods at (29,33) with probability 0.015608565881848335 +2023-10-27 13:59:47.035 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Guy","start":29,"link_probability":0.015608565881848335,"rho":0.03260781243443489,"end":32,"id":26508404,"title":"The Croods"} +2023-10-27 13:59:47.035  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.015608565881848335 < 0.25) for http://dbpedia.org/resource/The_Croods +2023-10-27 13:59:47.035  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Deadpool_(video_game) at (49,58) with probability 1.0 +2023-10-27 13:59:47.035 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Deadpool","start":49,"link_probability":1,"rho":0.5252560377120972,"end":57,"id":36438854,"title":"Deadpool (video game)"} +2023-10-27 13:59:47.035  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Deadpool_(video_game) +2023-10-27 13:59:47.036  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 13:59:47.036  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 13:59:47.042 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_beb9ac82-b156-4ff6-92ad-2f7dcbc86653 +2023-10-27 13:59:47.042  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c785413 +2023-10-27 13:59:47.043 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:47.048 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:02:59.879  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"} +2023-10-27 14:02:59.880  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"} +2023-10-27 14:02:59.880  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"},"inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"} +2023-10-27 14:02:59.881  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@596914c4 +2023-10-27 14:02:59.950  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55b11605 +2023-10-27 14:02:59.950 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:59.952  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:59.953  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:59.961 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_19b73de0-e2fd-4a89-b794-d90286647bed +2023-10-27 14:02:59.962  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_19b73de0-e2fd-4a89-b794-d90286647bed found in urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff at http://localhost:8080/sparql +2023-10-27 14:02:59.965 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the area of the great lakes? +2023-10-27 14:02:59.965  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: What is the area of the great lakes? +2023-10-27 14:02:59.966  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question What is the area of the great lakes? +2023-10-27 14:02:59.966  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path What+is+the+area+of+the+great+lakes%3F +2023-10-27 14:02:59.967  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=What+is+the+area+of+the+great+lakes%3F +2023-10-27 14:03:00.389  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"area","start":12,"link_probability":0.006615964230149984,"rho":0.08574877679347992,"end":16,"id":1209,"title":"Area"},{"spot":"great lakes","start":24,"link_probability":0.4282858669757843,"rho":0.29658371210098267,"end":35,"id":512047,"title":"African Great Lakes"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T12:03:00"} +2023-10-27 14:03:00.390  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Area at (12,17) with probability 0.006615964230149984 +2023-10-27 14:03:00.390 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"area","start":12,"link_probability":0.006615964230149984,"rho":0.08574877679347992,"end":16,"id":1209,"title":"Area"} +2023-10-27 14:03:00.390  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006615964230149984 < 0.25) for http://dbpedia.org/resource/Area +2023-10-27 14:03:00.391  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/African_Great_Lakes at (24,36) with probability 0.4282858669757843 +2023-10-27 14:03:00.391 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"great lakes","start":24,"link_probability":0.4282858669757843,"rho":0.29658371210098267,"end":35,"id":512047,"title":"African Great Lakes"} +2023-10-27 14:03:00.391  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/African_Great_Lakes +2023-10-27 14:03:00.391  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:03:00.391  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:03:00.401 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_19b73de0-e2fd-4a89-b794-d90286647bed +2023-10-27 14:03:00.402  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ac10e4b +2023-10-27 14:03:00.402 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:00.408 ERROR 28727 --- [nio-8092-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@330c2182 +2023-10-27 14:05:00.741  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fc2ee57 +2023-10-27 14:05:00.741 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:00.743  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:00.743  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:00.750 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b +2023-10-27 14:05:00.751  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql +2023-10-27 14:05:00.752 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? +2023-10-27 14:05:00.752  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many spouses do head of states have on average? +2023-10-27 14:05:00.752  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many spouses do head of states have on average? +2023-10-27 14:05:00.752  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+spouses+do+head+of+states+have+on+average%3F +2023-10-27 14:05:00.754  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+spouses+do+head+of+states+have+on+average%3F +2023-10-27 14:05:01.241  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"spouses","start":9,"link_probability":0.005550686735659838,"rho":0.13350242376327515,"end":16,"id":19728,"title":"Marriage"},{"spot":"do","start":17,"link_probability":0.0014110748888924718,"rho":0.048514287918806076,"end":19,"id":199884,"title":"Osteopathic medicine in the United States"},{"spot":"head","start":20,"link_probability":0.006395735312253237,"rho":0.00848488137125969,"end":24,"id":37570,"title":"Head of government"},{"spot":"states","start":28,"link_probability":0.0020306953229010105,"rho":0.13402144610881805,"end":34,"id":18618239,"title":"U.S. state"},{"spot":"average","start":43,"link_probability":0.021294986829161644,"rho":0.041144002228975296,"end":50,"id":60167,"title":"Average"}],"time":217,"api":"tag","lang":"en","timestamp":"2023-10-27T12:05:01"} +2023-10-27 14:05:01.242  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Marriage at (9,17) with probability 0.005550686735659838 +2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"spouses","start":9,"link_probability":0.005550686735659838,"rho":0.13350242376327515,"end":16,"id":19728,"title":"Marriage"} +2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.005550686735659838 < 0.25) for http://dbpedia.org/resource/Marriage +2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Osteopathic_medicine_in_the_United_States at (17,20) with probability 0.0014110748888924718 +2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"do","start":17,"link_probability":0.0014110748888924718,"rho":0.048514287918806076,"end":19,"id":199884,"title":"Osteopathic medicine in the United States"} +2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0014110748888924718 < 0.25) for http://dbpedia.org/resource/Osteopathic_medicine_in_the_United_States +2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Head_of_government at (20,25) with probability 0.006395735312253237 +2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"head","start":20,"link_probability":0.006395735312253237,"rho":0.00848488137125969,"end":24,"id":37570,"title":"Head of government"} +2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006395735312253237 < 0.25) for http://dbpedia.org/resource/Head_of_government +2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/U.S._state at (28,35) with probability 0.0020306953229010105 +2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"states","start":28,"link_probability":0.0020306953229010105,"rho":0.13402144610881805,"end":34,"id":18618239,"title":"U.S. state"} +2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0020306953229010105 < 0.25) for http://dbpedia.org/resource/U.S._state +2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Average at (43,51) with probability 0.021294986829161644 +2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"average","start":43,"link_probability":0.021294986829161644,"rho":0.041144002228975296,"end":50,"id":60167,"title":"Average"} +2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.021294986829161644 < 0.25) for http://dbpedia.org/resource/Average +2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : processing took: 510 ms +2023-10-27 14:07:21.763  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"} +2023-10-27 14:07:21.767  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"} +2023-10-27 14:07:21.767  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"},"inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"} +2023-10-27 14:07:21.767  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5344cf9d +2023-10-27 14:07:21.798  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6571e4ac +2023-10-27 14:07:21.798 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:21.799  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:21.800  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:21.808 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_756249e0-2874-487b-8ead-6bad88129fe8 +2023-10-27 14:07:21.808  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_756249e0-2874-487b-8ead-6bad88129fe8 found in urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291 at http://localhost:8080/sparql +2023-10-27 14:07:21.810 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? +2023-10-27 14:07:21.810  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: when was the creator of saturday night live born? +2023-10-27 14:07:21.810  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question when was the creator of saturday night live born? +2023-10-27 14:07:21.810  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path when+was+the+creator+of+saturday+night+live+born%3F +2023-10-27 14:07:21.811  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=when+was+the+creator+of+saturday+night+live+born%3F +2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"creator","start":13,"link_probability":0.008555445820093155,"rho":0.14067788422107697,"end":20,"id":5042765,"title":"God"},{"spot":"saturday night live","start":24,"link_probability":1,"rho":0.6364001631736755,"end":43,"id":763013,"title":"Saturday Night Live"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T12:07:22"} +2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/God at (13,21) with probability 0.008555445820093155 +2023-10-27 14:07:22.092 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"creator","start":13,"link_probability":0.008555445820093155,"rho":0.14067788422107697,"end":20,"id":5042765,"title":"God"} +2023-10-27 14:07:22.092  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.008555445820093155 < 0.25) for http://dbpedia.org/resource/God +2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Saturday_Night_Live at (24,44) with probability 1.0 +2023-10-27 14:07:22.092 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"saturday night live","start":24,"link_probability":1,"rho":0.6364001631736755,"end":43,"id":763013,"title":"Saturday Night Live"} +2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Saturday_Night_Live +2023-10-27 14:07:22.092  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:07:22.097 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_756249e0-2874-487b-8ead-6bad88129fe8 +2023-10-27 14:07:22.098  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d7a472f +2023-10-27 14:07:22.098 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:22.101 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:07:32.017  INFO 28727 --- [nio-8092-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"} +2023-10-27 14:07:32.017  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"} +2023-10-27 14:07:32.018  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"},"inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"} +2023-10-27 14:07:32.018  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3b841d92 +2023-10-27 14:07:32.035  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7db9301 +2023-10-27 14:07:32.035 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:32.037  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:32.037  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:32.044 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_dded931f-30ae-46aa-a784-34e85debdc37 +2023-10-27 14:07:32.045  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_dded931f-30ae-46aa-a784-34e85debdc37 found in urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221 at http://localhost:8080/sparql +2023-10-27 14:07:32.046 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was there at least one Formula 1 event on the AVUS? +2023-10-27 14:07:32.046  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Was there at least one Formula 1 event on the AVUS? +2023-10-27 14:07:32.047  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question Was there at least one Formula 1 event on the AVUS? +2023-10-27 14:07:32.047  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Path Was+there+at+least+one+Formula+1+event+on+the+AVUS%3F +2023-10-27 14:07:32.048  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Was+there+at+least+one+Formula+1+event+on+the+AVUS%3F +2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"one","start":19,"link_probability":0.0015941697638481855,"rho":0.14541690051555634,"end":22,"id":19969891,"title":"One (Australian TV channel)"},{"spot":"Formula 1","start":23,"link_probability":0.29899775981903076,"rho":0.4074433147907257,"end":32,"id":10854,"title":"Formula One"},{"spot":"event","start":33,"link_probability":0.003929408732801676,"rho":0.24447864294052124,"end":38,"id":39021,"title":"Daytona 500"},{"spot":"AVUS","start":46,"link_probability":0.6821191906929016,"rho":0.5098094940185547,"end":50,"id":176958,"title":"AVUS"}],"time":24,"api":"tag","lang":"en","timestamp":"2023-10-27T12:07:32"} +2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/One_(Australian_TV_channel) at (19,23) with probability 0.0015941697638481855 +2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"one","start":19,"link_probability":0.0015941697638481855,"rho":0.14541690051555634,"end":22,"id":19969891,"title":"One (Australian TV channel)"} +2023-10-27 14:07:32.487  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0015941697638481855 < 0.25) for http://dbpedia.org/resource/One_(Australian_TV_channel) +2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Formula_One at (23,33) with probability 0.29899775981903076 +2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Formula 1","start":23,"link_probability":0.29899775981903076,"rho":0.4074433147907257,"end":32,"id":10854,"title":"Formula One"} +2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Formula_One +2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Daytona_500 at (33,39) with probability 0.003929408732801676 +2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"event","start":33,"link_probability":0.003929408732801676,"rho":0.24447864294052124,"end":38,"id":39021,"title":"Daytona 500"} +2023-10-27 14:07:32.487  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003929408732801676 < 0.25) for http://dbpedia.org/resource/Daytona_500 +2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/AVUS at (46,51) with probability 0.6821191906929016 +2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"AVUS","start":46,"link_probability":0.6821191906929016,"rho":0.5098094940185547,"end":50,"id":176958,"title":"AVUS"} +2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/AVUS +2023-10-27 14:07:32.487  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:07:32.488  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:07:32.493 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_dded931f-30ae-46aa-a784-34e85debdc37 +2023-10-27 14:07:32.493  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7396722d +2023-10-27 14:07:32.493 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:32.495 ERROR 28727 --- [nio-8092-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 86. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 86. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:08:14.444  INFO 28727 --- [nio-8092-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"} +2023-10-27 14:08:14.446  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"} +2023-10-27 14:08:14.446  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"},"inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"} +2023-10-27 14:08:14.446  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@474783b7 +2023-10-27 14:08:14.486  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4980752f +2023-10-27 14:08:14.487 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:14.488  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:14.488  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:14.495 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_59dd650e-bd6c-45f9-a598-cd0e2995f98f +2023-10-27 14:08:14.495  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_59dd650e-bd6c-45f9-a598-cd0e2995f98f found in urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0 at http://localhost:8080/sparql +2023-10-27 14:08:14.497 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is the Linux Foundation verified on Twitter? +2023-10-27 14:08:14.497  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Is the Linux Foundation verified on Twitter? +2023-10-27 14:08:14.497  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question Is the Linux Foundation verified on Twitter? +2023-10-27 14:08:14.497  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Path Is+the+Linux+Foundation+verified+on+Twitter%3F +2023-10-27 14:08:14.498  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Is+the+Linux+Foundation+verified+on+Twitter%3F +2023-10-27 14:08:14.823  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Linux Foundation","start":7,"link_probability":1,"rho":0.5761911869049072,"end":23,"id":9055249,"title":"Linux Foundation"},{"spot":"verified","start":24,"link_probability":0.0020010005682706833,"rho":0.28909608721733093,"end":32,"id":9988187,"title":"Twitter"},{"spot":"Twitter","start":36,"link_probability":0.5777828097343445,"rho":0.5769870281219482,"end":43,"id":9988187,"title":"Twitter"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T12:08:14"} +2023-10-27 14:08:14.823  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Linux_Foundation at (7,24) with probability 1.0 +2023-10-27 14:08:14.824 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Linux Foundation","start":7,"link_probability":1,"rho":0.5761911869049072,"end":23,"id":9055249,"title":"Linux Foundation"} +2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Linux_Foundation +2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Twitter at (24,33) with probability 0.0020010005682706833 +2023-10-27 14:08:14.824 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"verified","start":24,"link_probability":0.0020010005682706833,"rho":0.28909608721733093,"end":32,"id":9988187,"title":"Twitter"} +2023-10-27 14:08:14.824  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0020010005682706833 < 0.25) for http://dbpedia.org/resource/Twitter +2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Twitter at (36,44) with probability 0.5777828097343445 +2023-10-27 14:08:14.824 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Twitter","start":36,"link_probability":0.5777828097343445,"rho":0.5769870281219482,"end":43,"id":9988187,"title":"Twitter"} +2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Twitter +2023-10-27 14:08:14.824  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:08:14.830 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_59dd650e-bd6c-45f9-a598-cd0e2995f98f +2023-10-27 14:08:14.834  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38169a9b +2023-10-27 14:08:14.834 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:14.839 ERROR 28727 --- [nio-8092-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:08:15.458  INFO 28727 --- [nio-8092-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"} +2023-10-27 14:08:15.459  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"} +2023-10-27 14:08:15.459  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"},"inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"} +2023-10-27 14:08:15.459  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@53ef9d30 +2023-10-27 14:08:15.477  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4706b819 +2023-10-27 14:08:15.477 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:15.478  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:15.478  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:15.485 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1999b9b7-0542-45ac-a7c5-daaee0287c16 +2023-10-27 14:08:15.485  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1999b9b7-0542-45ac-a7c5-daaee0287c16 found in urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e at http://localhost:8080/sparql +2023-10-27 14:08:15.487 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation On how many albums does Madonna perform? +2023-10-27 14:08:15.488  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question: On how many albums does Madonna perform? +2023-10-27 14:08:15.488  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question On how many albums does Madonna perform? +2023-10-27 14:08:15.488  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Path On+how+many+albums+does+Madonna+perform%3F +2023-10-27 14:08:15.491  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=On+how+many+albums+does+Madonna+perform%3F +2023-10-27 14:08:15.824  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"albums","start":12,"link_probability":0.007155500818043947,"rho":0.2322184294462204,"end":18,"id":1290194,"title":"Billboard charts"},{"spot":"Madonna","start":24,"link_probability":0.6385111212730408,"rho":0.5478962659835815,"end":31,"id":142056,"title":"Madonna (entertainer)"}],"time":18,"api":"tag","lang":"en","timestamp":"2023-10-27T12:08:15"} +2023-10-27 14:08:15.824  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Billboard_charts at (12,19) with probability 0.007155500818043947 +2023-10-27 14:08:15.824 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"albums","start":12,"link_probability":0.007155500818043947,"rho":0.2322184294462204,"end":18,"id":1290194,"title":"Billboard charts"} +2023-10-27 14:08:15.825  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.007155500818043947 < 0.25) for http://dbpedia.org/resource/Billboard_charts +2023-10-27 14:08:15.825  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Madonna_(entertainer) at (24,32) with probability 0.6385111212730408 +2023-10-27 14:08:15.825 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Madonna","start":24,"link_probability":0.6385111212730408,"rho":0.5478962659835815,"end":31,"id":142056,"title":"Madonna (entertainer)"} +2023-10-27 14:08:15.825  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Madonna_(entertainer) +2023-10-27 14:08:15.825  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:08:15.825  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:08:15.831 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1999b9b7-0542-45ac-a7c5-daaee0287c16 +2023-10-27 14:08:15.831  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7abd211c +2023-10-27 14:08:15.834 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:15.838 ERROR 28727 --- [nio-8092-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:10:23.683  INFO 28727 --- [nio-8092-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"} +2023-10-27 14:10:23.683  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"} +2023-10-27 14:10:23.684  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"},"inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"} +2023-10-27 14:10:23.684  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@42ed4c40 +2023-10-27 14:10:23.724  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d3968f0 +2023-10-27 14:10:23.725 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:23.726  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:23.726  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:23.733 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4d6691c6-aac5-4325-9649-35bafea154df +2023-10-27 14:10:23.733  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4d6691c6-aac5-4325-9649-35bafea154df found in urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984 at http://localhost:8080/sparql +2023-10-27 14:10:23.735 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation what is the official language of iran? +2023-10-27 14:10:23.735  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question: what is the official language of iran? +2023-10-27 14:10:23.735  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question what is the official language of iran? +2023-10-27 14:10:23.735  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Path what+is+the+official+language+of+iran%3F +2023-10-27 14:10:23.738  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=what+is+the+official+language+of+iran%3F +2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":6,"api":"tag","lang":"en","timestamp":"2023-10-27T12:10:23"} +2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 +2023-10-27 14:10:24.024 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} +2023-10-27 14:10:24.024  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language +2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 +2023-10-27 14:10:24.024 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} +2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran +2023-10-27 14:10:24.024  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:10:24.030 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4d6691c6-aac5-4325-9649-35bafea154df +2023-10-27 14:10:24.033  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65587b02 +2023-10-27 14:10:24.033 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:24.035 ERROR 28727 --- [nio-8092-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:12:33.445  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"} +2023-10-27 14:12:33.446  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"} +2023-10-27 14:12:33.446  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"},"inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"} +2023-10-27 14:12:33.446  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6f61e4cb +2023-10-27 14:12:33.480  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@187888f2 +2023-10-27 14:12:33.480 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:12:33.482  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:33.482  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:33.491 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a0b2d995-7df5-48c4-8a68-23b3c0ab646c +2023-10-27 14:12:33.491  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a0b2d995-7df5-48c4-8a68-23b3c0ab646c found in urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010 at http://localhost:8080/sparql +2023-10-27 14:12:33.494 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation what is the official language of iran? +2023-10-27 14:12:33.494  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: what is the official language of iran? +2023-10-27 14:12:33.494  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question what is the official language of iran? +2023-10-27 14:12:33.494  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path what+is+the+official+language+of+iran%3F +2023-10-27 14:12:33.496  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=what+is+the+official+language+of+iran%3F +2023-10-27 14:12:33.839  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":8,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:33"} +2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 +2023-10-27 14:12:33.841 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} +2023-10-27 14:12:33.841  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language +2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 +2023-10-27 14:12:33.841 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} +2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran +2023-10-27 14:12:33.841  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:12:33.847 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a0b2d995-7df5-48c4-8a68-23b3c0ab646c +2023-10-27 14:12:33.848  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51999fc4 +2023-10-27 14:12:33.848 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:12:33.852 ERROR 28727 --- [nio-8092-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:12:46.867  INFO 28727 --- [nio-8092-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"} +2023-10-27 14:12:46.868  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"} +2023-10-27 14:12:46.868  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"},"inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"} +2023-10-27 14:12:46.868  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7105e6bb +2023-10-27 14:12:46.932  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@109b8afa +2023-10-27 14:12:46.933 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:12:46.934  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:46.935  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:46.943 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4f33eb93-3bf7-4ffd-ad3a-ab116927b35d +2023-10-27 14:12:46.943  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4f33eb93-3bf7-4ffd-ad3a-ab116927b35d found in urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b at http://localhost:8080/sparql +2023-10-27 14:12:46.945 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the official language of iran? +2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question: What is the official language of iran? +2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question What is the official language of iran? +2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Path What+is+the+official+language+of+iran%3F +2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=What+is+the+official+language+of+iran%3F +2023-10-27 14:12:47.234  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":6,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:47"} +2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 +2023-10-27 14:12:47.235 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} +2023-10-27 14:12:47.235  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language +2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 +2023-10-27 14:12:47.235 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} +2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran +2023-10-27 14:12:47.235  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:12:47.241 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4f33eb93-3bf7-4ffd-ad3a-ab116927b35d +2023-10-27 14:12:47.242  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@487ed84c +2023-10-27 14:12:47.243 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:12:47.246 ERROR 28727 --- [nio-8092-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:12:51.774  INFO 28727 --- [nio-8092-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"} +2023-10-27 14:12:51.775  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"} +2023-10-27 14:12:51.775  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"},"inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"} +2023-10-27 14:12:51.775  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@45cdcb25 +2023-10-27 14:12:51.823  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c31d99b +2023-10-27 14:12:51.823 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:12:51.824  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:51.824  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:51.830 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5fe980a5-783a-47fa-82f9-31aad3552c7c +2023-10-27 14:12:51.830  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5fe980a5-783a-47fa-82f9-31aad3552c7c found in urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579 at http://localhost:8080/sparql +2023-10-27 14:12:51.831 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the official language of iran? +2023-10-27 14:12:51.832  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question: What is the official language of iran? +2023-10-27 14:12:51.832  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question What is the official language of iran? +2023-10-27 14:12:51.832  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Path What+is+the+official+language+of+iran%3F +2023-10-27 14:12:51.833  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=What+is+the+official+language+of+iran%3F +2023-10-27 14:12:52.143  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":6,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:52"} +2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 +2023-10-27 14:12:52.145 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} +2023-10-27 14:12:52.145  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language +2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 +2023-10-27 14:12:52.145 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} +2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran +2023-10-27 14:12:52.145  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:12:52.151 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5fe980a5-783a-47fa-82f9-31aad3552c7c +2023-10-27 14:12:52.151  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b741773 +2023-10-27 14:12:52.152 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:12:52.154 ERROR 28727 --- [nio-8092-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"} +2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"} +2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"},"inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"} +2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3f01322c +2023-10-27 14:12:59.197  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d1ba7aa +2023-10-27 14:12:59.198 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:12:59.199  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:59.199  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:12:59.205 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4f0fdc9d-b63c-45f0-9202-92382176560b +2023-10-27 14:12:59.205  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4f0fdc9d-b63c-45f0-9202-92382176560b found in urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0 at http://localhost:8080/sparql +2023-10-27 14:12:59.206 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? +2023-10-27 14:12:59.206  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question: When was Adidas established? +2023-10-27 14:12:59.206  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question When was Adidas established? +2023-10-27 14:12:59.206  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Path When+was+Adidas+established%3F +2023-10-27 14:12:59.207  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=When+was+Adidas+established%3F +2023-10-27 14:12:59.472  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:59"} +2023-10-27 14:12:59.473  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Adidas at (9,16) with probability 0.6746602654457092 +2023-10-27 14:12:59.473 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"} +2023-10-27 14:12:59.473  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Adidas +2023-10-27 14:12:59.473  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:12:59.473  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:12:59.479 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4f0fdc9d-b63c-45f0-9202-92382176560b +2023-10-27 14:12:59.479  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@468fcfa1 +2023-10-27 14:12:59.479 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:12:59.482 ERROR 28727 --- [nio-8092-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"} +2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"} +2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"},"inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"} +2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9feef55 +2023-10-27 14:13:41.041  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9799698 +2023-10-27 14:13:41.041 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:13:41.042  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:41.043  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:41.051 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_decbeb89-02a6-48c3-8190-0ba8ca4bc5d5 +2023-10-27 14:13:41.051  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_decbeb89-02a6-48c3-8190-0ba8ca4bc5d5 found in urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7 at http://localhost:8080/sparql +2023-10-27 14:13:41.053 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? +2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: When was Adidas established? +2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question When was Adidas established? +2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path When+was+Adidas+established%3F +2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=When+was+Adidas+established%3F +2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"}],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T12:13:41"} +2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Adidas at (9,16) with probability 0.6746602654457092 +2023-10-27 14:13:41.409 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"} +2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Adidas +2023-10-27 14:13:41.409  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:13:41.414 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_decbeb89-02a6-48c3-8190-0ba8ca4bc5d5 +2023-10-27 14:13:41.414  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7dcc6d12 +2023-10-27 14:13:41.414 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:13:41.416 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"} +2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"} +2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"},"inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"} +2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@702fab35 +2023-10-27 14:13:44.425  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34fea865 +2023-10-27 14:13:44.425 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:13:44.427  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:44.427  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:44.433 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7e56b7ce-73b4-4305-b120-93735ad53633 +2023-10-27 14:13:44.433  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7e56b7ce-73b4-4305-b120-93735ad53633 found in urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2 at http://localhost:8080/sparql +2023-10-27 14:13:44.435 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? +2023-10-27 14:13:44.435  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: When was Adidas established? +2023-10-27 14:13:44.435  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question When was Adidas established? +2023-10-27 14:13:44.435  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path When+was+Adidas+established%3F +2023-10-27 14:13:44.436  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=When+was+Adidas+established%3F +2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"}],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T12:13:44"} +2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Adidas at (9,16) with probability 0.6746602654457092 +2023-10-27 14:13:44.746 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"} +2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Adidas +2023-10-27 14:13:44.746  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. +2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. +2023-10-27 14:13:44.754 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7e56b7ce-73b4-4305-b120-93735ad53633 +2023-10-27 14:13:44.754  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49287fe6 +2023-10-27 14:13:44.755 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end ; + qa:score ?score . + ] . + ] . + ?a oa:hasBody ?answer ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:13:44.758 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + ] with root cause + +org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. +Was expecting one of: + "]" ... + ";" ... + "," ... + "{|" ... + + at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] + at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + diff --git a/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq b/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq index f3be0a099..4307cf87a 100644 --- a/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq +++ b/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq @@ -12,7 +12,7 @@ GRAPH ?graph { a oa:TextPositionSelector ; oa:start ?start ; oa:end ?end ; - qa:score ?score . + qa:score ?score ] . ] . ?a oa:hasBody ?answer ; @@ -22,4 +22,4 @@ GRAPH ?graph { WHERE { BIND (IRI(str(RAND())) AS ?a) . BIND (now() as ?time) . -} \ No newline at end of file +} diff --git a/qanary-component-NER-DBpediaSpotlight/nohup.out b/qanary-component-NER-DBpediaSpotlight/nohup.out new file mode 100644 index 000000000..a24e19735 --- /dev/null +++ b/qanary-component-NER-DBpediaSpotlight/nohup.out @@ -0,0 +1,8811 @@ + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:21.927  INFO 9650 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9650 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) +2023-10-27 12:09:21.965 DEBUG 9650 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:21.966  INFO 9650 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:09:42.820  WARN 9650 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:43.331  WARN 9650 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:43.411  WARN 9650 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! +2023-10-27 12:09:43.412 DEBUG 9650 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 12:09:43.447 DEBUG 9650 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 12:09:43.447  INFO 9650 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3954d008 +2023-10-27 12:09:43.572 DEBUG 9650 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 12:09:43.573  INFO 9650 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32232e55 +2023-10-27 12:09:43.585  INFO 9650 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@37ebc9d8 +2023-10-27 12:09:43.656  INFO 9650 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10009 +spring.application.name = NER-DBpediaSpotlight +spring.application.description = NER-DBpediaSpotlight is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:43.762  INFO 9650 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl +2023-10-27 12:09:46.984  WARN 9650 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:47.100  INFO 9650 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:09:55.743  INFO 9650 --- [ main] e.w.q.c.d.ner.Application  : Started Application in 38.541 seconds (JVM running for 44.85) +2023-10-27 12:09:56.337  WARN 9650 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NER-DBpediaSpotlight, managementUrl=http://0.0.0.0:10009/actuator, healthUrl=http://0.0.0.0:10009/actuator/health, serviceUrl=http://0.0.0.0:10009/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:06.255  INFO 9650 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as d00bb262ec2f + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:49.910  INFO 11763 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11763 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) +2023-10-27 12:15:49.974 DEBUG 11763 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:49.985  INFO 11763 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:16:18.221  WARN 11763 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:18.727  WARN 11763 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:18.859  WARN 11763 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! +2023-10-27 12:16:18.859 DEBUG 11763 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 12:16:18.877 DEBUG 11763 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 12:16:18.879  INFO 11763 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@593e824f +2023-10-27 12:16:19.086 DEBUG 11763 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 12:16:19.098  INFO 11763 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37ebc9d8 +2023-10-27 12:16:19.100  INFO 11763 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@2416a51 +2023-10-27 12:16:19.154  INFO 11763 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10009 +spring.application.name = NER-DBpediaSpotlight +spring.application.description = NER-DBpediaSpotlight is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:19.338  INFO 11763 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl +2023-10-27 12:16:25.519  WARN 11763 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:25.597  INFO 11763 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:16:35.730  WARN 11763 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10009 is already in use +2023-10-27 12:16:36.277 ERROR 11763 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 10009 was already in use. + +Action: + +Identify and stop the process that's listening on port 10009 or configure this application to listen on another port. + +2023-10-27 13:37:25.787  WARN 9650 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NER-DBpediaSpotlight, managementUrl=http://0.0.0.0:10009/actuator, healthUrl=http://0.0.0.0:10009/actuator/health, serviceUrl=http://0.0.0.0:10009/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.       [48;2;0;2;1m .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:48.931  INFO 28730 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28730 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) +2023-10-27 13:37:49.041 DEBUG 28730 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:49.042  INFO 28730 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:38:10.109  WARN 28730 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:10.889  WARN 28730 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:10.928  WARN 28730 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! +2023-10-27 13:38:10.929 DEBUG 28730 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 13:38:10.935 DEBUG 28730 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 13:38:10.936  INFO 28730 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3954d008 +2023-10-27 13:38:10.967 DEBUG 28730 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 13:38:10.967  INFO 28730 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32232e55 +2023-10-27 13:38:10.986  INFO 28730 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@37ebc9d8 +2023-10-27 13:38:11.003  INFO 28730 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10009 +spring.application.name = NER-DBpediaSpotlight +spring.application.description = NER-DBpediaSpotlight is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:11.100  INFO 28730 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl +2023-10-27 13:38:16.642  WARN 28730 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:16.792  INFO 28730 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:38:26.366  INFO 28730 --- [ main] e.w.q.c.d.ner.Application  : Started Application in 42.302 seconds (JVM running for 49.157) +2023-10-27 13:38:27.222  WARN 28730 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NER-DBpediaSpotlight, managementUrl=http://0.0.0.0:10009/actuator, healthUrl=http://0.0.0.0:10009/actuator/health, serviceUrl=http://0.0.0.0:10009/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 13:38:46.636  INFO 28730 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as d00bb262ec2f + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:54.624  INFO 30121 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30121 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) +2023-10-27 13:38:54.708 DEBUG 30121 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:54.727  INFO 30121 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:39:18.771  WARN 30121 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:19.291  WARN 30121 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:19.416  WARN 30121 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! +2023-10-27 13:39:19.416 DEBUG 30121 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 13:39:19.457 DEBUG 30121 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 13:39:19.457  INFO 30121 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@591e58fa +2023-10-27 13:39:19.628 DEBUG 30121 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate +2023-10-27 13:39:19.629  INFO 30121 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@54361a9 +2023-10-27 13:39:19.631  INFO 30121 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@5217f3d0 +2023-10-27 13:39:19.751  INFO 30121 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 10009 +spring.application.name = NER-DBpediaSpotlight +spring.application.description = NER-DBpediaSpotlight is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:19.867  INFO 30121 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl +2023-10-27 13:39:25.304  WARN 30121 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:25.455  INFO 30121 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:39:34.876  WARN 30121 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10009 is already in use +2023-10-27 13:39:35.311 ERROR 30121 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 10009 was already in use. + +Action: + +Identify and stop the process that's listening on port 10009 or configure this application to listen on another port. + +2023-10-27 13:53:36.220  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:36.229  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:36.308  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:36.589  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1a2f4a84 +2023-10-27 13:53:36.698  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52d797bd +2023-10-27 13:53:36.715 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:36.932  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:36.933  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:37.181 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:37.181  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql +2023-10-27 13:53:37.198 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? +2023-10-27 13:53:37.199  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Which universities have more than 200000 students?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:53:37.199 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Which+universities+have+more+than+200000+students%3F&confidence=0.1 +2023-10-27 13:53:37.232 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Which+universities+have+more+than+200000+students%3F&confidence=0.1 +2023-10-27 13:53:37.253 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:53:37.303  INFO 28730 --- [o-10009-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2026780901 +2023-10-27 13:53:37.889 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3b511603 +2023-10-27 13:53:37.889 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:37.889 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:53:37.930  INFO 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:53:37.941  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Which universities have more than 200000 students?": {"types":"","confidence":"0.1","text":"Which universities have more than 200000 students?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http://dbpedia.org/resource/University","support":"26706","types":"","surfaceForm":"universities","offset":"6","similarityScore":"0.9992043832290363","percentageOfSecondRank":"3.0546331909940013E-4"},{"URI":"http://dbpedia.org/resource/Student","support":"5217","types":"","surfaceForm":"students","offset":"41","similarityScore":"0.9978890340989601","percentageOfSecondRank":"0.0012102350911022072"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:53:37.944 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Langues_d'oïl at (0,5) +2023-10-27 13:53:37.944 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/University at (6,18) +2023-10-27 13:53:37.944 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Student at (41,49) +2023-10-27 13:53:37.950 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:37.951  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1795e04e +2023-10-27 13:53:37.951 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:37.966  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.967  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.967 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.979  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3292da4b +2023-10-27 13:53:37.979 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:37.981  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.982  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.982 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.989  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@162c51de +2023-10-27 13:53:37.990 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:37.993  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.994  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:37.994 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:38.001 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 1774 ms +2023-10-27 13:53:59.822  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:53:59.823  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:53:59.823  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:53:59.823  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7e84a76f +2023-10-27 13:53:59.832  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@704356cf +2023-10-27 13:53:59.833 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:59.834  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:59.834  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:59.844 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 +2023-10-27 13:53:59.845  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 found in urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e at http://localhost:8080/sparql +2023-10-27 13:53:59.847 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? +2023-10-27 13:53:59.847  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "How many casualties were a result of the Troubles?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:53:59.847 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+casualties+were+a+result+of+the+Troubles%3F&confidence=0.1 +2023-10-27 13:53:59.848 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+casualties+were+a+result+of+the+Troubles%3F&confidence=0.1 +2023-10-27 13:53:59.848 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:53:59.848  INFO 28730 --- [io-10009-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2129153376 +2023-10-27 13:53:59.928 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@551f9e4b +2023-10-27 13:53:59.928 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:59.929 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:53:59.929  INFO 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:53:59.930  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "How many casualties were a result of the Troubles?": {"types":"","confidence":"0.1","text":"How many casualties were a result of the Troubles?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http://dbpedia.org/resource/World_War_II","support":"245778","types":"Wikidata:Q1656682,DUL:Event,Schema:Event,DBpedia:SocietalEvent,DBpedia:Event,DBpedia:MilitaryConflict","surfaceForm":"casualties","offset":"9","similarityScore":"0.7115971944034843","percentageOfSecondRank":"0.27879388899193086"},{"URI":"http://dbpedia.org/resource/Result","support":"116","types":"","surfaceForm":"result","offset":"27","similarityScore":"0.5940923665432016","percentageOfSecondRank":"0.39254965218601906"},{"URI":"http://dbpedia.org/resource/The_Troubles","support":"3258","types":"Wikidata:Q1656682,DUL:Event,Schema:Event,DBpedia:SocietalEvent,DBpedia:Event,DBpedia:MilitaryConflict","surfaceForm":"Troubles","offset":"41","similarityScore":"0.9999921594188516","percentageOfSecondRank":"6.739142523895894E-6"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/How_(TV_series) at (0,3) +2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/World_War_II at (9,19) +2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Result at (27,33) +2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/The_Troubles at (41,49) +2023-10-27 13:53:59.937 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 +2023-10-27 13:53:59.937  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@275ae132 +2023-10-27 13:53:59.938 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:59.939  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.940  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.940 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.948  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ccf8b28 +2023-10-27 13:53:59.949 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:59.951  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.951  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.951 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.959  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68712a73 +2023-10-27 13:53:59.960 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:59.962  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.962  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.962 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.969  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@41b51cf0 +2023-10-27 13:53:59.969 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:59.971  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.972  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.972 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.980 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 158 ms +2023-10-27 13:54:07.001  INFO 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.001  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.001  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.002  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@890a3c +2023-10-27 13:54:07.038  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b68ef5 +2023-10-27 13:54:07.039 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:07.040  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:07.040  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:07.047 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 +2023-10-27 13:54:07.047  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql +2023-10-27 13:54:07.049 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? +2023-10-27 13:54:07.049  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Where does the Nutri-Score originate from?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:54:07.050 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Where+does+the+Nutri-Score+originate+from%3F&confidence=0.1 +2023-10-27 13:54:07.050 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Where+does+the+Nutri-Score+originate+from%3F&confidence=0.1 +2023-10-27 13:54:07.050 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:54:07.050  INFO 28730 --- [io-10009-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1413778831 +2023-10-27 13:54:07.120 DEBUG 28730 --- [io-10009-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@382fa779 +2023-10-27 13:54:07.120 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:07.120 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:54:07.121  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:54:07.121  WARN 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "Where does the Nutri-Score originate from?": {"types":"","confidence":"0.1","text":"Where does the Nutri-Score originate from?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Wikipedia","support":"107729","types":"Wikidata:Q386724,Schema:WebSite,Schema:CreativeWork,DBpedia:Work,DBpedia:Website","surfaceForm":"Where","offset":"0","similarityScore":"0.9999996217001984","percentageOfSecondRank":"3.1849740674184767E-7"},{"URI":"http://dbpedia.org/resource/Anatomical_terms_of_muscle","support":"203","types":"","surfaceForm":"originate","offset":"27","similarityScore":"0.9999999385903938","percentageOfSecondRank":"5.9259551680959567E-8"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:54:07.121 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/Wikipedia at (0,5) +2023-10-27 13:54:07.121 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Anatomical_terms_of_muscle at (27,36) +2023-10-27 13:54:07.128 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 +2023-10-27 13:54:07.128  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70bf82aa +2023-10-27 13:54:07.128 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:07.130  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.130  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.130 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.137  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40ce7b6e +2023-10-27 13:54:07.137 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:07.139  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.139  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.139 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:07.146 DEBUG 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : processing took: 145 ms +2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@32c52a89 +2023-10-27 13:54:23.883  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c02d2a1 +2023-10-27 13:54:23.883 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:23.884  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:23.885  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:23.892 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:23.892  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql +2023-10-27 13:54:23.895 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:23.895  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "What are the German names of academic disciplines containing “linguistik”?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:54:23.896 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 +2023-10-27 13:54:23.896 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 +2023-10-27 13:54:23.896 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:54:23.896  INFO 28730 --- [io-10009-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-822409499 +2023-10-27 13:54:23.965 DEBUG 28730 --- [io-10009-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7d3fd89a +2023-10-27 13:54:23.965 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:23.965 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:54:23.966  INFO 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:54:23.966  WARN 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "What are the German names of academic disciplines containing “linguistik”?": {"types":"","confidence":"0.1","text":"What are the German names of academic disciplines containing “linguistik”?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9163943050124096","percentageOfSecondRank":"0.07950895145913986"},{"URI":"http://dbpedia.org/resource/German_name","support":"266","types":"","surfaceForm":"German names","offset":"13","similarityScore":"0.9999999793085694","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Outline_of_academic_disciplines","support":"167","types":"","surfaceForm":"academic disciplines","offset":"29","similarityScore":"0.9987039161368536","percentageOfSecondRank":"0.0012977655012844157"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:54:23.966 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/String_theory at (0,4) +2023-10-27 13:54:23.966 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/German_name at (13,25) +2023-10-27 13:54:23.966 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Outline_of_academic_disciplines at (29,49) +2023-10-27 13:54:23.972 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:23.972  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66b534d6 +2023-10-27 13:54:23.972 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:23.974  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.974  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.974 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.982  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c88657b +2023-10-27 13:54:23.982 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:23.984  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.984  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.984 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.990  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ee8d79a +2023-10-27 13:54:23.991 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:23.993  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.994  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.994 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:24.000 DEBUG 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : processing took: 126 ms +2023-10-27 13:55:12.640  INFO 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:12.640  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:12.641  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:12.641  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@394a1a35 +2023-10-27 13:55:12.652  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@378de36c +2023-10-27 13:55:12.652 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:12.654  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:12.654  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:12.666 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 +2023-10-27 13:55:12.666  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql +2023-10-27 13:55:12.668 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the magazine in which hunter x hunter is published established? +2023-10-27 13:55:12.669  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "when was the magazine in which hunter x hunter is published established?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:55:12.669 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=when+was+the+magazine+in+which+hunter+x+hunter+is+published+established%3F&confidence=0.1 +2023-10-27 13:55:12.669 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=when+was+the+magazine+in+which+hunter+x+hunter+is+published+established%3F&confidence=0.1 +2023-10-27 13:55:12.669 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:55:12.670  INFO 28730 --- [io-10009-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-800640787 +2023-10-27 13:55:12.780 DEBUG 28730 --- [io-10009-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1f42de06 +2023-10-27 13:55:12.781 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:55:12.781 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:55:12.782  INFO 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:55:12.783  WARN 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "when was the magazine in which hunter x hunter is published established?": {"types":"","confidence":"0.1","text":"when was the magazine in which hunter x hunter is published established?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Magazine","support":"15474","types":"","surfaceForm":"magazine","offset":"13","similarityScore":"0.9995476090677474","percentageOfSecondRank":"2.8729358708125366E-4"},{"URI":"http://dbpedia.org/resource/Hunting","support":"6553","types":"","surfaceForm":"hunter","offset":"31","similarityScore":"0.9772782425351035","percentageOfSecondRank":"0.017973479855582626"},{"URI":"http://dbpedia.org/resource/Hunting","support":"6553","types":"","surfaceForm":"hunter","offset":"40","similarityScore":"0.9772782425351035","percentageOfSecondRank":"0.017973479855582626"},{"URI":"http://dbpedia.org/resource/Publishing","support":"8026","types":"","surfaceForm":"published","offset":"50","similarityScore":"0.984572646568991","percentageOfSecondRank":"0.0070298992893083456"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Magazine at (13,21) +2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Hunting at (31,37) +2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Hunting at (40,46) +2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Publishing at (50,59) +2023-10-27 13:55:12.791 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 +2023-10-27 13:55:12.792  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@470cd801 +2023-10-27 13:55:12.792 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:12.794  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.795  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.795 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.804  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6714b1fc +2023-10-27 13:55:12.804 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:12.807  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.807  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.807 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.817  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@169f1618 +2023-10-27 13:55:12.817 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:12.820  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.821  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.821 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.832  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1fa44823 +2023-10-27 13:55:12.832 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:12.835  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "59"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.835  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "59"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.836 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "59"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:12.844 DEBUG 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : processing took: 204 ms +2023-10-27 13:56:30.286  INFO 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:30.286  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:30.286  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:30.287  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@53320b04 +2023-10-27 13:56:30.297  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5df5ff12 +2023-10-27 13:56:30.298 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:56:30.299  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:30.299  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:30.308 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d +2023-10-27 13:56:30.308  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql +2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Goethe’s unmarried partner born ? +2023-10-27 13:56:30.312  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Where was Goethe’s unmarried partner born ?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Where+was+Goethe%E2%80%99s+unmarried+partner+born+%3F&confidence=0.1 +2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Where+was+Goethe%E2%80%99s+unmarried+partner+born+%3F&confidence=0.1 +2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:56:30.313  INFO 28730 --- [io-10009-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=500421203 +2023-10-27 13:56:30.435 DEBUG 28730 --- [io-10009-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5f61a79f +2023-10-27 13:56:30.435 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:56:30.435 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:56:30.436  INFO 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:56:30.436  WARN 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "Where was Goethe’s unmarried partner born ?": {"types":"","confidence":"0.1","text":"Where was Goethe's unmarried partner born ?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Wikipedia","support":"107729","types":"Wikidata:Q386724,Schema:WebSite,Schema:CreativeWork,DBpedia:Work,DBpedia:Website","surfaceForm":"Where","offset":"0","similarityScore":"0.9994066269167536","percentageOfSecondRank":"4.998678803169592E-4"},{"URI":"http://dbpedia.org/resource/Johann_Wolfgang_von_Goethe","support":"4887","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q36180,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Writer","surfaceForm":"Goethe","offset":"10","similarityScore":"0.9996527632025682","percentageOfSecondRank":"3.4396705952772876E-4"},{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"unmarried","offset":"19","similarityScore":"0.7906641024447322","percentageOfSecondRank":"0.1410520863079856"},{"URI":"http://dbpedia.org/resource/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"37","similarityScore":"0.5287284991581187","percentageOfSecondRank":"0.4252420523415806"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Wikipedia at (0,5) +2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Johann_Wolfgang_von_Goethe at (10,16) +2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Marriage at (19,28) +2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Childbirth at (37,41) +2023-10-27 13:56:30.441 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d +2023-10-27 13:56:30.442  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d1ece0e +2023-10-27 13:56:30.442 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:56:30.444  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.445  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.445 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.452  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@275dc219 +2023-10-27 13:56:30.452 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:56:30.453  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.454  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.454 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.462  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ce70a66 +2023-10-27 13:56:30.462 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:56:30.464  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.464  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.464 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.471  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ee8073a +2023-10-27 13:56:30.471 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:56:30.472  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.473  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.473 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:56:30.480 DEBUG 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : processing took: 194 ms +2023-10-27 13:57:36.606  INFO 28730 --- [io-10009-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.607  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.607  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.608  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5dab68ca +2023-10-27 13:57:36.698  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43929262 +2023-10-27 13:57:36.698 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:36.751  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:36.752  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:36.766 DEBUG 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:36.766  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql +2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? +2023-10-27 13:57:36.770  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "How many people died due to the Great Leap Forward according to the highest estimate?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&confidence=0.1 +2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&confidence=0.1 +2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:57:36.770  INFO 28730 --- [io-10009-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-667497096 +2023-10-27 13:57:36.869 DEBUG 28730 --- [io-10009-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3b6f551a +2023-10-27 13:57:36.869 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:36.869 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:57:36.870  INFO 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:57:36.870  WARN 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "How many people died due to the Great Leap Forward according to the highest estimate?": {"types":"","confidence":"0.1","text":"How many people died due to the Great Leap Forward according to the highest estimate?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http://dbpedia.org/resource/Death","support":"8975","types":"","surfaceForm":"died","offset":"16","similarityScore":"0.872674229363569","percentageOfSecondRank":"0.10297061468131118"},{"URI":"http://dbpedia.org/resource/Great_Leap_Forward","support":"751","types":"","surfaceForm":"Great Leap Forward","offset":"32","similarityScore":"0.9999999992580939","percentageOfSecondRank":"7.41910872255363E-10"},{"URI":"http://dbpedia.org/resource/Estimator","support":"1312","types":"","surfaceForm":"estimate","offset":"76","similarityScore":"0.5929697747988631","percentageOfSecondRank":"0.34844706652701124"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/How_(TV_series) at (0,3) +2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Death at (16,20) +2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Great_Leap_Forward at (32,50) +2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Estimator at (76,84) +2023-10-27 13:57:36.876 DEBUG 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:36.877  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d849785 +2023-10-27 13:57:36.878 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:36.880  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.881  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.881 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.887  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6a5203d5 +2023-10-27 13:57:36.887 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:36.889  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.889  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.889 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.898  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@616d933d +2023-10-27 13:57:36.898 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:36.900  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.900  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.900 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.906  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@206bdd8f +2023-10-27 13:57:36.906 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:36.908  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "76"^^xsd:nonNegativeInteger . + _:b1 oa:end "84"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.908  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "76"^^xsd:nonNegativeInteger . + _:b1 oa:end "84"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.908 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "76"^^xsd:nonNegativeInteger . + _:b1 oa:end "84"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:36.915 DEBUG 28730 --- [io-10009-exec-2] e.w.q.component.QanaryServiceController  : processing took: 308 ms +2023-10-27 13:57:46.554  INFO 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:46.554  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:46.554  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:46.555  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@15d8d943 +2023-10-27 13:57:46.564  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30c05826 +2023-10-27 13:57:46.564 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:46.565  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:46.565  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:46.572 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 +2023-10-27 13:57:46.572  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql +2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in the country where ghost in the shell is born, who is the current head of the state? +2023-10-27 13:57:46.574  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "in the country where ghost in the shell is born, who is the current head of the state?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=in+the+country+where+ghost+in+the+shell+is+born%2C+who+is+the+current+head+of+the+state%3F&confidence=0.1 +2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=in+the+country+where+ghost+in+the+shell+is+born%2C+who+is+the+current+head+of+the+state%3F&confidence=0.1 +2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:57:46.574  INFO 28730 --- [io-10009-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-667966013 +2023-10-27 13:57:46.666 DEBUG 28730 --- [io-10009-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@15231eb4 +2023-10-27 13:57:46.666 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:46.666 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:57:46.667  INFO 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:57:46.667  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "in the country where ghost in the shell is born, who is the current head of the state?": {"types":"","confidence":"0.1","text":"in the country where ghost in the shell is born, who is the current head of the state?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Gastropod_shell","support":"4852","types":"","surfaceForm":"shell","offset":"34","similarityScore":"0.9562139715107217","percentageOfSecondRank":"0.02847974911959475"},{"URI":"http://dbpedia.org/resource/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"43","similarityScore":"0.5396723375426807","percentageOfSecondRank":"0.2808606632655506"},{"URI":"http://dbpedia.org/resource/Electric_current","support":"8324","types":"","surfaceForm":"current","offset":"60","similarityScore":"0.9960693453781021","percentageOfSecondRank":"0.002277980640037344"},{"URI":"http://dbpedia.org/resource/Head","support":"1287","types":"Wikidata:Q4936952,DBpedia:AnatomicalStructure","surfaceForm":"head","offset":"68","similarityScore":"0.5411224071877075","percentageOfSecondRank":"0.5745393755057722"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Gastropod_shell at (34,39) +2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Childbirth at (43,47) +2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Electric_current at (60,67) +2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Head at (68,72) +2023-10-27 13:57:46.673 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 +2023-10-27 13:57:46.673  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4662df92 +2023-10-27 13:57:46.673 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:46.674  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.675  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.675 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.682  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7451ae10 +2023-10-27 13:57:46.683 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:46.684  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "43"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.684  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "43"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.684 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "43"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.690  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@b15ca03 +2023-10-27 13:57:46.690 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:46.692  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.692  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.692 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "67"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.700  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64eb36b +2023-10-27 13:57:46.700 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:46.702  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "68"^^xsd:nonNegativeInteger . + _:b1 oa:end "72"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.702  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "68"^^xsd:nonNegativeInteger . + _:b1 oa:end "72"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.702 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "68"^^xsd:nonNegativeInteger . + _:b1 oa:end "72"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:46.709 DEBUG 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : processing took: 155 ms +2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@219bff48 +2023-10-27 13:57:59.914  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@644a906d +2023-10-27 13:57:59.914 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:59.915  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:59.916  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:59.921 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 +2023-10-27 13:57:59.921  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql +2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:57:59.923  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&confidence=0.1 +2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&confidence=0.1 +2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:57:59.923  INFO 28730 --- [io-10009-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1961714188 +2023-10-27 13:58:00.009 DEBUG 28730 --- [io-10009-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5bcaf7e4 +2023-10-27 13:58:00.009 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:00.009 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:58:00.009  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:58:00.010  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : The web service response for 'among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?' was empty. However, the JSON response was valid. +2023-10-27 13:58:00.010  WARN 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : nothing recognized for "among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?": {"types":"","confidence":"0.1","text":"among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?","Resources":{"Resource":{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"unmarried","offset":"49","similarityScore":"0.7507170519474562","percentageOfSecondRank":"0.1704633482215701"}},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:58:00.010 DEBUG 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : processing took: 106 ms +2023-10-27 13:58:14.372  INFO 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:14.373  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:14.373  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:14.373  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@78a91238 +2023-10-27 13:58:14.384  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16160bc0 +2023-10-27 13:58:14.384 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:14.385  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:14.385  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:14.390 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 +2023-10-27 13:58:14.390  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql +2023-10-27 13:58:14.392 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation how many plays has William Shakespeare written in the 16th century. +2023-10-27 13:58:14.392  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "how many plays has William Shakespeare written in the 16th century." with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:58:14.392 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=how+many+plays+has+William+Shakespeare+written+in+the+16th+century.&confidence=0.1 +2023-10-27 13:58:14.393 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=how+many+plays+has+William+Shakespeare+written+in+the+16th+century.&confidence=0.1 +2023-10-27 13:58:14.393 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:58:14.393  INFO 28730 --- [io-10009-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-299243259 +2023-10-27 13:58:14.489 DEBUG 28730 --- [io-10009-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7db4589b +2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:58:14.490  INFO 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:58:14.490  WARN 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "how many plays has William Shakespeare written in the 16th century.": {"types":"","confidence":"0.1","text":"how many plays has William Shakespeare written in the 16th century.","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Shakespeare's_plays","support":"459","types":"","surfaceForm":"plays","offset":"9","similarityScore":"0.9922613410305864","percentageOfSecondRank":"0.003053914479892287"},{"URI":"http://dbpedia.org/resource/William_Shakespeare","support":"22536","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"William Shakespeare","offset":"19","similarityScore":"0.9999999996643112","percentageOfSecondRank":"2.03993973861534E-10"},{"URI":"http://dbpedia.org/resource/Century","support":"1508","types":"","surfaceForm":"century","offset":"59","similarityScore":"0.9073682340712212","percentageOfSecondRank":"0.09868732404012398"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Shakespeare's_plays at (9,14) +2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/William_Shakespeare at (19,38) +2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Century at (59,66) +2023-10-27 13:58:14.497 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 +2023-10-27 13:58:14.497  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d3cadc7 +2023-10-27 13:58:14.497 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:14.499  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.499  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.499 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "14"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.505  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b52e7ab +2023-10-27 13:58:14.505 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:14.507  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.507  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.507 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.515  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@73e98dba +2023-10-27 13:58:14.515 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:14.516  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.516  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.516 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:14.522 DEBUG 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : processing took: 149 ms +2023-10-27 13:59:06.025  INFO 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:06.025  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:06.025  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:06.026  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3e494706 +2023-10-27 13:59:06.040  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c109a62 +2023-10-27 13:59:06.040 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:06.042  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:06.042  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:06.056 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:06.056  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql +2023-10-27 13:59:06.058 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was the first female chancellor in Germany ever married? +2023-10-27 13:59:06.058  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Was the first female chancellor in Germany ever married?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:59:06.058 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Was+the+first+female+chancellor+in+Germany+ever+married%3F&confidence=0.1 +2023-10-27 13:59:06.058 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Was+the+first+female+chancellor+in+Germany+ever+married%3F&confidence=0.1 +2023-10-27 13:59:06.059 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:59:06.059  INFO 28730 --- [io-10009-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1297410133 +2023-10-27 13:59:06.166 DEBUG 28730 --- [io-10009-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2f89cb07 +2023-10-27 13:59:06.166 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:59:06.166 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:59:06.166  INFO 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:59:06.167  WARN 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Was the first female chancellor in Germany ever married?": {"types":"","confidence":"0.1","text":"Was the first female chancellor in Germany ever married?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Was-sceptre","support":"405","types":"","surfaceForm":"Was","offset":"0","similarityScore":"0.6949214105435765","percentageOfSecondRank":"0.19657466828953704"},{"URI":"http://dbpedia.org/resource/Female","support":"3402","types":"","surfaceForm":"female","offset":"14","similarityScore":"0.9760797345315791","percentageOfSecondRank":"0.021752665251946413"},{"URI":"http://dbpedia.org/resource/Chancellor_of_the_Tang_dynasty","support":"4465","types":"","surfaceForm":"chancellor","offset":"21","similarityScore":"0.6170828891164983","percentageOfSecondRank":"0.30313262463352586"},{"URI":"http://dbpedia.org/resource/Germany","support":"222752","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"Germany","offset":"35","similarityScore":"0.9931132932373623","percentageOfSecondRank":"0.003712045309293807"},{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"married","offset":"48","similarityScore":"0.9998415970101485","percentageOfSecondRank":"1.0895191091179369E-4"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/Was-sceptre at (0,3) +2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Female at (14,20) +2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Chancellor_of_the_Tang_dynasty at (21,31) +2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Germany at (35,42) +2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Marriage at (48,55) +2023-10-27 13:59:06.172 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:06.173  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b0cc887 +2023-10-27 13:59:06.173 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:06.174  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.174  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.174 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.182  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@23379a0e +2023-10-27 13:59:06.182 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:06.183  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.184  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.184 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.191  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a9e325a +2023-10-27 13:59:06.191 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:06.192  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.192  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.192 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.201  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b2e17fd +2023-10-27 13:59:06.201 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:06.203  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.203  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.203 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.209  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66dba4ef +2023-10-27 13:59:06.210 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:06.212  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "48"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.213  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "48"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.213 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "48"^^xsd:nonNegativeInteger . + _:b1 oa:end "55"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:06.220 DEBUG 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : processing took: 195 ms +2023-10-27 13:59:36.402  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.402  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.403  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.403  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1ae8b0e7 +2023-10-27 13:59:36.416  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67b7092e +2023-10-27 13:59:36.416 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:36.418  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:36.418  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:36.425 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 +2023-10-27 13:59:36.426  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql +2023-10-27 13:59:36.427 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:36.428  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Who are the actresses in Portrait of a Lady on Fire?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 13:59:36.428 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+are+the+actresses+in+Portrait+of+a+Lady+on+Fire%3F&confidence=0.1 +2023-10-27 13:59:36.428 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+are+the+actresses+in+Portrait+of+a+Lady+on+Fire%3F&confidence=0.1 +2023-10-27 13:59:36.428 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:59:36.429  INFO 28730 --- [o-10009-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2039112795 +2023-10-27 13:59:36.521 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@658df95a +2023-10-27 13:59:36.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:59:36.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:59:36.522  INFO 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 13:59:36.522  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Who are the actresses in Portrait of a Lady on Fire?": {"types":"","confidence":"0.1","text":"Who are the actresses in Portrait of a Lady on Fire?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.964961454959486","percentageOfSecondRank":"0.023868551027194877"},{"URI":"http://dbpedia.org/resource/Actor","support":"36200","types":"","surfaceForm":"actresses","offset":"12","similarityScore":"0.9983577649855008","percentageOfSecondRank":"0.0016444749197604754"},{"URI":"http://dbpedia.org/resource/Portrait","support":"3792","types":"","surfaceForm":"Portrait","offset":"25","similarityScore":"0.9969461697226214","percentageOfSecondRank":"0.00305490863859732"},{"URI":"http://dbpedia.org/resource/Lady","support":"640","types":"","surfaceForm":"Lady","offset":"39","similarityScore":"0.9930860536698901","percentageOfSecondRank":"0.004153555903981608"},{"URI":"http://dbpedia.org/resource/Fire","support":"6819","types":"","surfaceForm":"Fire","offset":"47","similarityScore":"0.9992098063133944","percentageOfSecondRank":"5.09974769596E-4"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 13:59:36.522 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/The_Who at (0,3) +2023-10-27 13:59:36.522 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Actor at (12,21) +2023-10-27 13:59:36.522 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Portrait at (25,33) +2023-10-27 13:59:36.523 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Lady at (39,43) +2023-10-27 13:59:36.523 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Fire at (47,51) +2023-10-27 13:59:36.528 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 +2023-10-27 13:59:36.529  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3abd1284 +2023-10-27 13:59:36.529 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:36.531  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.531  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.531 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.537  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@659c9284 +2023-10-27 13:59:36.537 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:36.539  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.539  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.539 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.546  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@480f9c03 +2023-10-27 13:59:36.547 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:36.549  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.549  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.549 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.557  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4242eb71 +2023-10-27 13:59:36.557 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:36.559  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "39"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.559  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "39"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.559 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "39"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.567  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@10b9e88f +2023-10-27 13:59:36.568 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:36.569  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.569  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.569 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:36.576 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 174 ms +2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5600627f +2023-10-27 14:02:30.403  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f587781 +2023-10-27 14:02:30.403 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:30.404  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:30.404  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:30.409 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:30.409  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql +2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded the Worpswede artist colony ? +2023-10-27 14:02:30.411  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Who founded the Worpswede artist colony ?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+founded+the+Worpswede+artist+colony+%3F&confidence=0.1 +2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+founded+the+Worpswede+artist+colony+%3F&confidence=0.1 +2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:02:30.411  INFO 28730 --- [io-10009-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=48380153 +2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@799eda7c +2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:02:30.502  INFO 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:02:30.502  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Who founded the Worpswede artist colony ?": {"types":"","confidence":"0.1","text":"Who founded the Worpswede artist colony ?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9733013701635437","percentageOfSecondRank":"0.01992678080896168"},{"URI":"http://dbpedia.org/resource/Worpswede","support":"135","types":"Wikidata:Q486972,Schema:Place,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Settlement","surfaceForm":"Worpswede","offset":"16","similarityScore":"0.999999999623796","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Colony","support":"3218","types":"","surfaceForm":"colony","offset":"33","similarityScore":"0.9324619339358211","percentageOfSecondRank":"0.023633178303685057"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/The_Who at (0,3) +2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Worpswede at (16,25) +2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Colony at (33,39) +2023-10-27 14:02:30.507 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:30.507  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c584caa +2023-10-27 14:02:30.507 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:30.509  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.509  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.509 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.517  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40d0d2df +2023-10-27 14:02:30.517 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:30.518  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.519  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.519 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.525  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d086253 +2023-10-27 14:02:30.525 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:30.527  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.527  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.527 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:30.537 DEBUG 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : processing took: 144 ms +2023-10-27 14:03:30.482  INFO 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:30.482  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:30.482  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:30.487  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1d1027d5 +2023-10-27 14:03:30.495  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@524cb325 +2023-10-27 14:03:30.495 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:30.496  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:30.496  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:30.505 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e +2023-10-27 14:03:30.505  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql +2023-10-27 14:03:30.507 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Whom did Clara Westhoff marry? +2023-10-27 14:03:30.507  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Whom did Clara Westhoff marry?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:03:30.507 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Whom+did+Clara+Westhoff+marry%3F&confidence=0.1 +2023-10-27 14:03:30.507 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Whom+did+Clara+Westhoff+marry%3F&confidence=0.1 +2023-10-27 14:03:30.508 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:30.508  INFO 28730 --- [io-10009-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1754512984 +2023-10-27 14:03:30.600 DEBUG 28730 --- [io-10009-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5ecff8b +2023-10-27 14:03:30.601 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:30.601 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:03:30.601  INFO 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:03:30.601  WARN 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Whom did Clara Westhoff marry?": {"types":"","confidence":"0.1","text":"Whom did Clara Westhoff marry?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Who_(pronoun)","support":"294","types":"","surfaceForm":"Whom","offset":"0","similarityScore":"0.9966531760629121","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Clara_Westhoff","support":"22","types":"","surfaceForm":"Clara Westhoff","offset":"9","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"marry","offset":"24","similarityScore":"0.9973535550463735","percentageOfSecondRank":"0.0023825723655345066"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:03:30.602 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Who_(pronoun) at (0,4) +2023-10-27 14:03:30.602 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Clara_Westhoff at (9,23) +2023-10-27 14:03:30.602 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Marriage at (24,29) +2023-10-27 14:03:30.608 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e +2023-10-27 14:03:30.608  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@195e5e6c +2023-10-27 14:03:30.608 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:30.610  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.610  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.610 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.619  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ebc03f9 +2023-10-27 14:03:30.619 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:30.620  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.620  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.620 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.625  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76393c73 +2023-10-27 14:03:30.626 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:30.627  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.627  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.627 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "29"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:30.634 DEBUG 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : processing took: 152 ms +2023-10-27 14:04:06.244  INFO 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:06.244  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:06.245  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:06.245  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@79a3b5d0 +2023-10-27 14:04:06.255  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3264545c +2023-10-27 14:04:06.255 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:06.256  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:06.256  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:06.262 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:06.262  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql +2023-10-27 14:04:06.263 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? +2023-10-27 14:04:06.264  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "When was Rumi born?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:04:06.264 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 +2023-10-27 14:04:06.264 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 +2023-10-27 14:04:06.264 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:04:06.264  INFO 28730 --- [io-10009-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1680371682 +2023-10-27 14:04:06.358 DEBUG 28730 --- [io-10009-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@22191f1a +2023-10-27 14:04:06.358 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:04:06.358 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:04:06.359  INFO 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:04:06.359  WARN 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "When was Rumi born?": {"types":"","confidence":"0.1","text":"When was Rumi born?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.89590991274047","percentageOfSecondRank":"0.05696410439286022"},{"URI":"http://dbpedia.org/resource/Rumi","support":"1111","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q2566598,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Religious","surfaceForm":"Rumi","offset":"9","similarityScore":"0.9981752230789295","percentageOfSecondRank":"0.00143775838733992"},{"URI":"http://dbpedia.org/resource/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"14","similarityScore":"0.4669742058601906","percentageOfSecondRank":"0.390265943553758"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:04:06.359 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Time at (0,4) +2023-10-27 14:04:06.359 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Rumi at (9,13) +2023-10-27 14:04:06.359 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Childbirth at (14,18) +2023-10-27 14:04:06.368 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:06.369  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@467033bc +2023-10-27 14:04:06.369 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:06.371  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.371  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.372 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.380  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5626599a +2023-10-27 14:04:06.380 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:06.383  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.384  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.384 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.394  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ef051f0 +2023-10-27 14:04:06.394 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:06.395  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.396  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.396 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:06.404 DEBUG 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : processing took: 160 ms +2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2cc663dc +2023-10-27 14:05:30.920  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43cb116 +2023-10-27 14:05:30.920 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:30.923  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:30.924  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:30.932 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:30.932  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql +2023-10-27 14:05:30.934 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 14:05:30.934  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "in which language does the united stated have the shortest short name?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:05:30.935 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 +2023-10-27 14:05:30.935 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 +2023-10-27 14:05:30.935 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:05:30.936  INFO 28730 --- [io-10009-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-996304361 +2023-10-27 14:05:31.115 DEBUG 28730 --- [io-10009-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@58d3f4da +2023-10-27 14:05:31.115 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:05:31.115 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:05:31.115  INFO 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:05:31.115  WARN 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "in which language does the united stated have the shortest short name?": {"types":"","confidence":"0.1","text":"in which language does the united stated have the shortest short name?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Language","support":"21994","types":"","surfaceForm":"language","offset":"9","similarityScore":"0.9742593246572685","percentageOfSecondRank":"0.01094758442766131"},{"URI":"http://dbpedia.org/resource/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"united stated","offset":"27","similarityScore":"0.9999999994779074","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Short_film","support":"11379","types":"","surfaceForm":"short","offset":"59","similarityScore":"0.9774975252379949","percentageOfSecondRank":"0.011209388443481693"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:05:31.116 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Language at (9,17) +2023-10-27 14:05:31.116 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/United_States at (27,40) +2023-10-27 14:05:31.116 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Short_film at (59,64) +2023-10-27 14:05:31.120 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:31.121  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39865ad7 +2023-10-27 14:05:31.121 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:31.123  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.123  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.123 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.128  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aa6b72b +2023-10-27 14:05:31.129 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:31.130  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.130  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.130 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "40"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.136  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58eb1017 +2023-10-27 14:05:31.136 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:31.137  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.138  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.138 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:31.144 DEBUG 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : processing took: 249 ms +2023-10-27 14:06:40.410  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.410  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.410  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.411  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@11b050ae +2023-10-27 14:06:40.419  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25eb391f +2023-10-27 14:06:40.419 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:40.420  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.420  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.425 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 +2023-10-27 14:06:40.425  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql +2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? +2023-10-27 14:06:40.427  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "How many female Chinese Empresses have there been?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+female+Chinese+Empresses+have+there+been%3F&confidence=0.1 +2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+female+Chinese+Empresses+have+there+been%3F&confidence=0.1 +2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:06:40.427  INFO 28730 --- [o-10009-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-124498332 +2023-10-27 14:06:40.520 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2f0534ab +2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:06:40.521  INFO 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:06:40.521  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "How many female Chinese Empresses have there been?": {"types":"","confidence":"0.1","text":"How many female Chinese Empresses have there been?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http://dbpedia.org/resource/Female","support":"3402","types":"","surfaceForm":"female","offset":"9","similarityScore":"0.9822303367352846","percentageOfSecondRank":"0.016652280533326885"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/How_(TV_series) at (0,3) +2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Female at (9,15) +2023-10-27 14:06:40.525 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 +2023-10-27 14:06:40.525  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ca334c5 +2023-10-27 14:06:40.525 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:40.528  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.528  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.528 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "3"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.533  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@407cd18f +2023-10-27 14:06:40.533 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:40.534  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.535  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.535 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:40.539 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 129 ms +2023-10-27 14:07:12.635  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.636  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.636  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.636  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@31962685 +2023-10-27 14:07:12.648  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51e06d54 +2023-10-27 14:07:12.648 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:12.649  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:12.649  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:12.657 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:12.657  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql +2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? +2023-10-27 14:07:12.659  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "can i play don't starve on play station 4?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=can+i+play+don%27t+starve+on+play+station+4%3F&confidence=0.1 +2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=can+i+play+don%27t+starve+on+play+station+4%3F&confidence=0.1 +2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:07:12.659  INFO 28730 --- [io-10009-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=269900284 +2023-10-27 14:07:12.756 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@59983fd1 +2023-10-27 14:07:12.756 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:07:12.756 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:07:12.757  INFO 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:07:12.757  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "can i play don't starve on play station 4?": {"types":"","confidence":"0.1","text":"can i play don't starve on play station 4?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Play_(theatre)","support":"7630","types":"","surfaceForm":"play","offset":"6","similarityScore":"0.9127271986704101","percentageOfSecondRank":"0.035685518805668164"},{"URI":"http://dbpedia.org/resource/Starvation","support":"985","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"starve","offset":"17","similarityScore":"0.9997056356793862","percentageOfSecondRank":"2.844586467647433E-4"},{"URI":"http://dbpedia.org/resource/Play_(theatre)","support":"7630","types":"","surfaceForm":"play","offset":"27","similarityScore":"0.9127271986704101","percentageOfSecondRank":"0.035685518805668164"},{"URI":"http://dbpedia.org/resource/Train_station","support":"35154","types":"","surfaceForm":"station","offset":"32","similarityScore":"0.5427513027040782","percentageOfSecondRank":"0.6838429576385228"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Play_(theatre) at (6,10) +2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Starvation at (17,23) +2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Play_(theatre) at (27,31) +2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Train_station at (32,39) +2023-10-27 14:07:12.764 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:12.764  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@593a9869 +2023-10-27 14:07:12.764 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:12.766  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "10"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.767  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "10"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.767 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "10"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.777  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@be2d4d7 +2023-10-27 14:07:12.777 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:12.778  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.779  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.779 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.786  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24d374bd +2023-10-27 14:07:12.786 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:12.788  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.788  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.788 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.794  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c2da141 +2023-10-27 14:07:12.794 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:12.796  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.796  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.796 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:12.804 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 169 ms +2023-10-27 14:08:06.282  INFO 28730 --- [io-10009-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.282  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.282  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.283  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2252a93d +2023-10-27 14:08:06.292  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c955307 +2023-10-27 14:08:06.292 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:06.293  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:06.293  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:06.298 DEBUG 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:06.298  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql +2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? +2023-10-27 14:08:06.299  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "What caused Kobe Bryant's Death?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+caused+Kobe+Bryant%27s+Death%3F&confidence=0.1 +2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+caused+Kobe+Bryant%27s+Death%3F&confidence=0.1 +2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:08:06.299  INFO 28730 --- [io-10009-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=335133991 +2023-10-27 14:08:06.389 DEBUG 28730 --- [io-10009-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6da8593c +2023-10-27 14:08:06.389 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:06.389 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:08:06.390  INFO 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:08:06.391  WARN 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "What caused Kobe Bryant's Death?": {"types":"","confidence":"0.1","text":"What caused Kobe Bryant's Death?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9175136785795404","percentageOfSecondRank":"0.07896333724020432"},{"URI":"http://dbpedia.org/resource/Causality","support":"2215","types":"","surfaceForm":"caused","offset":"5","similarityScore":"0.7949455552437151","percentageOfSecondRank":"0.14529861086027074"},{"URI":"http://dbpedia.org/resource/Kobe_Bryant","support":"3650","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"12","similarityScore":"0.7698658739025911","percentageOfSecondRank":"0.2987069880035337"},{"URI":"http://dbpedia.org/resource/Kobe_Bryant","support":"3650","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"17","similarityScore":"0.9999974965931315","percentageOfSecondRank":"2.006131191029701E-6"},{"URI":"http://dbpedia.org/resource/Death","support":"8975","types":"","surfaceForm":"Death","offset":"26","similarityScore":"0.9830394579072976","percentageOfSecondRank":"0.007611053458390156"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:08:06.391 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/String_theory at (0,4) +2023-10-27 14:08:06.391 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Causality at (5,11) +2023-10-27 14:08:06.392 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Kobe_Bryant at (12,16) +2023-10-27 14:08:06.392 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Kobe_Bryant at (17,23) +2023-10-27 14:08:06.392 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Death at (26,31) +2023-10-27 14:08:06.397 DEBUG 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:06.397  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a041ef5 +2023-10-27 14:08:06.397 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:06.399  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.399  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.399 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.405  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c0f73d9 +2023-10-27 14:08:06.406 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:06.407  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.407  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.407 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "11"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.413  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22496abf +2023-10-27 14:08:06.413 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:06.414  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.415  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.415 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.420  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d87a673 +2023-10-27 14:08:06.421 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:06.422  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.422  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.422 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.428  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@770ee280 +2023-10-27 14:08:06.428 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:06.430  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.430  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.430 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:06.436 DEBUG 28730 --- [io-10009-exec-7] e.w.q.component.QanaryServiceController  : processing took: 154 ms +2023-10-27 14:09:43.034  INFO 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:43.035  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:43.035  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:43.035  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@25d5226a +2023-10-27 14:09:43.045  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@152c1745 +2023-10-27 14:09:43.045 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:43.046  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:43.047  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:43.056 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:43.056  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql +2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:09:43.058  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:09:43.058  INFO 28730 --- [io-10009-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2056941755 +2023-10-27 14:09:43.125 DEBUG 28730 --- [io-10009-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 +2023-10-27 14:09:43.125 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:43.125 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:09:43.126  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:09:43.126  WARN 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:09:43.126 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:09:43.126 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:09:43.132 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:43.133  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ad8cedc +2023-10-27 14:09:43.133 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:43.134  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.134  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.134 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.141  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f3b74fd +2023-10-27 14:09:43.141 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:43.142  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.142  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.142 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:43.147 DEBUG 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : processing took: 113 ms +2023-10-27 14:10:25.931  INFO 28730 --- [io-10009-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:25.931  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:25.931  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:25.932  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4107fe03 +2023-10-27 14:10:25.949  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@efd1268 +2023-10-27 14:10:25.949 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:25.950  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.950  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.965 DEBUG 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:25.965  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql +2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:10:25.967  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:10:25.989 DEBUG 28730 --- [io-10009-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 +2023-10-27 14:10:25.989 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:10:25.989 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:10:25.990  WARN 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:10:25.990  WARN 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:10:25.990 DEBUG 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:10:25.990 DEBUG 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:10:25.995 DEBUG 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:25.995  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6ed2ed27 +2023-10-27 14:10:25.995 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:25.996  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.996  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:25.996 DEBUG 28730 --- [io-10009-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:26.008  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e64843d +2023-10-27 14:10:26.009 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:26.014  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:26.014  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:26.014 DEBUG 28730 --- [io-10009-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:26.023 DEBUG 28730 --- [io-10009-exec-8] e.w.q.component.QanaryServiceController  : processing took: 92 ms +2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} +2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} +2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} +2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@aac84e7 +2023-10-27 14:11:01.650  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c8a5975 +2023-10-27 14:11:01.650 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:01.651  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:01.651  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:01.657 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 +2023-10-27 14:11:01.657  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 found in urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d at http://localhost:8080/sparql +2023-10-27 14:11:01.658 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:01.659  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 +2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:11:01.659  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:11:01.660  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:11:01.660 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:11:01.660 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:11:01.664 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 +2023-10-27 14:11:01.664  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29aa413d +2023-10-27 14:11:01.664 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:01.665  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.666  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.666 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.672  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f7c1d2e +2023-10-27 14:11:01.672 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:01.673  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.673  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.673 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:01.677 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 35 ms +2023-10-27 14:11:05.706  INFO 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.707  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.707  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.707  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@24a14b4 +2023-10-27 14:11:05.713  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c99354b +2023-10-27 14:11:05.713 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:05.714  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:05.714  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:05.719 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e +2023-10-27 14:11:05.720  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e found in urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf at http://localhost:8080/sparql +2023-10-27 14:11:05.721 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:05.722  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 +2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:11:05.722  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:11:05.722  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:11:05.723 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:11:05.723 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:11:05.727 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e +2023-10-27 14:11:05.727  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a19442d +2023-10-27 14:11:05.728 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:05.729  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.729  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.729 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.735  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@644da1c7 +2023-10-27 14:11:05.735 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:05.737  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.737  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.737 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:05.742 DEBUG 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : processing took: 35 ms +2023-10-27 14:11:16.569  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.569  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.569  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.570  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@31599f7d +2023-10-27 14:11:16.589  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c00b1ed +2023-10-27 14:11:16.589 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:16.590  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:16.590  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:16.595 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:16.595  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql +2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:16.597  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 +2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 +2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:11:16.597  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached +2023-10-27 14:11:16.597  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:11:16.598 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) +2023-10-27 14:11:16.598 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) +2023-10-27 14:11:16.602 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:16.602  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13c95e4c +2023-10-27 14:11:16.602 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:16.603  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.603  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.603 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "5"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.609  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@423fc2dd +2023-10-27 14:11:16.609 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:11:16.610  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.610  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.610 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:11:16.615 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 46 ms +2023-10-27 14:13:48.181  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.183  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.183  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.183  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3f601f90 +2023-10-27 14:13:48.193  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16c65e48 +2023-10-27 14:13:48.194 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:13:48.195  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:48.195  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:48.203 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d +2023-10-27 14:13:48.203  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d found in urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8 at http://localhost:8080/sparql +2023-10-27 14:13:48.205 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? +2023-10-27 14:13:48.205  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "When was Adidas established?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 +2023-10-27 14:13:48.205 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Adidas+established%3F&confidence=0.1 +2023-10-27 14:13:48.206 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Adidas+established%3F&confidence=0.1 +2023-10-27 14:13:48.206 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:13:48.206  INFO 28730 --- [io-10009-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-415429172 +2023-10-27 14:13:48.276 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@73b143f1 +2023-10-27 14:13:48.276 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:13:48.276 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:13:48.277  INFO 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed +2023-10-27 14:13:48.277  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "When was Adidas established?": {"types":"","confidence":"0.1","text":"When was Adidas established?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.8954267677236311","percentageOfSecondRank":"0.06287945857871995"},{"URI":"http://dbpedia.org/resource/Adidas","support":"3380","types":"","surfaceForm":"Adidas","offset":"9","similarityScore":"0.9999998986180907","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} +2023-10-27 14:13:48.277 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/Time at (0,4) +2023-10-27 14:13:48.277 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Adidas at (9,15) +2023-10-27 14:13:48.282 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d +2023-10-27 14:13:48.283  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c925e88 +2023-10-27 14:13:48.283 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:13:48.284  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.285  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.285 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "0"^^xsd:nonNegativeInteger . + _:b1 oa:end "4"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.291  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68027d4c +2023-10-27 14:13:48.291 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:13:48.293  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.293  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.293 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.299 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 116 ms diff --git a/qanary-component-NER-Dandelion/nohup.out b/qanary-component-NER-Dandelion/nohup.out new file mode 100644 index 000000000..0456682c0 --- /dev/null +++ b/qanary-component-NER-Dandelion/nohup.out @@ -0,0 +1,6022 @@ + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNER -- DandelionNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:21.695  INFO 9649 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9649 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) +2023-10-27 12:09:21.721 DEBUG 9649 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:21.734  INFO 9649 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:09:38.801  WARN 9649 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:39.025  WARN 9649 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:39.147  WARN 9649 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelion' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ner/Dandelion.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ner.Dandelion]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException +2023-10-27 12:09:39.432 ERROR 9649 --- [ main] o.s.boot.SpringApplication  : Application run failed + +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelion' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ner/Dandelion.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ner.Dandelion]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] + at eu.wdaqua.qanary.component.dandelion.ner.Application.main(Application.java:34) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ner.Dandelion]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 25 common frames omitted +Caused by: eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException: null + at eu.wdaqua.qanary.component.dandelion.ner.Dandelion.(Dandelion.java:63) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 27 common frames omitted + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNER -- DandelionNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:49.882  INFO 11762 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11762 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) +2023-10-27 12:15:49.913 DEBUG 11762 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:49.944  INFO 11762 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:16:18.820  WARN 11762 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:19.719  WARN 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:19.949  INFO 11762 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 +2023-10-27 12:16:19.988  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 12:16:20.333 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:20.472 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:20.525 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:20.625  INFO 11762 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 12:16:22.873 DEBUG 11762 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@27494e46 +2023-10-27 12:16:22.878 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:22.920 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:16:22.943  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.294 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:16:22.839"} +2023-10-27 12:16:23.304  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 12:16:23.626  INFO 11762 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6622a690 +2023-10-27 12:16:23.627  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 12:16:23.627 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.627 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.627 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:23.628  INFO 11762 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 12:16:23.679 DEBUG 11762 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30b9eadd +2023-10-27 12:16:23.680 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:23.680 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:16:23.680  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:16:23.681 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:16:23.658"} +2023-10-27 12:16:23.682  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 12:16:23.683  INFO 11762 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@3249a1ce +2023-10-27 12:16:23.709  INFO 11762 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8088 +spring.application.name = DandelionNER +spring.application.description = DandelionNER is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:23.890  INFO 11762 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl +2023-10-27 12:16:29.329  WARN 11762 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:29.537  INFO 11762 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 12:16:39.556  WARN 11762 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8088 is already in use +2023-10-27 12:16:40.495 ERROR 11762 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8088 was already in use. + +Action: + +Identify and stop the process that's listening on port 8088 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNER -- DandelionNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:18:17.182  INFO 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 12774 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) +2023-10-27 12:18:17.185 DEBUG 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:18:17.186  INFO 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:18:19.757  WARN 12774 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:18:19.837  WARN 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:18:19.860  INFO 12774 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 +2023-10-27 12:18:19.863  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 12:18:19.887 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:18:19.897 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:18:19.900 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:18:19.907  INFO 12774 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 12:18:20.369 DEBUG 12774 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b +2023-10-27 12:18:20.371 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:18:20.374 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:18:20.378  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:18:20.421 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:18:20.346"} +2023-10-27 12:18:20.425  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 12:18:20.445  INFO 12774 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 +2023-10-27 12:18:20.445  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 12:18:20.445 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:18:20.445 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:18:20.446 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:18:20.446  INFO 12774 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 +2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:18:20.496  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:18:20.477"} +2023-10-27 12:18:20.497  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 12:18:20.498  INFO 12774 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@412c995d +2023-10-27 12:18:20.502  INFO 12774 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8323 +spring.application.name = DandelionNER +spring.application.description = DandelionNER is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:18:20.515  INFO 12774 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl +2023-10-27 12:18:20.911  WARN 12774 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:18:20.927  INFO 12774 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 12:18:21.844  INFO 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : Started Application in 5.296 seconds (JVM running for 6.004) +2023-10-27 12:18:22.013  INFO 12774 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 3ef7770eb927 +2023-10-27 13:37:21.924  WARN 12774 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNER, managementUrl=http://0.0.0.0:8323/actuator, healthUrl=http://0.0.0.0:8323/actuator/health, serviceUrl=http://0.0.0.0:8323/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNER -- DandelionNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:49.562  INFO 28729 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28729 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) +2023-10-27 13:37:49.575 DEBUG 28729 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:49.595  INFO 28729 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:38:13.119  WARN 28729 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:13.918  WARN 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:14.204  INFO 28729 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 +2023-10-27 13:38:14.302  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 13:38:14.483 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:14.558 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:14.601 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:14.640  INFO 28729 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 13:38:17.583 DEBUG 28729 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b +2023-10-27 13:38:17.604 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:17.638 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:38:17.694  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:18.413 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:38:17.557"} +2023-10-27 13:38:18.435  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 13:38:18.642  INFO 28729 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 +2023-10-27 13:38:18.650  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 13:38:18.654 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:18.654 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:18.662 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:18.663  INFO 28729 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 13:38:18.726 DEBUG 28729 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 +2023-10-27 13:38:18.726 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:18.726 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:38:18.727  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:38:18.727 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:38:18.705"} +2023-10-27 13:38:18.727  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 13:38:18.728  INFO 28729 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@412c995d +2023-10-27 13:38:18.740  INFO 28729 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8323 +spring.application.name = DandelionNER +spring.application.description = DandelionNER is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:18.939  INFO 28729 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl +2023-10-27 13:38:25.034  WARN 28729 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:25.118  INFO 28729 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:38:33.950  WARN 28729 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8323 is already in use +2023-10-27 13:38:34.165 ERROR 28729 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8323 was already in use. + +Action: + +Identify and stop the process that's listening on port 8323 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +DandelionNER -- DandelionNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:54.174  INFO 30120 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30120 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) +2023-10-27 13:38:54.242 DEBUG 30120 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:54.275  INFO 30120 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:39:16.941  WARN 30120 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:17.637  WARN 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:17.680  INFO 30120 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 +2023-10-27 13:39:17.691  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 13:39:18.034 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:18.152 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:18.181 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:18.242  INFO 30120 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 13:39:20.863 DEBUG 30120 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b +2023-10-27 13:39:20.904 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:20.961 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:39:20.980  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:21.507 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:39:20.836"} +2023-10-27 13:39:21.550  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 13:39:21.796  INFO 30120 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 +2023-10-27 13:39:21.797  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated +2023-10-27 13:39:21.799 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:21.799 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:21.851 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:21.851  INFO 30120 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 +2023-10-27 13:39:21.907 DEBUG 30120 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 +2023-10-27 13:39:21.907 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:21.916 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:39:21.929  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:39:21.929 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:39:21.883"} +2023-10-27 13:39:21.929  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected +2023-10-27 13:39:21.931  INFO 30120 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@412c995d +2023-10-27 13:39:22.099  INFO 30120 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8323 +spring.application.name = DandelionNER +spring.application.description = DandelionNER is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:22.322  INFO 30120 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl +2023-10-27 13:39:27.002  WARN 30120 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:27.168  INFO 30120 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:39:34.612  WARN 30120 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8323 is already in use +2023-10-27 13:39:35.194 ERROR 30120 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8323 was already in use. + +Action: + +Identify and stop the process that's listening on port 8323 or configure this application to listen on another port. + +2023-10-27 13:55:30.424  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:30.464  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:30.646  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:30.914  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@50dbd6d2 +2023-10-27 13:55:31.084  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fbc384e +2023-10-27 13:55:31.127 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:31.813  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:31.815  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:31.920 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 +2023-10-27 13:55:31.920  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql +2023-10-27 13:55:31.923 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many public holidays does the state Bavaria have in a year? +2023-10-27 13:55:31.923 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question How many public holidays does the state Bavaria have in a year? +2023-10-27 13:55:31.924 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+public+holidays+does+the+state+Bavaria+have+in+a+year%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:55:31.924 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+public+holidays+does+the+state+Bavaria+have+in+a+year%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:55:31.924 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:55:32.037  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-880252883 +2023-10-27 13:55:32.243 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6268d57f +2023-10-27 13:55:32.244 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:55:32.244 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:55:32.245  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+public+holidays+does+the+state+Bavaria+have+in+a+year%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:55:32.245 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":9,"end":24,"spot":"public holidays","confidence":0.6371,"id":52396,"title":"Public holiday","uri":"http://en.wikipedia.org/wiki/Public_holiday","abstract":"A public holiday, national holiday, federal holiday, statutory holiday, or legal holiday is a holiday generally established by law and is usually a non-working day during the year.","label":"Public holiday","categories":["Holidays","Public sphere"],"types":[]},{"start":40,"end":47,"spot":"Bavaria","confidence":0.8386,"id":3764,"title":"Bavaria","uri":"http://en.wikipedia.org/wiki/Bavaria","abstract":"Bavaria, officially the Free State of Bavaria, is a state in the south-east of Germany. With an area of, Bavaria is the largest German state by land area, comprising roughly a fifth of the total land area of Germany. With over 13 million inhabitants, it is the second largest German state in terms of population only to North Rhine-Westphalia, but due to its large size its population density is below the German average. Major cities include Munich (its capital and largest city, which is also the third largest city in Germany), Nuremberg, and Augsburg.","label":"Bavaria","categories":["Bavaria","Boii","States of Germany","States of the Weimar Republic"],"types":["http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:55:32.220"} +2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":24,"spot":"public holidays","confidence":0.6371,"id":52396,"title":"Public holiday","uri":"http://en.wikipedia.org/wiki/Public_holiday","abstract":"A public holiday, national holiday, federal holiday, statutory holiday, or legal holiday is a holiday generally established by law and is usually a non-working day during the year.","label":"Public holiday","categories":["Holidays","Public sphere"],"types":[]} +2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 +2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 24 +2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":40,"end":47,"spot":"Bavaria","confidence":0.8386,"id":3764,"title":"Bavaria","uri":"http://en.wikipedia.org/wiki/Bavaria","abstract":"Bavaria, officially the Free State of Bavaria, is a state in the south-east of Germany. With an area of, Bavaria is the largest German state by land area, comprising roughly a fifth of the total land area of Germany. With over 13 million inhabitants, it is the second largest German state in terms of population only to North Rhine-Westphalia, but due to its large size its population density is below the German average. Major cities include Munich (its capital and largest city, which is also the third largest city in Germany), Nuremberg, and Augsburg.","label":"Bavaria","categories":["Bavaria","Boii","States of Germany","States of the Weimar Republic"],"types":["http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]} +2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 40 +2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 47 +2023-10-27 13:55:32.253 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 +2023-10-27 13:55:32.254  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@373cab7c +2023-10-27 13:55:32.254 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:32.281  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:32.282  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:32.283 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "24"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:32.302  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@556ecbde +2023-10-27 13:55:32.303 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:32.308  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:32.309  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:32.309 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:32.318 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 1869 ms +2023-10-27 13:57:01.075  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:01.076  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:01.077  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:01.077  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@2d4aee2b +2023-10-27 13:57:01.146  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@238d05f2 +2023-10-27 13:57:01.146 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:01.149  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:01.150  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:01.160 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:01.161  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql +2023-10-27 13:57:01.164 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was the University of Hamburg founded? +2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question When was the University of Hamburg founded? +2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=When+was+the+University+of+Hamburg+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=When+was+the+University+of+Hamburg+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:57:01.165  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1358403397 +2023-10-27 13:57:01.419 DEBUG 12774 --- [nio-8323-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@62b00fc9 +2023-10-27 13:57:01.419 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:01.420 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:57:01.421  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=When+was+the+University+of+Hamburg+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:01.421 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":13,"end":34,"spot":"University of Hamburg","confidence":0.8532,"id":1753136,"title":"University of Hamburg","uri":"http://en.wikipedia.org/wiki/University_of_Hamburg","abstract":"The University of Hamburg (also referred to as UHH) is a public research university in Hamburg, Germany. It was founded on 28 March 1919 by combining the previous General Lecture System, the Hamburg Colonial Institute, and the Academic College. The main campus is located in the central district of Rotherbaum, with affiliated institutes and research centres distributed around the city-state. Seven Nobel Prize winners and one Wolf Prize winner are affiliated with UHH.","label":"University of Hamburg","categories":["1919 establishments in Germany","Educational institutions established in 1919","Universities and colleges in Hamburg","University of Hamburg"],"types":["http://dbpedia.org/ontology/University","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/EducationalInstitution","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:01.383"} +2023-10-27 13:57:01.422 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":13,"end":34,"spot":"University of Hamburg","confidence":0.8532,"id":1753136,"title":"University of Hamburg","uri":"http://en.wikipedia.org/wiki/University_of_Hamburg","abstract":"The University of Hamburg (also referred to as UHH) is a public research university in Hamburg, Germany. It was founded on 28 March 1919 by combining the previous General Lecture System, the Hamburg Colonial Institute, and the Academic College. The main campus is located in the central district of Rotherbaum, with affiliated institutes and research centres distributed around the city-state. Seven Nobel Prize winners and one Wolf Prize winner are affiliated with UHH.","label":"University of Hamburg","categories":["1919 establishments in Germany","Educational institutions established in 1919","Universities and colleges in Hamburg","University of Hamburg"],"types":["http://dbpedia.org/ontology/University","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/EducationalInstitution","http://dbpedia.org/ontology/Agent"]} +2023-10-27 13:57:01.422 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 13 +2023-10-27 13:57:01.422 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 +2023-10-27 13:57:01.431 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:01.431  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18718e02 +2023-10-27 13:57:01.432 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:01.436  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:01.437  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:01.437 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "13"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:01.448 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : processing took: 372 ms +2023-10-27 13:57:49.996  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:49.996  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:49.996  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:49.997  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@3b303948 +2023-10-27 13:57:50.026  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@712aa569 +2023-10-27 13:57:50.026 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:50.028  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:50.029  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:50.037 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:50.037  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql +2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? +2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question How many movies does the Scream franchise have? +2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+does+the+Scream+franchise+have%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+does+the+Scream+franchise+have%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:57:50.041  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1780345356 +2023-10-27 13:57:50.190 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5c877fbc +2023-10-27 13:57:50.190 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:57:50.191  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+does+the+Scream+franchise+have%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":9,"end":15,"spot":"movies","confidence":0.6928,"id":21555729,"title":"Film","uri":"http://en.wikipedia.org/wiki/Film","abstract":"A film also called a movie, motion picture, moving picture, picture, photoplay or (slang) flick is a work of visual art that simulates experiences and otherwise communicates ideas, stories, perceptions, feelings, beauty, or atmosphere through the use of moving images. These images are generally accompanied by sound and, more rarely, other sensory stimulations. The word \"cinema\", short for cinematography, is often used to refer to filmmaking and the film industry, and the art form that is the result of it.","label":"Film","categories":["19th-century inventions","Articles containing video clips","Film","French inventions","Media formats","Visual arts media"],"types":[]},{"start":25,"end":41,"spot":"Scream franchise","confidence":0.8739,"id":9031174,"title":"Scream (franchise)","uri":"http://en.wikipedia.org/wiki/Scream_%28franchise%29","abstract":"Scream is an American murder mystery and slasher franchise that includes six films, a television series, merchandise, and games. The first four films were directed by Wes Craven. The series was created by Kevin Williamson, who wrote the first two films and the fourth; Ehren Kruger wrote the third. The fifth and sixth installments were directed by Matt Bettinelli-Olpin and Tyler Gillett, with Guy Busick and James Vanderbilt serving as writers and Williamson returning as executive producer. Dimension Films produced the first four films. Spyglass Media Group took over the rights from the fifth film on with Paramount Pictures distributing. The film series has grossed over at the global box office.","label":"Scream","categories":["Horror film franchises","Mass media franchises introduced in 1996","Miramax franchises","Paramount Pictures franchises","Scream (franchise)"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:50.167"} +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":15,"spot":"movies","confidence":0.6928,"id":21555729,"title":"Film","uri":"http://en.wikipedia.org/wiki/Film","abstract":"A film also called a movie, motion picture, moving picture, picture, photoplay or (slang) flick is a work of visual art that simulates experiences and otherwise communicates ideas, stories, perceptions, feelings, beauty, or atmosphere through the use of moving images. These images are generally accompanied by sound and, more rarely, other sensory stimulations. The word \"cinema\", short for cinematography, is often used to refer to filmmaking and the film industry, and the art form that is the result of it.","label":"Film","categories":["19th-century inventions","Articles containing video clips","Film","French inventions","Media formats","Visual arts media"],"types":[]} +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 15 +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":25,"end":41,"spot":"Scream franchise","confidence":0.8739,"id":9031174,"title":"Scream (franchise)","uri":"http://en.wikipedia.org/wiki/Scream_%28franchise%29","abstract":"Scream is an American murder mystery and slasher franchise that includes six films, a television series, merchandise, and games. The first four films were directed by Wes Craven. The series was created by Kevin Williamson, who wrote the first two films and the fourth; Ehren Kruger wrote the third. The fifth and sixth installments were directed by Matt Bettinelli-Olpin and Tyler Gillett, with Guy Busick and James Vanderbilt serving as writers and Williamson returning as executive producer. Dimension Films produced the first four films. Spyglass Media Group took over the rights from the fifth film on with Paramount Pictures distributing. The film series has grossed over at the global box office.","label":"Scream","categories":["Horror film franchises","Mass media franchises introduced in 1996","Miramax franchises","Paramount Pictures franchises","Scream (franchise)"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]} +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 +2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 41 +2023-10-27 13:57:50.201 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:50.202  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66c7e71d +2023-10-27 13:57:50.202 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:50.204  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:50.204  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:50.204 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:50.211  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@42620741 +2023-10-27 13:57:50.212 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:50.214  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:50.215  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:50.215 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "25"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:50.221 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 225 ms +2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@7232d4f5 +2023-10-27 13:58:44.127  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ebea5bb +2023-10-27 13:58:44.127 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:44.130  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:44.131  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:44.138 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:44.139  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql +2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:44.143 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:58:44.143  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-612690955 +2023-10-27 13:58:44.267 DEBUG 12774 --- [nio-8323-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@766cccfe +2023-10-27 13:58:44.267 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:44.267 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:58:44.268  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":24,"end":32,"spot":"Free Guy","confidence":0.9181,"id":60203476,"title":"Free Guy","uri":"http://en.wikipedia.org/wiki/Free_Guy","abstract":"Free Guy is a 2021 American action comedy film directed and produced by Shawn Levy from a screenplay by Matt Lieberman and Zak Penn, and a story by Lieberman. The film stars Ryan Reynolds, Jodie Comer, Lil Rel Howery, Utkarsh Ambudkar, Joe Keery, and Taika Waititi. It tells the story of a bank teller who discovers that he is a non-player character in a massively multiplayer online game who then partners with a player to find evidence that a gaming company's CEO stole the player's game's source code.","label":"Free Guy","categories":["2020s American films","2020s English-language films","2020s science fiction comedy films","2021 action comedy films","2021 films","2021 science fiction action films","20th Century Studios films","21 Laps Entertainment films","4DX films","American action comedy films","American science fiction action films","American science fiction comedy films","Films about video games","Films about virtual reality","Films directed by Shawn Levy","Films postponed due to the COVID-19 pandemic","Films produced by Greg Berlanti","Films produced by Ryan Reynolds","Films scored by Christophe Beck","Films set in the future","Films shot in Boston","Films shot in Massachusetts","IMAX films","Self-reflexive films","TSG Entertainment films","Works set in computers"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]},{"start":49,"end":57,"spot":"Deadpool","confidence":0.9265,"id":43867095,"title":"Deadpool (film)","uri":"http://en.wikipedia.org/wiki/Deadpool_%28film%29","abstract":"Deadpool is a 2016 American superhero film based on the Marvel Comics character of the same name. Distributed by 20th Century Fox, it is a spin-off in the X-Men film series and the eighth installment overall. Directed by Tim Miller (in his feature directorial debut) and written by Rhett Reese and Paul Wernick, it stars Ryan Reynolds in the title role alongside Morena Baccarin, Ed Skrein, T. J. Miller, Gina Carano, and Brianna Hildebrand. In the film, Wade Wilson hunts the man who gave him mutant abilities and a scarred physical appearance, becoming the antihero Deadpool.","label":"Deadpool","categories":["2010s American films","2010s English-language films","2010s superhero comedy films","2016 action comedy films","2016 black comedy films","2016 directorial debut films","2016 films","20th Century Fox films","American action comedy films","American black comedy films","American films about revenge","American superhero films","American vigilante films","Deadpool (film series)","Film spin-offs","Films directed by Tim Miller","Films produced by Lauren Shuler Donner","Films produced by Ryan Reynolds","Films produced by Simon Kinberg","Films scored by Junkie XL","Films set in Westchester County, New York","Films shot in Vancouver","Films using motion capture","Films with screenplays by Paul Wernick","Films with screenplays by Rhett Reese","Human experimentation in fiction","IMAX films","Live-action films based on Marvel Comics","Metafictional works","Self-reflexive films","Superhero black comedy films","TSG Entertainment films","X-Men (film series)"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:44.248"} +2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":24,"end":32,"spot":"Free Guy","confidence":0.9181,"id":60203476,"title":"Free Guy","uri":"http://en.wikipedia.org/wiki/Free_Guy","abstract":"Free Guy is a 2021 American action comedy film directed and produced by Shawn Levy from a screenplay by Matt Lieberman and Zak Penn, and a story by Lieberman. The film stars Ryan Reynolds, Jodie Comer, Lil Rel Howery, Utkarsh Ambudkar, Joe Keery, and Taika Waititi. It tells the story of a bank teller who discovers that he is a non-player character in a massively multiplayer online game who then partners with a player to find evidence that a gaming company's CEO stole the player's game's source code.","label":"Free Guy","categories":["2020s American films","2020s English-language films","2020s science fiction comedy films","2021 action comedy films","2021 films","2021 science fiction action films","20th Century Studios films","21 Laps Entertainment films","4DX films","American action comedy films","American science fiction action films","American science fiction comedy films","Films about video games","Films about virtual reality","Films directed by Shawn Levy","Films postponed due to the COVID-19 pandemic","Films produced by Greg Berlanti","Films produced by Ryan Reynolds","Films scored by Christophe Beck","Films set in the future","Films shot in Boston","Films shot in Massachusetts","IMAX films","Self-reflexive films","TSG Entertainment films","Works set in computers"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]} +2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 24 +2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 32 +2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":49,"end":57,"spot":"Deadpool","confidence":0.9265,"id":43867095,"title":"Deadpool (film)","uri":"http://en.wikipedia.org/wiki/Deadpool_%28film%29","abstract":"Deadpool is a 2016 American superhero film based on the Marvel Comics character of the same name. Distributed by 20th Century Fox, it is a spin-off in the X-Men film series and the eighth installment overall. Directed by Tim Miller (in his feature directorial debut) and written by Rhett Reese and Paul Wernick, it stars Ryan Reynolds in the title role alongside Morena Baccarin, Ed Skrein, T. J. Miller, Gina Carano, and Brianna Hildebrand. In the film, Wade Wilson hunts the man who gave him mutant abilities and a scarred physical appearance, becoming the antihero Deadpool.","label":"Deadpool","categories":["2010s American films","2010s English-language films","2010s superhero comedy films","2016 action comedy films","2016 black comedy films","2016 directorial debut films","2016 films","20th Century Fox films","American action comedy films","American black comedy films","American films about revenge","American superhero films","American vigilante films","Deadpool (film series)","Film spin-offs","Films directed by Tim Miller","Films produced by Lauren Shuler Donner","Films produced by Ryan Reynolds","Films produced by Simon Kinberg","Films scored by Junkie XL","Films set in Westchester County, New York","Films shot in Vancouver","Films using motion capture","Films with screenplays by Paul Wernick","Films with screenplays by Rhett Reese","Human experimentation in fiction","IMAX films","Live-action films based on Marvel Comics","Metafictional works","Self-reflexive films","Superhero black comedy films","TSG Entertainment films","X-Men (film series)"],"types":[]} +2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 +2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 57 +2023-10-27 13:58:44.274 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:44.274  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@121d2bba +2023-10-27 13:58:44.275 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:44.276  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.277  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.277 DEBUG 12774 --- [nio-8323-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.285  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@69f5d73f +2023-10-27 13:58:44.285 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:44.287  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.287  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.287 DEBUG 12774 --- [nio-8323-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "49"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:44.294 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : processing took: 178 ms +2023-10-27 13:58:58.355  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.356  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.356  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.357  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@14b7ebc5 +2023-10-27 13:58:58.372  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1a700723 +2023-10-27 13:58:58.372 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:58.374  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:58.375  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:58.384 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:58:58.384  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql +2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? +2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question What notes does a C major chord consist of? +2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:58:58.386  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-709828756 +2023-10-27 13:58:58.516 DEBUG 12774 --- [nio-8323-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5b4d0d18 +2023-10-27 13:58:58.516 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:58.517 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:58:58.519  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":18,"end":25,"spot":"C major","confidence":0.7995,"id":421402,"title":"C major","uri":"http://en.wikipedia.org/wiki/C_major","abstract":"C major (or the key of C) is a major scale based on C, consisting of the pitches C, D, E, F, G, A, and B. C major is one of the most common keys used in music. Its key signature has no flats or sharps. Its relative minor is A minor and its parallel minor is C minor.","label":"C major","categories":["Compositions in C major","Major scales","Musical keys"],"types":[]},{"start":20,"end":31,"spot":"major chord","confidence":0.7794,"id":417032,"title":"Major chord","uri":"http://en.wikipedia.org/wiki/Major_chord","abstract":"In music theory, a major chord is a chord that has a root, a major third, and a perfect fifth. When a chord comprises only these three notes, it is called a major triad. For example, the major triad built on C, called a C major triad, has pitches C–E–G:","label":"Major chord","categories":["Chords"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:58.495"} +2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":18,"end":25,"spot":"C major","confidence":0.7995,"id":421402,"title":"C major","uri":"http://en.wikipedia.org/wiki/C_major","abstract":"C major (or the key of C) is a major scale based on C, consisting of the pitches C, D, E, F, G, A, and B. C major is one of the most common keys used in music. Its key signature has no flats or sharps. Its relative minor is A minor and its parallel minor is C minor.","label":"C major","categories":["Compositions in C major","Major scales","Musical keys"],"types":[]} +2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 +2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 +2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":20,"end":31,"spot":"major chord","confidence":0.7794,"id":417032,"title":"Major chord","uri":"http://en.wikipedia.org/wiki/Major_chord","abstract":"In music theory, a major chord is a chord that has a root, a major third, and a perfect fifth. When a chord comprises only these three notes, it is called a major triad. For example, the major triad built on C, called a C major triad, has pitches C–E–G:","label":"Major chord","categories":["Chords"],"types":[]} +2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 20 +2023-10-27 13:58:58.520 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 31 +2023-10-27 13:58:58.524 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:58:58.525  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@708f2c77 +2023-10-27 13:58:58.525 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:58.527  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.528  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.528 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.536  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6a5c745a +2023-10-27 13:58:58.536 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:58.539  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.539  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.539 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "20"^^xsd:nonNegativeInteger . + _:b1 oa:end "31"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:58.548 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : processing took: 192 ms +2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@5398aa6b +2023-10-27 13:59:04.241  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@60b3751e +2023-10-27 13:59:04.242 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:04.242  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:04.243  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:04.254 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f +2023-10-27 13:59:04.254  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql +2023-10-27 13:59:04.257 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 13:59:04.258 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question in which language does the united stated have the shortest short name? +2023-10-27 13:59:04.258 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:04.258 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:04.259 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:59:04.259  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-687015730 +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@168a7f49 +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:59:04.386  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":9,"end":17,"spot":"language","confidence":0.671,"id":6880370,"title":"Philosophy of language","uri":"http://en.wikipedia.org/wiki/Philosophy_of_language","abstract":"In analytic philosophy, philosophy of language investigates the nature of language and the relations between language, language users, and the world. Investigations may include inquiry into the nature of meaning, intentionality, reference, the constitution of sentences, concepts, learning, and thought.","label":"Philosophy of language","categories":["Analytic philosophy","Meaning (philosophy of language)","Philosophy of language","Semantics","Semiotics"],"types":[]},{"start":59,"end":69,"spot":"short name","confidence":0.6764,"id":53430,"title":"Nickname","uri":"http://en.wikipedia.org/wiki/Nickname","abstract":"A nickname or short name is a substitute for the proper name of a person, place or thing. It is commonly used to express affection, amusement, a character trait or defamation of character. It is distinct from a pseudonym, stage name or title, although the concepts can overlap. Also known as sobriquet, it is typically informal.","label":"Nickname","categories":["Nicknames"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:59:04.367"} +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":17,"spot":"language","confidence":0.671,"id":6880370,"title":"Philosophy of language","uri":"http://en.wikipedia.org/wiki/Philosophy_of_language","abstract":"In analytic philosophy, philosophy of language investigates the nature of language and the relations between language, language users, and the world. Investigations may include inquiry into the nature of meaning, intentionality, reference, the constitution of sentences, concepts, learning, and thought.","label":"Philosophy of language","categories":["Analytic philosophy","Meaning (philosophy of language)","Philosophy of language","Semantics","Semiotics"],"types":[]} +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 17 +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":59,"end":69,"spot":"short name","confidence":0.6764,"id":53430,"title":"Nickname","uri":"http://en.wikipedia.org/wiki/Nickname","abstract":"A nickname or short name is a substitute for the proper name of a person, place or thing. It is commonly used to express affection, amusement, a character trait or defamation of character. It is distinct from a pseudonym, stage name or title, although the concepts can overlap. Also known as sobriquet, it is typically informal.","label":"Nickname","categories":["Nicknames"],"types":[]} +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 59 +2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 69 +2023-10-27 13:59:04.391 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f +2023-10-27 13:59:04.393  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@575401 +2023-10-27 13:59:04.393 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:04.396  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.397  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.397 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "17"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.404  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7bb7da90 +2023-10-27 13:59:04.404 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:04.406  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "69"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.406  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "69"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.406 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "69"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:04.414 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : processing took: 188 ms +2023-10-27 13:59:48.153  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:48.153  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:48.154  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:48.154  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@272f9885 +2023-10-27 13:59:48.161  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40b27943 +2023-10-27 13:59:48.162 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:48.163  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:48.164  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:48.170 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 13:59:48.170  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql +2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the professions of John Lennon’s sons? +2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question What are the professions of John Lennon’s sons? +2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+are+the+professions+of+John+Lennon%E2%80%99s+sons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+are+the+professions+of+John+Lennon%E2%80%99s+sons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:59:48.173  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-949359546 +2023-10-27 13:59:48.404 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@326e961 +2023-10-27 13:59:48.404 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:59:48.404 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:59:48.405  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+are+the+professions+of+John+Lennon%E2%80%99s+sons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 13:59:48.405 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":28,"end":39,"spot":"John Lennon","confidence":0.9377,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":33,"end":41,"spot":"Lennon’s","confidence":0.7491,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:59:48.342"} +2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":28,"end":39,"spot":"John Lennon","confidence":0.9377,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} +2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 +2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 39 +2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":33,"end":41,"spot":"Lennon’s","confidence":0.7491,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} +2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 33 +2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 41 +2023-10-27 13:59:48.411 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 13:59:48.411  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@201cc615 +2023-10-27 13:59:48.412 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:48.414  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.415  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.415 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.421  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68ab413b +2023-10-27 13:59:48.421 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:59:48.423  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.424  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.424 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:59:48.432 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 279 ms +2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@fbe172c +2023-10-27 14:00:02.772  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20387212 +2023-10-27 14:00:02.773 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:02.775  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:02.776  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:02.785 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c +2023-10-27 14:00:02.785  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c found in urn:graph:f48704a2-e326-4237-b784-257818c7ed9b at http://localhost:8080/sparql +2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second game developed by Piranha Bytes? +2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question What is the second game developed by Piranha Bytes? +2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+game+developed+by+Piranha+Bytes%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+game+developed+by+Piranha+Bytes%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:02.788  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=183468665 +2023-10-27 14:00:02.920 DEBUG 12774 --- [nio-8323-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7cbceb91 +2023-10-27 14:00:02.920 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:02.920 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:00:02.921  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+game+developed+by+Piranha+Bytes%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":12,"end":23,"spot":"second game","confidence":0.7798,"id":52753,"title":"Final Fantasy II","uri":"http://en.wikipedia.org/wiki/Final_Fantasy_II","abstract":"is a fantasy role-playing video game developed and published by Square in 1988 for the Family Computer as the second installment of the Final Fantasy series. The game has received numerous enhanced remakes for the WonderSwan Color, the PlayStation, the Game Boy Advance, the PlayStation Portable, iOS, Android and Windows. As neither this game nor Final Fantasy III were initially released outside Japan, Final Fantasy IV was originally released in North America as Final Fantasy II, so as not to confuse players. Following enhanced versions for iOS and Android in 2010 and 2012 respectively, the game was re-released again as part of the 2021 Final Fantasy Pixel Remaster series.","label":"Final Fantasy II","categories":["1988 video games","Android (operating system) games","Fiction about deicide","Fiction about rebellions","Final Fantasy video games","Game Boy Advance games","IOS games","Japanese role-playing video games","Nintendo Entertainment System games","PlayStation (console) games","PlayStation Network games","PlayStation Portable games","Single-player video games","Video games about the afterlife","Video games developed in Japan","Video games featuring female protagonists","Video games scored by Nobuo Uematsu","Video games set in hell","Virtual Console games","Virtual Console games for Wii U","Windows games","WonderSwan Color games"],"types":["http://dbpedia.org/ontology/VideoGame","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Software"]},{"start":37,"end":50,"spot":"Piranha Bytes","confidence":0.9521,"id":780137,"title":"Piranha Bytes","uri":"http://en.wikipedia.org/wiki/Piranha_Bytes","abstract":"Piranha Bytes GmbH is a German video game developer based in Essen. Founded in 1997, it is best known for their Gothic and Risen series of role-playing video games. The studio is a subsidiary of THQ Nordic and, as of August 2021, employs 33 people.","label":"Piranha Bytes","categories":["2019 mergers and acquisitions","Companies based in Essen","German companies established in 1997","THQ Nordic divisions and subsidiaries","Video game companies established in 1997","Video game companies of Germany","Video game development companies"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:00:02.900"} +2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":12,"end":23,"spot":"second game","confidence":0.7798,"id":52753,"title":"Final Fantasy II","uri":"http://en.wikipedia.org/wiki/Final_Fantasy_II","abstract":"is a fantasy role-playing video game developed and published by Square in 1988 for the Family Computer as the second installment of the Final Fantasy series. The game has received numerous enhanced remakes for the WonderSwan Color, the PlayStation, the Game Boy Advance, the PlayStation Portable, iOS, Android and Windows. As neither this game nor Final Fantasy III were initially released outside Japan, Final Fantasy IV was originally released in North America as Final Fantasy II, so as not to confuse players. Following enhanced versions for iOS and Android in 2010 and 2012 respectively, the game was re-released again as part of the 2021 Final Fantasy Pixel Remaster series.","label":"Final Fantasy II","categories":["1988 video games","Android (operating system) games","Fiction about deicide","Fiction about rebellions","Final Fantasy video games","Game Boy Advance games","IOS games","Japanese role-playing video games","Nintendo Entertainment System games","PlayStation (console) games","PlayStation Network games","PlayStation Portable games","Single-player video games","Video games about the afterlife","Video games developed in Japan","Video games featuring female protagonists","Video games scored by Nobuo Uematsu","Video games set in hell","Virtual Console games","Virtual Console games for Wii U","Windows games","WonderSwan Color games"],"types":["http://dbpedia.org/ontology/VideoGame","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Software"]} +2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 12 +2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 23 +2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":37,"end":50,"spot":"Piranha Bytes","confidence":0.9521,"id":780137,"title":"Piranha Bytes","uri":"http://en.wikipedia.org/wiki/Piranha_Bytes","abstract":"Piranha Bytes GmbH is a German video game developer based in Essen. Founded in 1997, it is best known for their Gothic and Risen series of role-playing video games. The studio is a subsidiary of THQ Nordic and, as of August 2021, employs 33 people.","label":"Piranha Bytes","categories":["2019 mergers and acquisitions","Companies based in Essen","German companies established in 1997","THQ Nordic divisions and subsidiaries","Video game companies established in 1997","Video game companies of Germany","Video game development companies"],"types":[]} +2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 37 +2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 50 +2023-10-27 14:00:02.927 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c +2023-10-27 14:00:02.927  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c4945d +2023-10-27 14:00:02.928 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:02.932  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.932  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.933 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "23"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.941  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@608fded5 +2023-10-27 14:00:02.942 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:02.943  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.944  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.944 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.951 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : processing took: 189 ms +2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@5c7e7ee4 +2023-10-27 14:00:40.731  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5841f1b3 +2023-10-27 14:00:40.732 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:40.733  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:40.733  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:40.741 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:40.741  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql +2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? +2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question How many movies were directed by Akira Kurosawa ? +2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:40.743 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:40.743  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-202689186 +2023-10-27 14:00:40.910 DEBUG 12774 --- [nio-8323-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@517bb91d +2023-10-27 14:00:40.911 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:40.911 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:00:40.911  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:00:40.911 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":9,"end":15,"spot":"movies","confidence":0.7928,"id":10790,"title":"Cinema of Japan","uri":"http://en.wikipedia.org/wiki/Cinema_of_Japan","abstract":"The, also known domestically as, has a history that spans more than 100 years. Japan has one of the oldest and largest film industries in the world; as of 2021, it was the fourth largest by number of feature films produced. In 2011, Japan produced 411 feature films that earned 54.9% of a box office total of US$2.338 billion. Films have been produced in Japan since 1897, when the first foreign cameramen arrived.","label":"Japanese film","categories":["Cinema of Japan"],"types":[]},{"start":33,"end":47,"spot":"Akira Kurosawa","confidence":0.9576,"id":872,"title":"Akira Kurosawa","uri":"http://en.wikipedia.org/wiki/Akira_Kurosawa","abstract":"was a Japanese filmmaker and painter who directed 30 films in a career spanning over five decades. He is widely regarded as one of the greatest and most influential filmmakers in the history of cinema. Kurosawa displayed a bold, dynamic style, strongly influenced by Western cinema yet distinct from it; he was involved with all aspects of film production.","label":"Akira Kurosawa","categories":["1910 births","1998 deaths","20th-century Japanese writers","20th-century male writers","Academy Honorary Award recipients","Akira Kurosawa","Akira Kurosawa Award winners","Best Director BAFTA Award winners","César Award winners","David di Donatello winners","Directors Guild of America Award winners","Directors of Best Foreign Language Film Academy Award winners","Directors of Golden Lion winners","Directors of Palme d'Or winners","Fellows of the American Academy of Arts and Sciences","Filmmakers who won the Best Foreign Language Film BAFTA Award","Japanese film directors","Japanese film editors","Japanese film producers","Japanese male writers","Japanese screenwriters","Kyoto laureates in Arts and Philosophy","Male screenwriters","People's Honour Award winners","People from Shinagawa","People of the Empire of Japan","Persons of Cultural Merit","Propaganda film directors","Ramon Magsaysay Award winners","Recipients of the Legion of Honour","Recipients of the Order of Culture","Recipients of the Order of Friendship of Peoples","Recipients of the Praemium Imperiale","Samurai film directors","Silver Bear for Best Director recipients","Writers from Tokyo","Yakuza film directors"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.5,"timestamp":"2023-10-27T12:00:40.890"} +2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":15,"spot":"movies","confidence":0.7928,"id":10790,"title":"Cinema of Japan","uri":"http://en.wikipedia.org/wiki/Cinema_of_Japan","abstract":"The, also known domestically as, has a history that spans more than 100 years. Japan has one of the oldest and largest film industries in the world; as of 2021, it was the fourth largest by number of feature films produced. In 2011, Japan produced 411 feature films that earned 54.9% of a box office total of US$2.338 billion. Films have been produced in Japan since 1897, when the first foreign cameramen arrived.","label":"Japanese film","categories":["Cinema of Japan"],"types":[]} +2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 +2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 15 +2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":33,"end":47,"spot":"Akira Kurosawa","confidence":0.9576,"id":872,"title":"Akira Kurosawa","uri":"http://en.wikipedia.org/wiki/Akira_Kurosawa","abstract":"was a Japanese filmmaker and painter who directed 30 films in a career spanning over five decades. He is widely regarded as one of the greatest and most influential filmmakers in the history of cinema. Kurosawa displayed a bold, dynamic style, strongly influenced by Western cinema yet distinct from it; he was involved with all aspects of film production.","label":"Akira Kurosawa","categories":["1910 births","1998 deaths","20th-century Japanese writers","20th-century male writers","Academy Honorary Award recipients","Akira Kurosawa","Akira Kurosawa Award winners","Best Director BAFTA Award winners","César Award winners","David di Donatello winners","Directors Guild of America Award winners","Directors of Best Foreign Language Film Academy Award winners","Directors of Golden Lion winners","Directors of Palme d'Or winners","Fellows of the American Academy of Arts and Sciences","Filmmakers who won the Best Foreign Language Film BAFTA Award","Japanese film directors","Japanese film editors","Japanese film producers","Japanese male writers","Japanese screenwriters","Kyoto laureates in Arts and Philosophy","Male screenwriters","People's Honour Award winners","People from Shinagawa","People of the Empire of Japan","Persons of Cultural Merit","Propaganda film directors","Ramon Magsaysay Award winners","Recipients of the Legion of Honour","Recipients of the Order of Culture","Recipients of the Order of Friendship of Peoples","Recipients of the Praemium Imperiale","Samurai film directors","Silver Bear for Best Director recipients","Writers from Tokyo","Yakuza film directors"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} +2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 33 +2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 47 +2023-10-27 14:00:40.918 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:40.919  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cafe439 +2023-10-27 14:00:40.919 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:40.921  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.921  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.921 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.930  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6533d766 +2023-10-27 14:00:40.931 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:40.932  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.933  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.933 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:40.940 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : processing took: 218 ms +2023-10-27 14:01:40.507  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.508  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.508  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.508  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@66ba526c +2023-10-27 14:01:40.541  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@687db0cb +2023-10-27 14:01:40.541 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:01:40.542  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:40.542  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:40.551 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 +2023-10-27 14:01:40.551  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql +2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the boiling point of water? +2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question What is the boiling point of water? +2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+boiling+point+of+water%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+boiling+point+of+water%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:01:40.553  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-255632866 +2023-10-27 14:01:40.731 DEBUG 12774 --- [nio-8323-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3ce0f176 +2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:01:40.732  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+boiling+point+of+water%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":12,"end":25,"spot":"boiling point","confidence":0.8524,"id":4115,"title":"Boiling point","uri":"http://en.wikipedia.org/wiki/Boiling_point","abstract":"The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.","label":"Boiling point","categories":["Gases","Temperature","Threshold temperatures"],"types":[]},{"start":29,"end":34,"spot":"water","confidence":0.7771,"id":33306,"title":"Water","uri":"http://en.wikipedia.org/wiki/Water","abstract":"Water is an inorganic compound with the chemical formula. It is a transparent, tasteless, odorless, and nearly colorless chemical substance, and it is the main constituent of Earth's hydrosphere and the fluids of all known living organisms (in which it acts as a solvent). It is vital for all known forms of life, despite not providing food energy, or organic micronutrients. Its chemical formula, indicates that each of its molecules contains one oxygen and two hydrogen atoms, connected by covalent bonds. The hydrogen atoms are attached to the oxygen atom at an angle of 104.45°. \"Water\" is also the name of the liquid state of at standard temperature and pressure.","label":"Water","categories":["Articles containing video clips","Hydrogen compounds","Inorganic solvents","Liquids","Materials that expand upon freezing","Nuclear reactor coolants","Oxides","Oxygen compounds","Water"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:01:40.713"} +2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":12,"end":25,"spot":"boiling point","confidence":0.8524,"id":4115,"title":"Boiling point","uri":"http://en.wikipedia.org/wiki/Boiling_point","abstract":"The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.","label":"Boiling point","categories":["Gases","Temperature","Threshold temperatures"],"types":[]} +2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 12 +2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 +2023-10-27 14:01:40.733 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":29,"end":34,"spot":"water","confidence":0.7771,"id":33306,"title":"Water","uri":"http://en.wikipedia.org/wiki/Water","abstract":"Water is an inorganic compound with the chemical formula. It is a transparent, tasteless, odorless, and nearly colorless chemical substance, and it is the main constituent of Earth's hydrosphere and the fluids of all known living organisms (in which it acts as a solvent). It is vital for all known forms of life, despite not providing food energy, or organic micronutrients. Its chemical formula, indicates that each of its molecules contains one oxygen and two hydrogen atoms, connected by covalent bonds. The hydrogen atoms are attached to the oxygen atom at an angle of 104.45°. \"Water\" is also the name of the liquid state of at standard temperature and pressure.","label":"Water","categories":["Articles containing video clips","Hydrogen compounds","Inorganic solvents","Liquids","Materials that expand upon freezing","Nuclear reactor coolants","Oxides","Oxygen compounds","Water"],"types":[]} +2023-10-27 14:01:40.733 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 29 +2023-10-27 14:01:40.733 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 +2023-10-27 14:01:40.738 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 +2023-10-27 14:01:40.738  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ed018a9 +2023-10-27 14:01:40.738 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:40.741  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.741  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.741 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.749  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d21f871 +2023-10-27 14:01:40.749 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:40.751  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.752  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.752 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:40.758 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : processing took: 250 ms +2023-10-27 14:03:08.114  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:08.115  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:08.115  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:08.115  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@cea11f7 +2023-10-27 14:03:08.123  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55f226 +2023-10-27 14:03:08.123 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:08.124  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:08.124  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:08.129 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf +2023-10-27 14:03:08.130  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql +2023-10-27 14:03:08.132 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? +2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question Which animal participated in a military operation with the Australian Defence Force? +2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:03:08.133  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1809127821 +2023-10-27 14:03:08.287 DEBUG 12774 --- [nio-8323-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@580b2bd7 +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:03:08.288  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":31,"end":49,"spot":"military operation","confidence":0.6966,"id":666301,"title":"Military operation","uri":"http://en.wikipedia.org/wiki/Military_operation","abstract":"A military operation is the coordinated military actions of a state, or a non-state actor, in response to a developing situation. These actions are designed as a military plan to resolve the situation in the state or actor's favor. Operations may be of a combat or non-combat nature and may be referred to by a code name for the purpose of national security. Military operations are often known for their more generally accepted common usage names than their actual operational objectives.","label":"Military operation","categories":["Military operations"],"types":[]},{"start":59,"end":83,"spot":"Australian Defence Force","confidence":0.8552,"id":67538,"title":"Australian Defence Force","uri":"http://en.wikipedia.org/wiki/Australian_Defence_Force","abstract":"The Australian Defence Force (ADF) is the military organisation responsible for the defence of the Commonwealth of Australia and its national interests. It has three branches: the Royal Australian Navy (RAN), Australian Army and the Royal Australian Air Force (RAAF). The ADF has a strength of just over 90,000 personnel and is supported by the Department of Defence and several other civilian agencies.","label":"Australian Defence Force","categories":["1901 establishments in Australia","Australian Defence Force","Leadership of the Australian Defence Force","Military of Australia","Military units and formations established in 1901"],"types":["http://dbpedia.org/ontology/MilitaryUnit","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:03:08.266"} +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":31,"end":49,"spot":"military operation","confidence":0.6966,"id":666301,"title":"Military operation","uri":"http://en.wikipedia.org/wiki/Military_operation","abstract":"A military operation is the coordinated military actions of a state, or a non-state actor, in response to a developing situation. These actions are designed as a military plan to resolve the situation in the state or actor's favor. Operations may be of a combat or non-combat nature and may be referred to by a code name for the purpose of national security. Military operations are often known for their more generally accepted common usage names than their actual operational objectives.","label":"Military operation","categories":["Military operations"],"types":[]} +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 31 +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":59,"end":83,"spot":"Australian Defence Force","confidence":0.8552,"id":67538,"title":"Australian Defence Force","uri":"http://en.wikipedia.org/wiki/Australian_Defence_Force","abstract":"The Australian Defence Force (ADF) is the military organisation responsible for the defence of the Commonwealth of Australia and its national interests. It has three branches: the Royal Australian Navy (RAN), Australian Army and the Royal Australian Air Force (RAAF). The ADF has a strength of just over 90,000 personnel and is supported by the Department of Defence and several other civilian agencies.","label":"Australian Defence Force","categories":["1901 establishments in Australia","Australian Defence Force","Leadership of the Australian Defence Force","Military of Australia","Military units and formations established in 1901"],"types":["http://dbpedia.org/ontology/MilitaryUnit","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]} +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 59 +2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 83 +2023-10-27 14:03:08.294 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf +2023-10-27 14:03:08.296  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@432ec88 +2023-10-27 14:03:08.296 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:08.300  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.300  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.301 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.309  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2b59eaea +2023-10-27 14:03:08.309 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:08.311  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "83"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.311  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "83"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.311 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "59"^^xsd:nonNegativeInteger . + _:b1 oa:end "83"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:08.321 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : processing took: 206 ms +2023-10-27 14:03:47.804  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:47.804  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:47.804  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:47.805  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@f84cb44 +2023-10-27 14:03:47.812  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@14324c4 +2023-10-27 14:03:47.812 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:47.813  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:47.813  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:47.829 DEBUG 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 +2023-10-27 14:03:47.829  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql +2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? +2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question who is the youngested member in g-idle? +2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=who+is+the+youngested+member+in+g-idle%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=who+is+the+youngested+member+in+g-idle%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:03:47.832  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1470625770 +2023-10-27 14:03:48.003 DEBUG 12774 --- [nio-8323-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@53382b03 +2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:03:48.004  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=who+is+the+youngested+member+in+g-idle%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[{"start":32,"end":38,"spot":"g-idle","confidence":0.8609,"id":57057212,"title":"(G)I-dle","uri":"http://en.wikipedia.org/wiki/%28G%29I-dle","abstract":"(G)I-dle (stylized in all caps), is a South Korean girl group formed by Cube Entertainment in 2018. The group consists of five members: Miyeon, Minnie, Soyeon, Yuqi and Shuhua. Originally a sextet, Soojin left the group on August 14, 2021. (G)I-dle debuted on May 2, 2018, with the single \"Latata\" from their first extended play (EP) I Am. They debuted in Japan under U-Cube with Latata on July 31, 2019. Since their debut, they have been considered one of the most successful South Korean girl groups outside of the \"big three\" record labels.","label":"(G)I-dle","categories":["(G)I-dle","2018 establishments in South Korea","Cube Entertainment artists","English-language singers from South Korea","Golden Disc Award winners","Japanese-language singers of South Korea","K-pop music groups","Mandarin-language singers of South Korea","Melon Music Award winners","Musical groups established in 2018","Musical groups from Seoul","South Korean dance music groups","South Korean girl groups","World record holders"],"types":["http://dbpedia.org/ontology/Band","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Group","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:03:47.981"} +2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":32,"end":38,"spot":"g-idle","confidence":0.8609,"id":57057212,"title":"(G)I-dle","uri":"http://en.wikipedia.org/wiki/%28G%29I-dle","abstract":"(G)I-dle (stylized in all caps), is a South Korean girl group formed by Cube Entertainment in 2018. The group consists of five members: Miyeon, Minnie, Soyeon, Yuqi and Shuhua. Originally a sextet, Soojin left the group on August 14, 2021. (G)I-dle debuted on May 2, 2018, with the single \"Latata\" from their first extended play (EP) I Am. They debuted in Japan under U-Cube with Latata on July 31, 2019. Since their debut, they have been considered one of the most successful South Korean girl groups outside of the \"big three\" record labels.","label":"(G)I-dle","categories":["(G)I-dle","2018 establishments in South Korea","Cube Entertainment artists","English-language singers from South Korea","Golden Disc Award winners","Japanese-language singers of South Korea","K-pop music groups","Mandarin-language singers of South Korea","Melon Music Award winners","Musical groups established in 2018","Musical groups from Seoul","South Korean dance music groups","South Korean girl groups","World record holders"],"types":["http://dbpedia.org/ontology/Band","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Group","http://dbpedia.org/ontology/Agent"]} +2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question: 32 +2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question: 38 +2023-10-27 14:03:48.009 DEBUG 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 +2023-10-27 14:03:48.009  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@aed81ec +2023-10-27 14:03:48.009 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:48.010  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:48.010  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:48.011 DEBUG 12774 --- [nio-8323-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "32"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:48.018 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.QanaryServiceController  : processing took: 214 ms +2023-10-27 14:05:01.246  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.246  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.246  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.247  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@7d735b8e +2023-10-27 14:05:01.257  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d6863e2 +2023-10-27 14:05:01.257 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:01.258  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:01.259  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:01.264 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b +2023-10-27 14:05:01.265  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql +2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? +2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question How many spouses do head of states have on average? +2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+spouses+do+head+of+states+have+on+average%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+spouses+do+head+of+states+have+on+average%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:05:01.267  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=307517747 +2023-10-27 14:05:01.442 DEBUG 12774 --- [nio-8323-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@627dca4b +2023-10-27 14:05:01.442 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:05:01.443  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+spouses+do+head+of+states+have+on+average%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":28,"end":34,"spot":"states","confidence":0.7006,"id":18618239,"title":"U.S. state","uri":"http://en.wikipedia.org/wiki/U.S._state","abstract":"In the United States, a state is a constituent political entity, of which there are 50. Bound together in a political union, each state holds governmental jurisdiction over a separate and defined geographic territory where it shares its sovereignty with the federal government. Due to this shared sovereignty, Americans are citizens both of the federal republic and of the state in which they reside. State citizenship and residency are flexible, and no government approval is required to move between states, except for persons restricted by certain types of court orders (such as paroled convicts and children of divorced spouses who share child custody).","label":"U.S. state","categories":["Administrative divisions in North America","First-level administrative divisions by country","Political divisions of the United States","States of the United States","Types of administrative division"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:05:01.419"} +2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":28,"end":34,"spot":"states","confidence":0.7006,"id":18618239,"title":"U.S. state","uri":"http://en.wikipedia.org/wiki/U.S._state","abstract":"In the United States, a state is a constituent political entity, of which there are 50. Bound together in a political union, each state holds governmental jurisdiction over a separate and defined geographic territory where it shares its sovereignty with the federal government. Due to this shared sovereignty, Americans are citizens both of the federal republic and of the state in which they reside. State citizenship and residency are flexible, and no government approval is required to move between states, except for persons restricted by certain types of court orders (such as paroled convicts and children of divorced spouses who share child custody).","label":"U.S. state","categories":["Administrative divisions in North America","First-level administrative divisions by country","Political divisions of the United States","States of the United States","Types of administrative division"],"types":[]} +2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 +2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 +2023-10-27 14:05:01.448 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b +2023-10-27 14:05:01.449  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21a9ec92 +2023-10-27 14:05:01.449 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:05:01.450  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:01.451  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:01.451 DEBUG 12774 --- [nio-8323-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "28"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:05:01.456 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : processing took: 210 ms +2023-10-27 14:06:42.839  INFO 12774 --- [io-8323-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:42.839  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:42.840  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:42.840  INFO 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@130e3542 +2023-10-27 14:06:42.850  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@41150dc0 +2023-10-27 14:06:42.850 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:42.851  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:42.852  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:42.857 DEBUG 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:42.857  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql +2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Who+is+the+creator+of+the+Dinosaurs+tv+show+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Who+is+the+creator+of+the+Dinosaurs+tv+show+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:06:42.859 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:06:42.859  INFO 12774 --- [io-8323-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1273782426 +2023-10-27 14:06:42.982 DEBUG 12774 --- [io-8323-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@12cad87e +2023-10-27 14:06:42.982 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:06:42.982 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:06:42.983  INFO 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Who+is+the+creator+of+the+Dinosaurs+tv+show+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":26,"end":35,"spot":"Dinosaurs","confidence":0.6945,"id":8311,"title":"Dinosaur","uri":"http://en.wikipedia.org/wiki/Dinosaur","abstract":"Dinosaurs are a diverse group of reptiles of the clade Dinosauria. They first appeared during the Triassic period, between 245 and 233.23 million years ago (mya), although the exact origin and timing of the is a subject of active research. They became the dominant terrestrial vertebrates after the Triassic–Jurassic extinction event 201.3 mya and their dominance continued throughout the Jurassic and Cretaceous periods. The fossil record shows that birds are feathered dinosaurs, having evolved from earlier theropods during the Late Jurassic epoch, and are the only dinosaur lineage known to have survived the Cretaceous–Paleogene extinction event approximately 66 mya. Dinosaurs can therefore be divided into avian dinosaurs—birds—and the extinct non-avian dinosaurs, which are all dinosaurs other than birds.","label":"Dinosaur","categories":["Carnian first appearances","Dinosaurs","Extant Late Triassic first appearances","Fossil taxa described in 1842","Taxa named by Richard Owen"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:06:42.964"} +2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":26,"end":35,"spot":"Dinosaurs","confidence":0.6945,"id":8311,"title":"Dinosaur","uri":"http://en.wikipedia.org/wiki/Dinosaur","abstract":"Dinosaurs are a diverse group of reptiles of the clade Dinosauria. They first appeared during the Triassic period, between 245 and 233.23 million years ago (mya), although the exact origin and timing of the is a subject of active research. They became the dominant terrestrial vertebrates after the Triassic–Jurassic extinction event 201.3 mya and their dominance continued throughout the Jurassic and Cretaceous periods. The fossil record shows that birds are feathered dinosaurs, having evolved from earlier theropods during the Late Jurassic epoch, and are the only dinosaur lineage known to have survived the Cretaceous–Paleogene extinction event approximately 66 mya. Dinosaurs can therefore be divided into avian dinosaurs—birds—and the extinct non-avian dinosaurs, which are all dinosaurs other than birds.","label":"Dinosaur","categories":["Carnian first appearances","Dinosaurs","Extant Late Triassic first appearances","Fossil taxa described in 1842","Taxa named by Richard Owen"],"types":[]} +2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question: 26 +2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question: 35 +2023-10-27 14:06:42.987 DEBUG 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:42.988  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@700c5b40 +2023-10-27 14:06:42.988 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:42.990  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:42.990  INFO 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:42.990 DEBUG 12774 --- [io-8323-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "35"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:42.996 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.QanaryServiceController  : processing took: 157 ms +2023-10-27 14:07:15.955  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:15.955  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:15.956  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:15.956  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@41f2dd4a +2023-10-27 14:07:15.969  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ef3a39c +2023-10-27 14:07:15.970 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:15.972  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:15.973  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:15.979 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:15.980  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql +2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:07:15.982  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1694464597 +2023-10-27 14:07:16.104 DEBUG 12774 --- [nio-8323-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7692b910 +2023-10-27 14:07:16.104 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:07:16.104 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:07:16.104  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]},{"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]},{"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:16.086"} +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]} +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 21 +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]} +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 38 +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 51 +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]} +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 53 +2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 66 +2023-10-27 14:07:16.109 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:16.109  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21dd2205 +2023-10-27 14:07:16.109 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:16.110  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.110  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.110 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.116  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32218ae1 +2023-10-27 14:07:16.116 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:16.117  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.117  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.118 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.123  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e2fc730 +2023-10-27 14:07:16.123 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:16.124  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.124  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.124 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:16.129 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : processing took: 174 ms +2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@4ac19e20 +2023-10-27 14:07:33.487  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b95413c +2023-10-27 14:07:33.487 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:33.488  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:33.488  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:33.493 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 +2023-10-27 14:07:33.493  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql +2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=has+population+of+Isfahan+increased+at+any+point+after+2006%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=has+population+of+Isfahan+increased+at+any+point+after+2006%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:07:33.495  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1822845999 +2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3c3a1d30 +2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:07:33.621  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=has+population+of+Isfahan+increased+at+any+point+after+2006%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":18,"end":25,"spot":"Isfahan","confidence":0.8428,"id":223149,"title":"Isfahan","uri":"http://en.wikipedia.org/wiki/Isfahan","abstract":"Isfahan (also rendered as Ispahan) is a major city in the Central District of the Isfahan Province of Iran. It is located south of Tehran and is the capital of Isfahan Province. The city has a population of approximately 2,220,000, making it the third-largest city in Iran, after Tehran and Mashhad, and the second-largest metropolitan area.","label":"Isfahan","categories":["Achaemenid cities","Cities in Isfahan Province","Former capitals of Iran","Iranian provincial capitals","Isfahan","Parthian cities","Populated places in Isfahan County","Sasanian cities","Seleucid colonies"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:33.594"} +2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":18,"end":25,"spot":"Isfahan","confidence":0.8428,"id":223149,"title":"Isfahan","uri":"http://en.wikipedia.org/wiki/Isfahan","abstract":"Isfahan (also rendered as Ispahan) is a major city in the Central District of the Isfahan Province of Iran. It is located south of Tehran and is the capital of Isfahan Province. The city has a population of approximately 2,220,000, making it the third-largest city in Iran, after Tehran and Mashhad, and the second-largest metropolitan area.","label":"Isfahan","categories":["Achaemenid cities","Cities in Isfahan Province","Former capitals of Iran","Iranian provincial capitals","Isfahan","Parthian cities","Populated places in Isfahan County","Sasanian cities","Seleucid colonies"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]} +2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 +2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 +2023-10-27 14:07:33.625 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 +2023-10-27 14:07:33.626  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7accb409 +2023-10-27 14:07:33.626 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:33.627  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.627  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.627 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "18"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:33.633 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : processing took: 153 ms +2023-10-27 14:07:35.290  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:35.290  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:35.290  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:35.291  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@8740b8c +2023-10-27 14:07:35.301  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b62f257 +2023-10-27 14:07:35.301 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:35.303  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:35.303  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:35.309 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:35.309  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql +2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+of+Reinhold+Messner%27s+brothers+still+live%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+of+Reinhold+Messner%27s+brothers+still+live%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:07:35.312  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=85584210 +2023-10-27 14:07:35.360 DEBUG 12774 --- [nio-8323-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@32879dd8 +2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:07:35.361  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+of+Reinhold+Messner%27s+brothers+still+live%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":12,"end":28,"spot":"Reinhold Messner","confidence":0.8609,"id":255486,"title":"Reinhold Messner","uri":"http://en.wikipedia.org/wiki/Reinhold_Messner","abstract":"Reinhold Andreas Messner (born 17 September 1944) is an Italian mountaineer, explorer, and author from South Tyrol. He made the first solo ascent of Mount Everest and, along with Peter Habeler, the first ascent of Everest without supplemental oxygen. He was the first climber to ascend all 14 peaks over above sea level and he also did it without supplementary oxygen. Messner was the first to cross Antarctica and Greenland with neither snowmobiles nor dog sleds and also crossed the Gobi Desert alone. He is widely considered as the greatest mountaineer of all time.","label":"Reinhold Messner","categories":["20th-century Italian politicians","21st-century Italian politicians","Cryptozoologists","Federation of the Greens MEPs","Free soloists","Germanophone Italian people","Italian explorers","Italian mountain climbers","Living people","MEPs for Italy 1999–2004","People from Brixen","Politicians of South Tyrol","Recipients of the Royal Geographical Society Patron's Medal","Summiters of all 14 eight-thousanders","Summiters of the Seven Summits","Year of birth missing (living people)"],"types":["http://dbpedia.org/ontology/Politician","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:35.341"} +2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":12,"end":28,"spot":"Reinhold Messner","confidence":0.8609,"id":255486,"title":"Reinhold Messner","uri":"http://en.wikipedia.org/wiki/Reinhold_Messner","abstract":"Reinhold Andreas Messner (born 17 September 1944) is an Italian mountaineer, explorer, and author from South Tyrol. He made the first solo ascent of Mount Everest and, along with Peter Habeler, the first ascent of Everest without supplemental oxygen. He was the first climber to ascend all 14 peaks over above sea level and he also did it without supplementary oxygen. Messner was the first to cross Antarctica and Greenland with neither snowmobiles nor dog sleds and also crossed the Gobi Desert alone. He is widely considered as the greatest mountaineer of all time.","label":"Reinhold Messner","categories":["20th-century Italian politicians","21st-century Italian politicians","Cryptozoologists","Federation of the Greens MEPs","Free soloists","Germanophone Italian people","Italian explorers","Italian mountain climbers","Living people","MEPs for Italy 1999–2004","People from Brixen","Politicians of South Tyrol","Recipients of the Royal Geographical Society Patron's Medal","Summiters of all 14 eight-thousanders","Summiters of the Seven Summits","Year of birth missing (living people)"],"types":["http://dbpedia.org/ontology/Politician","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} +2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 12 +2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 +2023-10-27 14:07:35.366 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:35.366  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b70d176 +2023-10-27 14:07:35.366 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:35.368  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.368  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.368 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:35.374 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : processing took: 84 ms +2023-10-27 14:08:04.972  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:04.973  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:04.973  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:04.973  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@41472ae4 +2023-10-27 14:08:04.980  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a9708fb +2023-10-27 14:08:04.981 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:04.982  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:04.982  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:04.987 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 +2023-10-27 14:08:04.987  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql +2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? +2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question is there female main character in hunter x hunter? +2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:04.989  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-191225740 +2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@68ab5eae +2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:05.153  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":16,"end":30,"spot":"main character","confidence":0.6301,"id":68315,"title":"Protagonist","uri":"http://en.wikipedia.org/wiki/Protagonist","abstract":"A protagonist is the main character of a story. The protagonist makes key decisions that affect the plot, primarily influencing the story and propelling it forward, and is often the character who faces the most significant obstacles. If a story contains a subplot, or is a narrative made up of several stories, then each subplot may have its own protagonist.","label":"Protagonist","categories":["Ancient Greek theatre","Protagonists by role","Psychodrama"],"types":[]},{"start":34,"end":49,"spot":"hunter x hunter","confidence":0.8917,"id":771172,"title":"Hunter × Hunter","uri":"http://en.wikipedia.org/wiki/Hunter_%C3%97_Hunter","abstract":"Hunter × Hunter (stylized as HUNTER×HUNTER and pronounced \"hunter hunter\") is a Japanese manga series written and illustrated by Yoshihiro Togashi. It has been serialized in Shueisha's shōnen manga magazine Weekly Shōnen Jump since March 1998, although the manga has frequently gone on extended hiatuses since 2006. Its chapters have been collected in 37 tankōbon volumes as of November 2022. The story focuses on a young boy named Gon Freecss who discovers that his father, who left him at a young age, is actually a world-renowned Hunter, a licensed professional who specializes in fantastical pursuits such as locating rare or unidentified animal species, treasure hunting, surveying unexplored enclaves, or hunting down lawless individuals. Gon departs on a journey to become a Hunter and eventually find his father. Along the way, Gon meets various other Hunters and encounters the paranormal.","label":"Hunter × Hunter","categories":["1998 manga","1999 anime television series debuts","2002 anime OVAs","2011 Japanese television series debuts","Adventure anime and manga","Animated films based on manga","Anime series based on manga","Coming-of-age anime and manga","Fantasy anime and manga","Fuji TV original programming","Hunter × Hunter","Japanese-language films","Madhouse (company)","Manga adapted into films","Martial arts anime and manga","Muse Communication","Musicals based on anime and manga","Nippon Animation","Nippon TV original programming","Odex","Shueisha franchises","Shueisha manga","Shōnen manga","Toonami","Viz Media anime","Viz Media manga"],"types":["http://dbpedia.org/ontology/Manga","http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Comic"]}],"lang":"en","langConfidence":0.9999,"timestamp":"2023-10-27T12:08:05.135"} +2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":16,"end":30,"spot":"main character","confidence":0.6301,"id":68315,"title":"Protagonist","uri":"http://en.wikipedia.org/wiki/Protagonist","abstract":"A protagonist is the main character of a story. The protagonist makes key decisions that affect the plot, primarily influencing the story and propelling it forward, and is often the character who faces the most significant obstacles. If a story contains a subplot, or is a narrative made up of several stories, then each subplot may have its own protagonist.","label":"Protagonist","categories":["Ancient Greek theatre","Protagonists by role","Psychodrama"],"types":[]} +2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 16 +2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 30 +2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":34,"end":49,"spot":"hunter x hunter","confidence":0.8917,"id":771172,"title":"Hunter × Hunter","uri":"http://en.wikipedia.org/wiki/Hunter_%C3%97_Hunter","abstract":"Hunter × Hunter (stylized as HUNTER×HUNTER and pronounced \"hunter hunter\") is a Japanese manga series written and illustrated by Yoshihiro Togashi. It has been serialized in Shueisha's shōnen manga magazine Weekly Shōnen Jump since March 1998, although the manga has frequently gone on extended hiatuses since 2006. Its chapters have been collected in 37 tankōbon volumes as of November 2022. The story focuses on a young boy named Gon Freecss who discovers that his father, who left him at a young age, is actually a world-renowned Hunter, a licensed professional who specializes in fantastical pursuits such as locating rare or unidentified animal species, treasure hunting, surveying unexplored enclaves, or hunting down lawless individuals. Gon departs on a journey to become a Hunter and eventually find his father. Along the way, Gon meets various other Hunters and encounters the paranormal.","label":"Hunter × Hunter","categories":["1998 manga","1999 anime television series debuts","2002 anime OVAs","2011 Japanese television series debuts","Adventure anime and manga","Animated films based on manga","Anime series based on manga","Coming-of-age anime and manga","Fantasy anime and manga","Fuji TV original programming","Hunter × Hunter","Japanese-language films","Madhouse (company)","Manga adapted into films","Martial arts anime and manga","Muse Communication","Musicals based on anime and manga","Nippon Animation","Nippon TV original programming","Odex","Shueisha franchises","Shueisha manga","Shōnen manga","Toonami","Viz Media anime","Viz Media manga"],"types":["http://dbpedia.org/ontology/Manga","http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Comic"]} +2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 +2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 +2023-10-27 14:08:05.158 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 +2023-10-27 14:08:05.159  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1dc2b4d +2023-10-27 14:08:05.159 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:05.160  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "30"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.160  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "30"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.160 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "16"^^xsd:nonNegativeInteger . + _:b1 oa:end "30"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.165  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1beb410a +2023-10-27 14:08:05.165 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:05.166  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.167  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.167 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "34"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:05.172 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : processing took: 199 ms +2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@e41eb39 +2023-10-27 14:08:16.960  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a986671 +2023-10-27 14:08:16.960 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:16.960  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:16.961  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:16.965 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 +2023-10-27 14:08:16.965  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql +2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? +2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question Where was Roland Corporation founded? +2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+Roland+Corporation+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+Roland+Corporation+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:16.968  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1597811816 +2023-10-27 14:08:17.096 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4ee20775 +2023-10-27 14:08:17.096 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:17.096 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:17.097  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+Roland+Corporation+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":10,"end":28,"spot":"Roland Corporation","confidence":0.8609,"id":26531,"title":"Roland Corporation","uri":"http://en.wikipedia.org/wiki/Roland_Corporation","abstract":"is a Japanese manufacturer of electronic musical instruments, electronic equipment, and software. It was founded by Ikutaro Kakehashi in Osaka on 18 April 1972. In 2005, its headquarters relocated to Hamamatsu in Shizuoka Prefecture. It has factories in Malaysia, Taiwan, Japan, and the United States. As of 31 March 2010, it employed 2,699 people. In 2014, it was subject to a management buyout by its CEO, Junichi Miki, supported by Taiyo Pacific Partners.","label":"Roland","categories":["1972 establishments in Japan","Audio equipment manufacturers of Japan","Audio mixing console manufacturers","Companies based in Shizuoka Prefecture","Companies listed on the Tokyo Stock Exchange","Electronics companies established in 1972","Guitar amplifier manufacturers","Guitar manufacturing companies","Hamamatsu","Japanese brands","Manufacturers of professional audio equipment","Musical instrument manufacturing companies of Japan","Percussion instrument manufacturing companies","Roland synthesizers","Synthesizer manufacturing companies of Japan"],"types":["http://dbpedia.org/ontology/Company","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:17.075"} +2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":10,"end":28,"spot":"Roland Corporation","confidence":0.8609,"id":26531,"title":"Roland Corporation","uri":"http://en.wikipedia.org/wiki/Roland_Corporation","abstract":"is a Japanese manufacturer of electronic musical instruments, electronic equipment, and software. It was founded by Ikutaro Kakehashi in Osaka on 18 April 1972. In 2005, its headquarters relocated to Hamamatsu in Shizuoka Prefecture. It has factories in Malaysia, Taiwan, Japan, and the United States. As of 31 March 2010, it employed 2,699 people. In 2014, it was subject to a management buyout by its CEO, Junichi Miki, supported by Taiyo Pacific Partners.","label":"Roland","categories":["1972 establishments in Japan","Audio equipment manufacturers of Japan","Audio mixing console manufacturers","Companies based in Shizuoka Prefecture","Companies listed on the Tokyo Stock Exchange","Electronics companies established in 1972","Guitar amplifier manufacturers","Guitar manufacturing companies","Hamamatsu","Japanese brands","Manufacturers of professional audio equipment","Musical instrument manufacturing companies of Japan","Percussion instrument manufacturing companies","Roland synthesizers","Synthesizer manufacturing companies of Japan"],"types":["http://dbpedia.org/ontology/Company","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]} +2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 10 +2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 +2023-10-27 14:08:17.104 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 +2023-10-27 14:08:17.104  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ffb35b3 +2023-10-27 14:08:17.105 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:17.106  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:17.108  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:17.108 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "10"^^xsd:nonNegativeInteger . + _:b1 oa:end "28"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:17.113 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 161 ms +2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@62c26ab4 +2023-10-27 14:08:24.308  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79b9e51e +2023-10-27 14:08:24.308 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:24.309  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:24.309  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:24.316 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:24.316  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql +2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:24.319  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1694464597 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@401ff474 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:24.450  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]},{"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]},{"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:24.430"} +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]} +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 21 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]} +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 38 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 51 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]} +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 53 +2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 66 +2023-10-27 14:08:24.460 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:24.461  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31f9a109 +2023-10-27 14:08:24.461 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:24.463  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.464  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.464 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.474  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75e233d +2023-10-27 14:08:24.474 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:24.475  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.475  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.475 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.483  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ebf7b7e +2023-10-27 14:08:24.484 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:24.487  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.487  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.487 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.495 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : processing took: 197 ms +2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@6d96b5dc +2023-10-27 14:08:26.128  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b3dddbc +2023-10-27 14:08:26.129 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:26.129  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:26.129  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:26.135 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:26.135  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql +2023-10-27 14:08:26.137 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 14:08:26.137 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question How many countries have never been members of the UN? +2023-10-27 14:08:26.138 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+have+never+been+members+of+the+UN%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:26.138 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+have+never+been+members+of+the+UN%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:26.138 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:26.138  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2119996295 +2023-10-27 14:08:26.191 DEBUG 12774 --- [nio-8323-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@33ddbd52 +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:26.192  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+have+never+been+members+of+the+UN%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":9,"end":18,"spot":"countries","confidence":0.699,"id":21754,"title":"Nation","uri":"http://en.wikipedia.org/wiki/Nation","abstract":"A nation is a large type of social organization where a collective identity has emerged from a combination of shared features across a given population, such as language, history, ethnicity, culture, territory and/or society. Some nations are constructed around ethnicity (see ethnic nationalism) while others are bound by political constitutions (see civic nationalism and multiculturalism).","label":"Nation","categories":["Ethnicity","Nation","Pages using page needed template with unknown parameters","Political geography","Political science terminology","Types of communities"],"types":[]},{"start":35,"end":42,"spot":"members","confidence":0.6928,"id":10890716,"title":"Member state of the European Union","uri":"http://en.wikipedia.org/wiki/Member_state_of_the_European_Union","abstract":"The European Union (EU) is a political and economic union of 27 member states that are party to the EU's founding treaties, and thereby subject to the privileges and obligations of membership. They have agreed by the treaties to share their own sovereignty through the institutions of the European Union in certain aspects of government. State governments must agree unanimously in the Council for the union to adopt some policies; for others, collective decisions are made by qualified majority voting. These obligations and sharing of sovereignty within the EU (sometimes referred to as supranational) make it unique among international organisations, as it has established its own legal order which by the provisions of the founding treaties is both legally binding and supreme on all the member states (after a landmark ruling of the ECJ in 1964). A founding principle of the union is subsidiarity, meaning that decisions are taken collectively if and only if they cannot realistically be taken individually.","label":"Member states","categories":["Countries by international organization","Member states of the European Union"],"types":[]},{"start":50,"end":52,"spot":"UN","confidence":0.7326,"id":31769,"title":"United Nations","uri":"http://en.wikipedia.org/wiki/United_Nations","abstract":"The United Nations (UN) is an intergovernmental organization whose stated purposes are to maintain international peace and security, develop friendly relations among nations, achieve international cooperation, and serve as a centre for harmonizing the actions of nations. It is the world's largest international organization. The UN is headquartered in New York City (in the United States, but with certain extraterritorial privileges), and the organization has other offices in Geneva, Nairobi, Vienna, and The Hague, where the International Court of Justice is headquartered.","label":"United Nations","categories":["1945 establishments in the United States","Intergovernmental organizations established by treaty","Organizations awarded Nobel Peace Prizes","Organizations based in New York City","Organizations established in 1945","Peace organizations","Sakharov Prize laureates","United Nations"],"types":["http://dbpedia.org/ontology/Country","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:26.170"} +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":18,"spot":"countries","confidence":0.699,"id":21754,"title":"Nation","uri":"http://en.wikipedia.org/wiki/Nation","abstract":"A nation is a large type of social organization where a collective identity has emerged from a combination of shared features across a given population, such as language, history, ethnicity, culture, territory and/or society. Some nations are constructed around ethnicity (see ethnic nationalism) while others are bound by political constitutions (see civic nationalism and multiculturalism).","label":"Nation","categories":["Ethnicity","Nation","Pages using page needed template with unknown parameters","Political geography","Political science terminology","Types of communities"],"types":[]} +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":35,"end":42,"spot":"members","confidence":0.6928,"id":10890716,"title":"Member state of the European Union","uri":"http://en.wikipedia.org/wiki/Member_state_of_the_European_Union","abstract":"The European Union (EU) is a political and economic union of 27 member states that are party to the EU's founding treaties, and thereby subject to the privileges and obligations of membership. They have agreed by the treaties to share their own sovereignty through the institutions of the European Union in certain aspects of government. State governments must agree unanimously in the Council for the union to adopt some policies; for others, collective decisions are made by qualified majority voting. These obligations and sharing of sovereignty within the EU (sometimes referred to as supranational) make it unique among international organisations, as it has established its own legal order which by the provisions of the founding treaties is both legally binding and supreme on all the member states (after a landmark ruling of the ECJ in 1964). A founding principle of the union is subsidiarity, meaning that decisions are taken collectively if and only if they cannot realistically be taken individually.","label":"Member states","categories":["Countries by international organization","Member states of the European Union"],"types":[]} +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 35 +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 42 +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":50,"end":52,"spot":"UN","confidence":0.7326,"id":31769,"title":"United Nations","uri":"http://en.wikipedia.org/wiki/United_Nations","abstract":"The United Nations (UN) is an intergovernmental organization whose stated purposes are to maintain international peace and security, develop friendly relations among nations, achieve international cooperation, and serve as a centre for harmonizing the actions of nations. It is the world's largest international organization. The UN is headquartered in New York City (in the United States, but with certain extraterritorial privileges), and the organization has other offices in Geneva, Nairobi, Vienna, and The Hague, where the International Court of Justice is headquartered.","label":"United Nations","categories":["1945 establishments in the United States","Intergovernmental organizations established by treaty","Organizations awarded Nobel Peace Prizes","Organizations based in New York City","Organizations established in 1945","Peace organizations","Sakharov Prize laureates","United Nations"],"types":["http://dbpedia.org/ontology/Country","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]} +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 50 +2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 52 +2023-10-27 14:08:26.196 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:26.196  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d8bb43f +2023-10-27 14:08:26.197 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:26.198  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.198  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.198 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.205  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4aea9c21 +2023-10-27 14:08:26.205 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:26.206  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.206  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.206 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "35"^^xsd:nonNegativeInteger . + _:b1 oa:end "42"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.212  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fbf68fd +2023-10-27 14:08:26.212 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:26.213  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.213  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.213 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:26.219 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : processing took: 100 ms +2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@137085ff +2023-10-27 14:09:11.825  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f2c2d8c +2023-10-27 14:09:11.825 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:11.826  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:11.826  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:11.833 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd +2023-10-27 14:09:11.833  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd found in urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b at http://localhost:8080/sparql +2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:09:11.837  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=987631136 +2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@62b052a0 +2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:09:12.055  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":3,"annotations":[{"start":9,"end":15,"spot":"Oscars","confidence":0.7615,"id":324,"title":"Academy Awards","uri":"http://en.wikipedia.org/wiki/Academy_Awards","abstract":"The Academy Awards, mainly known as the Oscars, are awards for artistic and technical merit for the film industry. They are presented annually by the Academy of Motion Picture Arts and Sciences (AMPAS), in recognition of excellence in cinematic achievements as assessed by the Academy's voting membership. The Academy Awards are regarded by many as the most prestigious, significant awards in the entertainment industry in the United States and worldwide. The Oscar statuette depicts a knight rendered in the Art Deco style.","label":"Academy Award","categories":["1929 establishments in California","Academy Awards","American annual television specials","American film awards","American live television shows","Annual events in Los Angeles County, California","Awards established in 1929","Cinema of Southern California","Culture of Hollywood, Los Angeles","Events in Los Angeles","Performing arts trophies"],"types":["http://dbpedia.org/ontology/Award"]},{"start":47,"end":61,"spot":"Hayao Miyazaki","confidence":0.907,"id":20312,"title":"Hayao Miyazaki","uri":"http://en.wikipedia.org/wiki/Hayao_Miyazaki","abstract":"is a Japanese animator, filmmaker, and manga artist. A co-founder of Studio Ghibli, he has attained international acclaim as a masterful storyteller and creator of Japanese animated feature films, and is widely regarded as one of the most accomplished filmmakers in the history of animation.","label":"Hayao Miyazaki","categories":["1941 births","Academy Honorary Award recipients","Anime character designers","Anime directors","Annie Award winners","Anti–nuclear power activists","Directors of Best Animated Feature Academy Award winners","Directors of Golden Bear winners","Ecofeminists","Environmental writers","Fantasy artists","Fantasy film directors","Feminist artists","Feminist writers","Gakushuin University alumni","Hayao Miyazaki","Inkpot Award winners","Japanese Shintoists","Japanese animated film directors","Japanese animated film producers","Japanese animators","Japanese cartoonists","Japanese environmentalists","Japanese feminists","Japanese pacifists","Japanese production designers","Japanese screenwriters","Japanese speculative fiction artists","Japanese storyboard artists","Living people","Male feminists","Manga artists","Nebula Award winners","People from Bunkyō","Persons of Cultural Merit","Science Fiction Hall of Fame inductees","Studio Ghibli people","Topcraft","World Masterpiece Theater series"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:09:12.025"} +2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":15,"spot":"Oscars","confidence":0.7615,"id":324,"title":"Academy Awards","uri":"http://en.wikipedia.org/wiki/Academy_Awards","abstract":"The Academy Awards, mainly known as the Oscars, are awards for artistic and technical merit for the film industry. They are presented annually by the Academy of Motion Picture Arts and Sciences (AMPAS), in recognition of excellence in cinematic achievements as assessed by the Academy's voting membership. The Academy Awards are regarded by many as the most prestigious, significant awards in the entertainment industry in the United States and worldwide. The Oscar statuette depicts a knight rendered in the Art Deco style.","label":"Academy Award","categories":["1929 establishments in California","Academy Awards","American annual television specials","American film awards","American live television shows","Annual events in Los Angeles County, California","Awards established in 1929","Cinema of Southern California","Culture of Hollywood, Los Angeles","Events in Los Angeles","Performing arts trophies"],"types":["http://dbpedia.org/ontology/Award"]} +2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 +2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 15 +2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":47,"end":61,"spot":"Hayao Miyazaki","confidence":0.907,"id":20312,"title":"Hayao Miyazaki","uri":"http://en.wikipedia.org/wiki/Hayao_Miyazaki","abstract":"is a Japanese animator, filmmaker, and manga artist. A co-founder of Studio Ghibli, he has attained international acclaim as a masterful storyteller and creator of Japanese animated feature films, and is widely regarded as one of the most accomplished filmmakers in the history of animation.","label":"Hayao Miyazaki","categories":["1941 births","Academy Honorary Award recipients","Anime character designers","Anime directors","Annie Award winners","Anti–nuclear power activists","Directors of Best Animated Feature Academy Award winners","Directors of Golden Bear winners","Ecofeminists","Environmental writers","Fantasy artists","Fantasy film directors","Feminist artists","Feminist writers","Gakushuin University alumni","Hayao Miyazaki","Inkpot Award winners","Japanese Shintoists","Japanese animated film directors","Japanese animated film producers","Japanese animators","Japanese cartoonists","Japanese environmentalists","Japanese feminists","Japanese pacifists","Japanese production designers","Japanese screenwriters","Japanese speculative fiction artists","Japanese storyboard artists","Living people","Male feminists","Manga artists","Nebula Award winners","People from Bunkyō","Persons of Cultural Merit","Science Fiction Hall of Fame inductees","Studio Ghibli people","Topcraft","World Masterpiece Theater series"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} +2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 47 +2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 61 +2023-10-27 14:09:12.061 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd +2023-10-27 14:09:12.061  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@394f97ca +2023-10-27 14:09:12.061 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:12.062  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.062  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.062 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.069  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a15509a +2023-10-27 14:09:12.069 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:12.071  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.072  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.072 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:12.078 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : processing took: 265 ms +2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@6d10ea0 +2023-10-27 14:09:13.292  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43644904 +2023-10-27 14:09:13.293 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:13.295  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:13.295  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:13.301 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 +2023-10-27 14:09:13.301  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql +2023-10-27 14:09:13.304 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? +2023-10-27 14:09:13.304 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question when was the creator of saturday night live born? +2023-10-27 14:09:13.305 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=when+was+the+creator+of+saturday+night+live+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:13.305 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=when+was+the+creator+of+saturday+night+live+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:13.305 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:09:13.306  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1996780094 +2023-10-27 14:09:13.355 DEBUG 12774 --- [nio-8323-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@79a9fa35 +2023-10-27 14:09:13.355 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:13.355 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:09:13.355  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=when+was+the+creator+of+saturday+night+live+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":9,"end":20,"spot":"the creator","confidence":0.678,"id":64622550,"title":"The Creator (2023 film)","uri":"http://en.wikipedia.org/wiki/The_Creator_%282023_film%29","abstract":"The Creator is an upcoming American science fiction action thriller film co-produced and directed by Gareth Edwards, who co-wrote the screenplay with Chris Weitz. The film stars John David Washington, Gemma Chan, Ken Watanabe, Sturgill Simpson, Madeleine Yuna Voyles, and Allison Janney. Taking place in a future impacted by a war between the human race and the forces of artificial intelligence, the film's plot follows an ex-special forces agent who is recruited to hunt down and kill the Creator, who has developed a mysterious weapon with the power to end the war by destroying mankind itself.","label":"The Creator","types":[]},{"start":24,"end":43,"spot":"saturday night live","confidence":0.9117,"id":763013,"title":"Saturday Night Live","uri":"http://en.wikipedia.org/wiki/Saturday_Night_Live","abstract":"Saturday Night Live (often abbreviated to SNL) is an American late-night live television sketch comedy, political satire, and variety show created by Lorne Michaels and developed by Dick Ebersol that airs on NBC and Peacock. Michaels currently serves as the program's showrunner. The show’s premiere was hosted by George Carlin on NBC on October 11, 1975, under the original title NBC's Saturday Night. The show's comedy sketches, which often parody contemporary American culture and politics, are performed by a large and varying cast of repertory and newer cast members. Each episode is hosted by a celebrity guest, who usually delivers the opening monologue and performs in sketches with the cast, with featured performances by a musical guest. An episode normally begins with a cold open sketch that ends with someone breaking character and proclaiming, \"Live from New York, it's Saturday Night!\", properly beginning the show.","label":"Saturday Night Live","categories":["1970s American late-night television series","1970s American political comedy television series","1970s American satirical television series","1970s American sketch comedy television series","1970s American variety television series","1975 American television series debuts","1980s American late-night television series","1980s American political comedy television series","1980s American satirical television series","1980s American sketch comedy television series","1980s American variety television series","1990s American late-night television series","1990s American political comedy television series","1990s American satirical television series","1990s American sketch comedy television series","1990s American variety television series","2000s American late-night television series","2000s American political comedy television series","2000s American satirical television series","2000s American sketch comedy television series","2000s American variety television series","2010s American late-night television series","2010s American political comedy television series","2010s American satirical television series","2010s American sketch comedy television series","2010s American variety television series","2020s American late-night television series","2020s American political comedy television series","2020s American satirical television series","2020s American sketch comedy television series","2020s American variety television series","American live television series","American news parodies","American television series with live action and animation","American television shows featuring puppetry","English-language television shows","NBC original programming","Peabody Award-winning television programs","Political satirical television series","Primetime Emmy Award-winning television series","Primetime Emmy Award for Outstanding Variety Series winners","Saturday Night Live","Saturday mass media","Television franchises","Television series by Broadway Video","Television series by Universal Television","Television shows filmed in New York City"],"types":["http://dbpedia.org/ontology/TelevisionShow","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:09:13.334"} +2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":20,"spot":"the creator","confidence":0.678,"id":64622550,"title":"The Creator (2023 film)","uri":"http://en.wikipedia.org/wiki/The_Creator_%282023_film%29","abstract":"The Creator is an upcoming American science fiction action thriller film co-produced and directed by Gareth Edwards, who co-wrote the screenplay with Chris Weitz. The film stars John David Washington, Gemma Chan, Ken Watanabe, Sturgill Simpson, Madeleine Yuna Voyles, and Allison Janney. Taking place in a future impacted by a war between the human race and the forces of artificial intelligence, the film's plot follows an ex-special forces agent who is recruited to hunt down and kill the Creator, who has developed a mysterious weapon with the power to end the war by destroying mankind itself.","label":"The Creator","types":[]} +2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 +2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 20 +2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":24,"end":43,"spot":"saturday night live","confidence":0.9117,"id":763013,"title":"Saturday Night Live","uri":"http://en.wikipedia.org/wiki/Saturday_Night_Live","abstract":"Saturday Night Live (often abbreviated to SNL) is an American late-night live television sketch comedy, political satire, and variety show created by Lorne Michaels and developed by Dick Ebersol that airs on NBC and Peacock. Michaels currently serves as the program's showrunner. The show’s premiere was hosted by George Carlin on NBC on October 11, 1975, under the original title NBC's Saturday Night. The show's comedy sketches, which often parody contemporary American culture and politics, are performed by a large and varying cast of repertory and newer cast members. Each episode is hosted by a celebrity guest, who usually delivers the opening monologue and performs in sketches with the cast, with featured performances by a musical guest. An episode normally begins with a cold open sketch that ends with someone breaking character and proclaiming, \"Live from New York, it's Saturday Night!\", properly beginning the show.","label":"Saturday Night Live","categories":["1970s American late-night television series","1970s American political comedy television series","1970s American satirical television series","1970s American sketch comedy television series","1970s American variety television series","1975 American television series debuts","1980s American late-night television series","1980s American political comedy television series","1980s American satirical television series","1980s American sketch comedy television series","1980s American variety television series","1990s American late-night television series","1990s American political comedy television series","1990s American satirical television series","1990s American sketch comedy television series","1990s American variety television series","2000s American late-night television series","2000s American political comedy television series","2000s American satirical television series","2000s American sketch comedy television series","2000s American variety television series","2010s American late-night television series","2010s American political comedy television series","2010s American satirical television series","2010s American sketch comedy television series","2010s American variety television series","2020s American late-night television series","2020s American political comedy television series","2020s American satirical television series","2020s American sketch comedy television series","2020s American variety television series","American live television series","American news parodies","American television series with live action and animation","American television shows featuring puppetry","English-language television shows","NBC original programming","Peabody Award-winning television programs","Political satirical television series","Primetime Emmy Award-winning television series","Primetime Emmy Award for Outstanding Variety Series winners","Saturday Night Live","Saturday mass media","Television franchises","Television series by Broadway Video","Television series by Universal Television","Television shows filmed in New York City"],"types":["http://dbpedia.org/ontology/TelevisionShow","http://dbpedia.org/ontology/Work"]} +2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 24 +2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 43 +2023-10-27 14:09:13.362 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 +2023-10-27 14:09:13.362  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c0fdcca +2023-10-27 14:09:13.362 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:13.364  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.364  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.364 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "9"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.679  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@322571e5 +2023-10-27 14:09:13.679 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:13.681  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.681  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.681 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:13.694 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : processing took: 421 ms +2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@11d67b75 +2023-10-27 14:10:24.735  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@412c1f3c +2023-10-27 14:10:24.735 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:24.737  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:24.737  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:24.746 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 +2023-10-27 14:10:24.746  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 found in urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96 at http://localhost:8080/sparql +2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? +2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question Which universities have more than 200000 students? +2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:10:24.749  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-962009526 +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3f42f159 +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:10:24.928  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":6,"end":18,"spot":"universities","confidence":0.7669,"id":19725260,"title":"University","uri":"http://en.wikipedia.org/wiki/University","abstract":"A university is an institution of higher (or tertiary) education and research which awards academic degrees in several academic disciplines. Universities typically offer both undergraduate and postgraduate programs. In the United States, the designation is reserved for colleges that have a graduate school.","label":"University","categories":["Educational stages","Higher education","Types of university or college","Universities and colleges"],"types":[]},{"start":41,"end":49,"spot":"students","confidence":0.7604,"id":155526,"title":"Student","uri":"http://en.wikipedia.org/wiki/Student","abstract":"A student is a person enrolled in a school or other educational institution. In the United Kingdom and most commonwealth countries, a \"student\" attends a secondary school or higher (e.g., college or university); those in primary or elementary schools are \"pupils\".","label":"Student","categories":["Students"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:10:24.909"} +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":6,"end":18,"spot":"universities","confidence":0.7669,"id":19725260,"title":"University","uri":"http://en.wikipedia.org/wiki/University","abstract":"A university is an institution of higher (or tertiary) education and research which awards academic degrees in several academic disciplines. Universities typically offer both undergraduate and postgraduate programs. In the United States, the designation is reserved for colleges that have a graduate school.","label":"University","categories":["Educational stages","Higher education","Types of university or college","Universities and colleges"],"types":[]} +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 6 +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 +2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":41,"end":49,"spot":"students","confidence":0.7604,"id":155526,"title":"Student","uri":"http://en.wikipedia.org/wiki/Student","abstract":"A student is a person enrolled in a school or other educational institution. In the United Kingdom and most commonwealth countries, a \"student\" attends a secondary school or higher (e.g., college or university); those in primary or elementary schools are \"pupils\".","label":"Student","categories":["Students"],"types":[]} +2023-10-27 14:10:24.929 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 41 +2023-10-27 14:10:24.929 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 +2023-10-27 14:10:24.936 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 +2023-10-27 14:10:24.936  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48660f5c +2023-10-27 14:10:24.937 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:24.938  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:24.938  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:24.938 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "6"^^xsd:nonNegativeInteger . + _:b1 oa:end "18"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:24.944  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38698368 +2023-10-27 14:10:24.944 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:24.945  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:24.946  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:24.946 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "41"^^xsd:nonNegativeInteger . + _:b1 oa:end "49"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:24.951 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : processing took: 224 ms +2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@21922e26 +2023-10-27 14:10:27.232  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f033047 +2023-10-27 14:10:27.232 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:27.233  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:27.233  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:27.238 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb +2023-10-27 14:10:27.239  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql +2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? +2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question Which creator of The OA also acted in it? +2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+creator+of+The+OA+also+acted+in+it%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+creator+of+The+OA+also+acted+in+it%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:10:27.240  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1608248862 +2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@33a08a7e +2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:10:27.289  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+creator+of+The+OA+also+acted+in+it%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 +2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:10:27.267"} +2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : processing took: 64 ms diff --git a/qanary-component-NER-Dandelion/src/main/resources/config/application.properties b/qanary-component-NER-Dandelion/src/main/resources/config/application.properties index 7d167982c..3b0be6e6f 100644 --- a/qanary-component-NER-Dandelion/src/main/resources/config/application.properties +++ b/qanary-component-NER-Dandelion/src/main/resources/config/application.properties @@ -1,4 +1,4 @@ -server.port=8088 +server.port=8323 spring.application.name=DandelionNER spring.application.description=${spring.application.name} is a Qanary component @@ -45,4 +45,4 @@ qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # dandelion configuration dandelion.api.live.test.active=true -dandelion.api.key= +dandelion.api.key=7d29f867b39a432e8884e99f69c194c9 diff --git a/qanary-component-NER-Tagme/nohup.out b/qanary-component-NER-Tagme/nohup.out new file mode 100644 index 000000000..963dc7026 --- /dev/null +++ b/qanary-component-NER-Tagme/nohup.out @@ -0,0 +1,2189 @@ + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNER -- TagmeNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:22.779  INFO 9652 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9652 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) +2023-10-27 12:09:22.785 DEBUG 9652 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.848  INFO 9652 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:09:44.317  WARN 9652 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:44.663  WARN 9652 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:44.891  WARN 9652 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tagmeNER' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/tagme/ner/TagmeNER.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.tagme.ner.TagmeNER]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException +2023-10-27 12:09:45.436 ERROR 9652 --- [ main] o.s.boot.SpringApplication  : Application run failed + +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tagmeNER' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/tagme/ner/TagmeNER.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.tagme.ner.TagmeNER]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] + at eu.wdaqua.qanary.component.tagme.ner.Application.main(Application.java:36) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.tagme.ner.TagmeNER]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 25 common frames omitted +Caused by: eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException: null + at eu.wdaqua.qanary.component.tagme.ner.TagmeNER.(TagmeNER.java:65) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 27 common frames omitted + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNER -- TagmeNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:50.076  INFO 11765 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11765 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) +2023-10-27 12:15:50.108 DEBUG 11765 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:50.109  INFO 11765 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:16:18.018  WARN 11765 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:18.766  WARN 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:19.080  INFO 11765 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 +2023-10-27 12:16:19.096  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated +2023-10-27 12:16:19.237 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 12:16:19.318 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 12:16:19.337 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:19.390  INFO 11765 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 +2023-10-27 12:16:23.620 DEBUG 11765 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@452c8a40 +2023-10-27 12:16:23.629 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:23.659 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:16:23.718  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 12:16:24.421 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":5,"api":"tag","lang":"en","timestamp":"2023-10-27T10:16:23"} +2023-10-27 12:16:24.493 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} +2023-10-27 12:16:24.501 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 +2023-10-27 12:16:24.502 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 12:16:24.503 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 +2023-10-27 12:16:24.506 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} +2023-10-27 12:16:24.507 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 +2023-10-27 12:16:24.507 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 +2023-10-27 12:16:24.507 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 12:16:24.531 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 +2023-10-27 12:16:24.532  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected +2023-10-27 12:16:24.797  INFO 11765 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51e37590 +2023-10-27 12:16:24.799  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated +2023-10-27 12:16:24.800 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 12:16:24.805 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 12:16:24.811 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:24.816  INFO 11765 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 +2023-10-27 12:16:25.173 DEBUG 11765 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@deb3b60 +2023-10-27 12:16:25.173 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:25.173 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 12:16:25.176  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T10:16:25"} +2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} +2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 +2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 +2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} +2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 +2023-10-27 12:16:25.178 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 +2023-10-27 12:16:25.178 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 12:16:25.178 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 +2023-10-27 12:16:25.178  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected +2023-10-27 12:16:25.200  INFO 11765 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ner.TagmeNER@39aa45a1 +2023-10-27 12:16:25.216  INFO 11765 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8091 +spring.application.name = TagmeNER +spring.application.description = TagmeNER is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:25.382  INFO 11765 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl +2023-10-27 12:16:30.841  WARN 11765 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:30.966  INFO 11765 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 12:16:40.674  INFO 11765 --- [ main] e.w.q.component.tagme.ner.Application  : Started Application in 56.524 seconds (JVM running for 67.719) +2023-10-27 12:16:41.683  INFO 11765 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as e931f4a6f745 +2023-10-27 13:37:20.821  WARN 11765 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNER, managementUrl=http://0.0.0.0:8091/actuator, healthUrl=http://0.0.0.0:8091/actuator/health, serviceUrl=http://0.0.0.0:8091/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNER -- TagmeNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:50.363  INFO 28732 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28732 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) +2023-10-27 13:37:50.442 DEBUG 28732 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:50.476  INFO 28732 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:38:15.109  WARN 28732 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:15.859  WARN 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:15.976  INFO 28732 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1568159 +2023-10-27 13:38:15.985  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated +2023-10-27 13:38:16.060 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:38:16.082 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:38:16.093 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:16.119  INFO 28732 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 +2023-10-27 13:38:19.405 DEBUG 28732 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@534243e4 +2023-10-27 13:38:19.417 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:19.441 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:38:19.457  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:38:19.838 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T11:38:19"} +2023-10-27 13:38:19.887 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} +2023-10-27 13:38:19.889 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 +2023-10-27 13:38:19.890 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 13:38:19.892 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 +2023-10-27 13:38:19.892 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} +2023-10-27 13:38:19.893 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 +2023-10-27 13:38:19.894 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 +2023-10-27 13:38:19.894 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 13:38:19.901 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 +2023-10-27 13:38:19.902  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected +2023-10-27 13:38:20.211  INFO 28732 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@deb3b60 +2023-10-27 13:38:20.212  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated +2023-10-27 13:38:20.212 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:38:20.212 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:38:20.220 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:20.224  INFO 28732 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 +2023-10-27 13:38:20.292 DEBUG 28732 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@701a32 +2023-10-27 13:38:20.292 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:20.293 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:38:20.293  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:38:20.293 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T11:38:20"} +2023-10-27 13:38:20.293 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 +2023-10-27 13:38:20.294  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected +2023-10-27 13:38:20.296  INFO 28732 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ner.TagmeNER@73aff8f1 +2023-10-27 13:38:20.310  INFO 28732 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8091 +spring.application.name = TagmeNER +spring.application.description = TagmeNER is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:20.521  INFO 28732 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl +2023-10-27 13:38:25.337  WARN 28732 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:25.466  INFO 28732 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:38:31.050  WARN 28732 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8091 is already in use +2023-10-27 13:38:31.701 ERROR 28732 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8091 was already in use. + +Action: + +Identify and stop the process that's listening on port 8091 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TagmeNER -- TagmeNER is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:54.758  INFO 30123 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30123 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) +2023-10-27 13:38:54.828 DEBUG 30123 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:54.847  INFO 30123 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:39:16.401  WARN 30123 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:16.754  WARN 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:16.880  INFO 30123 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 +2023-10-27 13:39:16.916  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated +2023-10-27 13:39:17.137 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:39:17.186 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:39:17.209 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:17.253  INFO 30123 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 +2023-10-27 13:39:19.308 DEBUG 30123 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@452c8a40 +2023-10-27 13:39:19.313 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:19.344 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:39:19.361  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:39:19.758 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T11:39:19"} +2023-10-27 13:39:19.774 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} +2023-10-27 13:39:19.775 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 +2023-10-27 13:39:19.777 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 13:39:19.779 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 +2023-10-27 13:39:19.779 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} +2023-10-27 13:39:19.786 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 +2023-10-27 13:39:19.787 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 +2023-10-27 13:39:19.787 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 13:39:19.807 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 +2023-10-27 13:39:19.807  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected +2023-10-27 13:39:20.055  INFO 30123 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51e37590 +2023-10-27 13:39:20.056  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated +2023-10-27 13:39:20.064 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:39:20.064 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:39:20.097 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:20.097  INFO 30123 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 +2023-10-27 13:39:20.336 DEBUG 30123 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@deb3b60 +2023-10-27 13:39:20.337 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:20.337 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:39:20.337  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T11:39:20"} +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 +2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 13:39:20.339 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 +2023-10-27 13:39:20.339  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected +2023-10-27 13:39:20.343  INFO 30123 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ner.TagmeNER@39aa45a1 +2023-10-27 13:39:20.366  INFO 30123 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8091 +spring.application.name = TagmeNER +spring.application.description = TagmeNER is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:20.498  INFO 30123 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl +2023-10-27 13:39:25.402  WARN 30123 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:25.569  INFO 30123 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:39:32.708  WARN 30123 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8091 is already in use +2023-10-27 13:39:33.234 ERROR 30123 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8091 was already in use. + +Action: + +Identify and stop the process that's listening on port 8091 or configure this application to listen on another port. + +2023-10-27 13:53:05.909  INFO 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:05.946  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:06.095  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:06.350  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@1c24512d +2023-10-27 13:53:06.514  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3bb1b7d5 +2023-10-27 13:53:06.548 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:07.296  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:07.297  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:07.393 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:07.394  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql +2023-10-27 13:53:07.399 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? +2023-10-27 13:53:07.399  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question What did the suffragettes stand for? +2023-10-27 13:53:07.399 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+did+the+suffragettes+stand+for%3F +2023-10-27 13:53:07.400 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+did+the+suffragettes+stand+for%3F +2023-10-27 13:53:07.400 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:53:07.511  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=330757041 +2023-10-27 13:53:07.953 DEBUG 11765 --- [nio-8091-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@241f9c79 +2023-10-27 13:53:07.953 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:07.953 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:53:07.954  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+did+the+suffragettes+stand+for%3F +2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"suffragettes","start":13,"link_probability":0.22401434183120728,"rho":0.11200717091560364,"end":25,"id":21671401,"title":"Suffragette"},{"spot":"stand","start":26,"link_probability":0.00850051362067461,"rho":0.004250256810337305,"end":31,"id":288153,"title":"The Stand"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:53:07"} +2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"suffragettes","start":13,"link_probability":0.22401434183120728,"rho":0.11200717091560364,"end":25,"id":21671401,"title":"Suffragette"} +2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 13 +2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 25 +2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.22401434183120728 +2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"stand","start":26,"link_probability":0.00850051362067461,"rho":0.004250256810337305,"end":31,"id":288153,"title":"The Stand"} +2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 +2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 31 +2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.00850051362067461 +2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : processing took: 2021 ms +2023-10-27 13:53:56.375  INFO 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:56.376  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:56.376  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:56.376  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@8f619e +2023-10-27 13:53:56.406  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b0e557 +2023-10-27 13:53:56.407 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:56.408  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:56.409  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:56.416 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 +2023-10-27 13:53:56.416  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql +2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? +2023-10-27 13:53:56.418  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question What is TNFAIP1 ? +2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+TNFAIP1+%3F +2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+TNFAIP1+%3F +2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:53:56.418  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=678265572 +2023-10-27 13:53:56.793 DEBUG 11765 --- [nio-8091-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@b41ec02 +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:53:56.794  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+TNFAIP1+%3F +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"TNFAIP1","start":8,"link_probability":1,"rho":0.5,"end":15,"id":15354941,"title":"TNFAIP1"}],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T11:53:56"} +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"TNFAIP1","start":8,"link_probability":1,"rho":0.5,"end":15,"id":15354941,"title":"TNFAIP1"} +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 8 +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 8:15 +2023-10-27 13:53:56.801 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 +2023-10-27 13:53:56.802  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70b9ef65 +2023-10-27 13:53:56.802 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:53:56.814  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:56.814  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:56.815 DEBUG 11765 --- [nio-8091-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:53:56.824 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : processing took: 448 ms +2023-10-27 13:54:32.777  INFO 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:32.779  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:32.779  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:32.779  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@465c6d21 +2023-10-27 13:54:32.786  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@489b8b9a +2023-10-27 13:54:32.787 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:32.788  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:32.789  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:32.797 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c +2023-10-27 13:54:32.797  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql +2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:32.799  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F +2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F +2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:54:32.799  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=75150378 +2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@9a681a1 +2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:54:33.061  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F +2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"Bremerhaven","start":5,"link_probability":0.8195652365684509,"rho":0.4997067451477051,"end":16,"id":18933240,"title":"Bremerhaven"},{"spot":"local","start":19,"link_probability":0.0012918071588501334,"rho":0.16140532493591309,"end":24,"id":17739,"title":"Local area network"},{"spot":"dialing code","start":25,"link_probability":0.037974681705236435,"rho":0.15426623821258545,"end":37,"id":7455543,"title":"Telephone numbers in Europe"},{"spot":"start","start":38,"link_probability":0.0033585745841264725,"rho":0.060777511447668076,"end":43,"id":21747480,"title":"Start (command)"}],"time":25,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:33"} +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Bremerhaven","start":5,"link_probability":0.8195652365684509,"rho":0.4997067451477051,"end":16,"id":18933240,"title":"Bremerhaven"} +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 5 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 16 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.8195652365684509 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 5:16 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"local","start":19,"link_probability":0.0012918071588501334,"rho":0.16140532493591309,"end":24,"id":17739,"title":"Local area network"} +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 19 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 24 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0012918071588501334 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"dialing code","start":25,"link_probability":0.037974681705236435,"rho":0.15426623821258545,"end":37,"id":7455543,"title":"Telephone numbers in Europe"} +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 25 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 37 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.037974681705236435 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"start","start":38,"link_probability":0.0033585745841264725,"rho":0.060777511447668076,"end":43,"id":21747480,"title":"Start (command)"} +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 38 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 43 +2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0033585745841264725 +2023-10-27 13:54:33.067 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c +2023-10-27 13:54:33.068  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2cb6d0d1 +2023-10-27 13:54:33.068 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:33.070  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:33.070  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:33.070 DEBUG 11765 --- [nio-8091-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "5"^^xsd:nonNegativeInteger . + _:b1 oa:end "16"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:33.078 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : processing took: 299 ms +2023-10-27 13:54:34.309  INFO 11765 --- [nio-8091-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.310  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.310  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.310  INFO 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@3657430f +2023-10-27 13:54:34.318  INFO 11765 --- [nio-8091-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29f14fac +2023-10-27 13:54:34.318 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:34.320  INFO 11765 --- [nio-8091-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.320  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.330 DEBUG 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 +2023-10-27 13:54:34.330  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql +2023-10-27 13:54:34.332 DEBUG 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? +2023-10-27 13:54:34.333  INFO 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Question How many things are part of the "One Piece" Franchise? +2023-10-27 13:54:34.333 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F +2023-10-27 13:54:34.333 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F +2023-10-27 13:54:34.333 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:54:34.333  INFO 11765 --- [nio-8091-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1025195629 +2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3c72a06a +2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:54:34.480  INFO 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F +2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"One Piece","start":33,"link_probability":0.2657071053981781,"rho":0.3669940233230591,"end":42,"id":360759,"title":"One Piece"},{"spot":"Franchise","start":44,"link_probability":0.051105622202157974,"rho":0.2596932649612427,"end":53,"id":3592846,"title":"Media franchise"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:34"} +2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"One Piece","start":33,"link_probability":0.2657071053981781,"rho":0.3669940233230591,"end":42,"id":360759,"title":"One Piece"} +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 33 +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : End: 42 +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.2657071053981781 +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Franchise","start":44,"link_probability":0.051105622202157974,"rho":0.2596932649612427,"end":53,"id":3592846,"title":"Media franchise"} +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 44 +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : End: 53 +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.051105622202157974 +2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.component.QanaryServiceController  : processing took: 172 ms +2023-10-27 13:55:04.257  INFO 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:04.257  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:04.258  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:04.258  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@4959b41d +2023-10-27 13:55:04.282  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@472d8011 +2023-10-27 13:55:04.282 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:04.283  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:04.284  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:04.292 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 +2023-10-27 13:55:04.292  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 found in urn:graph:713e7115-51ec-4875-b710-943891a2849a at http://localhost:8080/sparql +2023-10-27 13:55:04.295 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the mother tongue of the author Chimamanda Ngozi Adichie ? +2023-10-27 13:55:04.296  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question What is the mother tongue of the author Chimamanda Ngozi Adichie ? +2023-10-27 13:55:04.296 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+mother+tongue+of+the+author+Chimamanda+Ngozi+Adichie+%3F +2023-10-27 13:55:04.296 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+mother+tongue+of+the+author+Chimamanda+Ngozi+Adichie+%3F +2023-10-27 13:55:04.296 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:55:04.296  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1812827059 +2023-10-27 13:55:04.487 DEBUG 11765 --- [nio-8091-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@54b4a6fd +2023-10-27 13:55:04.487 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:55:04.487 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:55:04.487  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+mother+tongue+of+the+author+Chimamanda+Ngozi+Adichie+%3F +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"mother tongue","start":12,"link_probability":0.1734296828508377,"rho":0.08671484142541885,"end":25,"id":263257,"title":"First language"},{"spot":"author","start":33,"link_probability":0.03737027570605278,"rho":0.01868513785302639,"end":39,"id":914,"title":"Author"},{"spot":"Chimamanda Ngozi Adichie","start":40,"link_probability":1,"rho":0.5,"end":64,"id":621845,"title":"Chimamanda Ngozi Adichie"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T11:55:04"} +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"mother tongue","start":12,"link_probability":0.1734296828508377,"rho":0.08671484142541885,"end":25,"id":263257,"title":"First language"} +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 25 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.1734296828508377 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"author","start":33,"link_probability":0.03737027570605278,"rho":0.01868513785302639,"end":39,"id":914,"title":"Author"} +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 33 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 39 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.03737027570605278 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Chimamanda Ngozi Adichie","start":40,"link_probability":1,"rho":0.5,"end":64,"id":621845,"title":"Chimamanda Ngozi Adichie"} +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 40 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 64 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 40:64 +2023-10-27 13:55:04.498 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 +2023-10-27 13:55:04.500  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50c9192a +2023-10-27 13:55:04.500 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:04.502  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:04.503  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:04.503 DEBUG 11765 --- [nio-8091-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "64"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:04.514 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : processing took: 257 ms +2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@591cefed +2023-10-27 13:55:16.670  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c171a2e +2023-10-27 13:55:16.671 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:16.672  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:16.672  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:16.680 DEBUG 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f +2023-10-27 13:55:16.680  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql +2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation which forest is bigger, Amazon Rainforest or Congo Basin? +2023-10-27 13:55:16.682  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question which forest is bigger, Amazon Rainforest or Congo Basin? +2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=which+forest+is+bigger%2C+Amazon+Rainforest+or+Congo+Basin%3F +2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=which+forest+is+bigger%2C+Amazon+Rainforest+or+Congo+Basin%3F +2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:55:16.683  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1770223929 +2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@28a05e21 +2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:55:16.889  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=which+forest+is+bigger%2C+Amazon+Rainforest+or+Congo+Basin%3F +2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"bigger","start":16,"link_probability":0.0013551971642300487,"rho":6.775985821150243E-4,"end":22,"id":24937527,"title":"Bigger (Backstreet Boys song)"},{"spot":"Amazon Rainforest","start":24,"link_probability":0.9063583612442017,"rho":0.5651211738586426,"end":41,"id":48139,"title":"Amazon rainforest"},{"spot":"Congo Basin","start":45,"link_probability":0.8208954930305481,"rho":0.5223897099494934,"end":56,"id":1866767,"title":"Congo Basin"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:55:16"} +2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"bigger","start":16,"link_probability":0.0013551971642300487,"rho":6.775985821150243E-4,"end":22,"id":24937527,"title":"Bigger (Backstreet Boys song)"} +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 16 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0013551971642300487 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Amazon Rainforest","start":24,"link_probability":0.9063583612442017,"rho":0.5651211738586426,"end":41,"id":48139,"title":"Amazon rainforest"} +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 24 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.9063583612442017 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 24:41 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Congo Basin","start":45,"link_probability":0.8208954930305481,"rho":0.5223897099494934,"end":56,"id":1866767,"title":"Congo Basin"} +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 45 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : End: 56 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.8208954930305481 +2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 45:56 +2023-10-27 13:55:16.897 DEBUG 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f +2023-10-27 13:55:16.898  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@167dbf5f +2023-10-27 13:55:16.898 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:16.899  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:16.900  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:16.900 DEBUG 11765 --- [nio-8091-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "41"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:16.906  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22f01d4 +2023-10-27 13:55:16.906 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:16.908  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "45"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:16.908  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "45"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:16.909 DEBUG 11765 --- [nio-8091-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "45"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:16.916 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.component.QanaryServiceController  : processing took: 272 ms +2023-10-27 13:56:01.160  INFO 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:01.161  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:01.161  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:01.161  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@3d9b409f +2023-10-27 13:56:01.171  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@335cb95c +2023-10-27 13:56:01.171 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:56:01.172  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:01.173  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:01.181 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:01.181  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql +2023-10-27 13:56:01.182 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:01.183  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:01.183 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+American+presidents+followed+in+their+father%E2%80%98s+step+and+also+became+the+president%3F +2023-10-27 13:56:01.183 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+American+presidents+followed+in+their+father%E2%80%98s+step+and+also+became+the+president%3F +2023-10-27 13:56:01.183 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:56:01.183  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1217529055 +2023-10-27 13:56:01.649 DEBUG 11765 --- [nio-8091-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7261b367 +2023-10-27 13:56:01.649 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:56:01.649 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 13:56:01.649  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+American+presidents+followed+in+their+father%E2%80%98s+step+and+also+became+the+president%3F +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"American","start":6,"link_probability":0.12786918878555298,"rho":0.19345925748348236,"end":14,"id":19792942,"title":"Americans"},{"spot":"American presidents","start":6,"link_probability":0.05684754624962807,"rho":0.2519736886024475,"end":25,"id":24113,"title":"President of the United States"},{"spot":"father","start":44,"link_probability":0.003747740527614951,"rho":0.07076490670442581,"end":50,"id":8655005,"title":"Priesthood (Catholic Church)"},{"spot":"step","start":53,"link_probability":0.004248012788593769,"rho":0.058488380163908005,"end":57,"id":2808074,"title":"Stepping (African-American)"},{"spot":"president","start":78,"link_probability":0.06467332690954208,"rho":0.2558865547180176,"end":87,"id":24113,"title":"President of the United States"}],"time":199,"api":"tag","lang":"en","timestamp":"2023-10-27T11:56:01"} +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"American","start":6,"link_probability":0.12786918878555298,"rho":0.19345925748348236,"end":14,"id":19792942,"title":"Americans"} +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 6 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 14 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.12786918878555298 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"American presidents","start":6,"link_probability":0.05684754624962807,"rho":0.2519736886024475,"end":25,"id":24113,"title":"President of the United States"} +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 6 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 25 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.05684754624962807 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"father","start":44,"link_probability":0.003747740527614951,"rho":0.07076490670442581,"end":50,"id":8655005,"title":"Priesthood (Catholic Church)"} +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 44 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 50 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.003747740527614951 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"step","start":53,"link_probability":0.004248012788593769,"rho":0.058488380163908005,"end":57,"id":2808074,"title":"Stepping (African-American)"} +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 53 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 57 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.004248012788593769 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"president","start":78,"link_probability":0.06467332690954208,"rho":0.2558865547180176,"end":87,"id":24113,"title":"President of the United States"} +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 78 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 87 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.06467332690954208 +2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : processing took: 489 ms +2023-10-27 14:00:07.657  INFO 11765 --- [nio-8091-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:07.658  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:07.658  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:07.658  INFO 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@4663b638 +2023-10-27 14:00:07.703  INFO 11765 --- [nio-8091-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@523eee7 +2023-10-27 14:00:07.704 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:07.708  INFO 11765 --- [nio-8091-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:07.708  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:07.721 DEBUG 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 +2023-10-27 14:00:07.721  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql +2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? +2023-10-27 14:00:07.725  INFO 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : Question Which egyptian pyramid is the tallest? +2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+egyptian+pyramid+is+the+tallest%3F +2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+egyptian+pyramid+is+the+tallest%3F +2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:07.727  INFO 11765 --- [nio-8091-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1958538761 +2023-10-27 14:00:08.030 DEBUG 11765 --- [nio-8091-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@71dd861b +2023-10-27 14:00:08.030 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:08.030 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:00:08.030  INFO 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+egyptian+pyramid+is+the+tallest%3F +2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"egyptian pyramid","start":6,"link_probability":0.20652173459529877,"rho":0.10326086729764938,"end":22,"id":864667,"title":"Egyptian pyramids"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T12:00:07"} +2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"egyptian pyramid","start":6,"link_probability":0.20652173459529877,"rho":0.10326086729764938,"end":22,"id":864667,"title":"Egyptian pyramids"} +2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 6 +2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 +2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.20652173459529877 +2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.component.QanaryServiceController  : processing took: 374 ms +2023-10-27 14:03:42.221  INFO 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:42.221  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:42.221  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:42.222  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@1418cfae +2023-10-27 14:03:42.288  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c794f2c +2023-10-27 14:03:42.288 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:42.294  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:42.294  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:42.308 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 +2023-10-27 14:03:42.308  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 found in urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad at http://localhost:8080/sparql +2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What percentage of Andorra is covered with water? +2023-10-27 14:03:42.311  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question What percentage of Andorra is covered with water? +2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+percentage+of+Andorra+is+covered+with+water%3F +2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+percentage+of+Andorra+is+covered+with+water%3F +2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:03:42.311  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1621093784 +2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66e69089 +2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:03:42.687  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+percentage+of+Andorra+is+covered+with+water%3F +2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"percentage","start":5,"link_probability":0.005027962848544121,"rho":0.06523308902978897,"end":15,"id":64493,"title":"Percentage"},{"spot":"Andorra","start":19,"link_probability":0.9778062105178833,"rho":0.5133544206619263,"end":26,"id":600,"title":"Andorra"},{"spot":"covered","start":30,"link_probability":0.009578529745340347,"rho":0.004789264872670174,"end":37,"id":159031,"title":"Cover version"},{"spot":"water","start":43,"link_probability":0.020834363996982574,"rho":0.09758763015270233,"end":48,"id":198725,"title":"Drinking water"}],"time":12,"api":"tag","lang":"en","timestamp":"2023-10-27T12:03:42"} +2023-10-27 14:03:42.688 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"percentage","start":5,"link_probability":0.005027962848544121,"rho":0.06523308902978897,"end":15,"id":64493,"title":"Percentage"} +2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 5 +2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 +2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005027962848544121 +2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Andorra","start":19,"link_probability":0.9778062105178833,"rho":0.5133544206619263,"end":26,"id":600,"title":"Andorra"} +2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 19 +2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 26 +2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.9778062105178833 +2023-10-27 14:03:42.695 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 19:26 +2023-10-27 14:03:42.695 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"covered","start":30,"link_probability":0.009578529745340347,"rho":0.004789264872670174,"end":37,"id":159031,"title":"Cover version"} +2023-10-27 14:03:42.695 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 30 +2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 37 +2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.009578529745340347 +2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"water","start":43,"link_probability":0.020834363996982574,"rho":0.09758763015270233,"end":48,"id":198725,"title":"Drinking water"} +2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 43 +2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 48 +2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.020834363996982574 +2023-10-27 14:03:42.706 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 +2023-10-27 14:03:42.715  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34d15644 +2023-10-27 14:03:42.716 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:42.722  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:42.726  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:42.726 DEBUG 11765 --- [nio-8091-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:42.733 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : processing took: 512 ms +2023-10-27 14:04:14.409  INFO 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:14.410  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:14.410  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:14.410  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@38e54986 +2023-10-27 14:04:14.483  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@541f4645 +2023-10-27 14:04:14.483 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:14.486  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:14.486  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:14.492 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd +2023-10-27 14:04:14.493  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql +2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? +2023-10-27 14:04:14.495  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question What are the titles of the Star Wars series movies? +2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+are+the+titles+of+the+Star+Wars+series+movies%3F +2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+are+the+titles+of+the+Star+Wars+series+movies%3F +2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:04:14.495  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1141477862 +2023-10-27 14:04:14.961 DEBUG 11765 --- [nio-8091-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@73230b56 +2023-10-27 14:04:14.961 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:04:14.962  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+are+the+titles+of+the+Star+Wars+series+movies%3F +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"titles","start":13,"link_probability":0.0018105803756043315,"rho":0.12972739338874817,"end":19,"id":12167301,"title":"Zuda Comics"},{"spot":"Star Wars","start":27,"link_probability":0.9175929427146912,"rho":0.6275675296783447,"end":36,"id":26678,"title":"Star Wars"},{"spot":"series","start":37,"link_probability":0.004760534502565861,"rho":0.18950708210468292,"end":43,"id":19508643,"title":"Television program"},{"spot":"movies","start":44,"link_probability":0.01603647880256176,"rho":0.1879962533712387,"end":50,"id":21555729,"title":"Film"}],"time":41,"api":"tag","lang":"en","timestamp":"2023-10-27T12:04:14"} +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"titles","start":13,"link_probability":0.0018105803756043315,"rho":0.12972739338874817,"end":19,"id":12167301,"title":"Zuda Comics"} +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 13 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 19 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0018105803756043315 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Star Wars","start":27,"link_probability":0.9175929427146912,"rho":0.6275675296783447,"end":36,"id":26678,"title":"Star Wars"} +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 27 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 36 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.9175929427146912 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 27:36 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"series","start":37,"link_probability":0.004760534502565861,"rho":0.18950708210468292,"end":43,"id":19508643,"title":"Television program"} +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 37 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 43 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.004760534502565861 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"movies","start":44,"link_probability":0.01603647880256176,"rho":0.1879962533712387,"end":50,"id":21555729,"title":"Film"} +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 44 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 50 +2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.01603647880256176 +2023-10-27 14:04:14.967 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd +2023-10-27 14:04:14.968  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6118d5cd +2023-10-27 14:04:14.968 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:14.970  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.972  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.972 DEBUG 11765 --- [nio-8091-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "36"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:14.978 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : processing took: 568 ms +2023-10-27 14:08:30.480  INFO 11765 --- [nio-8091-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:08:30.486  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:08:30.487  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:08:30.487  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f1199f2 +2023-10-27 14:08:30.602  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71d66860 +2023-10-27 14:08:30.602 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:30.604  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:30.606  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:30.646 DEBUG 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 +2023-10-27 14:08:30.647  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql +2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? +2023-10-27 14:08:30.649  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? +2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F +2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F +2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:30.650  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1004859743 +2023-10-27 14:08:31.032 DEBUG 11765 --- [nio-8091-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@548aa161 +2023-10-27 14:08:31.033 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:31.033 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:08:31.033  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F +2023-10-27 14:08:31.033 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"first","start":10,"link_probability":0.002080680103972554,"rho":0.13693776726722717,"end":15,"id":31653,"title":"First Amendment to the United States Constitution"},{"spot":"TV show","start":21,"link_probability":0.024482225999236107,"rho":0.11718680709600449,"end":28,"id":19508643,"title":"Television program"},{"spot":"Flintstones","start":33,"link_probability":1,"rho":0.5585727691650391,"end":44,"id":51787,"title":"The Flintstones"},{"spot":"end","start":52,"link_probability":0.003478773171082139,"rho":0.04351380094885826,"end":55,"id":26688484,"title":"The End (Lost)"},{"spot":"racial discrimination","start":59,"link_probability":0.17952249944210052,"rho":0.24009808897972107,"end":80,"id":2162835,"title":"Racism in the United States"},{"spot":"voting in the US","start":84,"link_probability":1,"rho":0.6362266540527344,"end":100,"id":924170,"title":"Elections in the United States"}],"time":62,"api":"tag","lang":"en","timestamp":"2023-10-27T12:08:30"} +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"first","start":10,"link_probability":0.002080680103972554,"rho":0.13693776726722717,"end":15,"id":31653,"title":"First Amendment to the United States Constitution"} +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 10 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.002080680103972554 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"TV show","start":21,"link_probability":0.024482225999236107,"rho":0.11718680709600449,"end":28,"id":19508643,"title":"Television program"} +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 21 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 28 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.024482225999236107 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Flintstones","start":33,"link_probability":1,"rho":0.5585727691650391,"end":44,"id":51787,"title":"The Flintstones"} +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 33 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 44 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 33:44 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"end","start":52,"link_probability":0.003478773171082139,"rho":0.04351380094885826,"end":55,"id":26688484,"title":"The End (Lost)"} +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 52 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 55 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.003478773171082139 +2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"racial discrimination","start":59,"link_probability":0.17952249944210052,"rho":0.24009808897972107,"end":80,"id":2162835,"title":"Racism in the United States"} +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 59 +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 80 +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.17952249944210052 +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"voting in the US","start":84,"link_probability":1,"rho":0.6362266540527344,"end":100,"id":924170,"title":"Elections in the United States"} +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 84 +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 100 +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 84:100 +2023-10-27 14:08:31.041 DEBUG 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 +2023-10-27 14:08:31.042  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ab23add +2023-10-27 14:08:31.042 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:31.045  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:31.046  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:31.046 DEBUG 11765 --- [nio-8091-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:31.058  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ba004f5 +2023-10-27 14:08:31.059 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:31.062  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "84"^^xsd:nonNegativeInteger . + _:b1 oa:end "100"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:31.063  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "84"^^xsd:nonNegativeInteger . + _:b1 oa:end "100"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:31.063 DEBUG 11765 --- [nio-8091-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "84"^^xsd:nonNegativeInteger . + _:b1 oa:end "100"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:31.071 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.component.QanaryServiceController  : processing took: 584 ms +2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@15198a0c +2023-10-27 14:09:02.726  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43d947aa +2023-10-27 14:09:02.726 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:02.727  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:02.728  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:02.735 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be +2023-10-27 14:09:02.735  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be found in urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 at http://localhost:8080/sparql +2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? +2023-10-27 14:09:02.738  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question In which country is Oberirrach ? +2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=In+which+country+is+Oberirrach+%3F +2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=In+which+country+is+Oberirrach+%3F +2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:09:02.739  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2111760946 +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@124e4c28 +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:09:02.943  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=In+which+country+is+Oberirrach+%3F +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"country","start":9,"link_probability":0.018311286345124245,"rho":0.009155643172562122,"end":16,"id":5247,"title":"Country music"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T12:09:02"} +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"country","start":9,"link_probability":0.018311286345124245,"rho":0.009155643172562122,"end":16,"id":5247,"title":"Country music"} +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 9 +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 16 +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.018311286345124245 +2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : processing took: 231 ms +2023-10-27 14:10:12.910  INFO 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:12.910  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:12.911  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:12.911  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@22476fdd +2023-10-27 14:10:12.930  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@680711aa +2023-10-27 14:10:12.930 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:12.931  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:12.931  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:12.939 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e +2023-10-27 14:10:12.940  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e found in urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224 at http://localhost:8080/sparql +2023-10-27 14:10:12.941 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:12.941  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:12.941 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F +2023-10-27 14:10:12.941 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F +2023-10-27 14:10:12.942 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:10:12.942  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1421314731 +2023-10-27 14:10:13.190 DEBUG 11765 --- [nio-8091-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4eaa49f +2023-10-27 14:10:13.190 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:10:13.190 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" +2023-10-27 14:10:13.190  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"Oscars","start":9,"link_probability":0.3021920621395111,"rho":0.30007290840148926,"end":15,"id":324,"title":"Academy Awards"},{"spot":"movies","start":28,"link_probability":0.01603647880256176,"rho":0.1388285756111145,"end":34,"id":21555729,"title":"Film"},{"spot":"directed","start":35,"link_probability":0.007569239940494299,"rho":0.14300870895385742,"end":43,"id":21554680,"title":"Film director"},{"spot":"Hayao Miyazaki","start":47,"link_probability":1,"rho":0.6224693059921265,"end":61,"id":20312,"title":"Hayao Miyazaki"},{"spot":"combined","start":62,"link_probability":0.0031111694406718016,"rho":0.01150079257786274,"end":70,"id":29612,"title":"Syncretism"},{"spot":"win","start":71,"link_probability":0.0032746954821050167,"rho":0.0016373477410525084,"end":74,"id":15861684,"title":"Winterberg bobsleigh, luge, and skeleton track"}],"time":50,"api":"tag","lang":"en","timestamp":"2023-10-27T12:10:13"} +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Oscars","start":9,"link_probability":0.3021920621395111,"rho":0.30007290840148926,"end":15,"id":324,"title":"Academy Awards"} +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 9 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.3021920621395111 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"movies","start":28,"link_probability":0.01603647880256176,"rho":0.1388285756111145,"end":34,"id":21555729,"title":"Film"} +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 28 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 34 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.01603647880256176 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"directed","start":35,"link_probability":0.007569239940494299,"rho":0.14300870895385742,"end":43,"id":21554680,"title":"Film director"} +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 35 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 43 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.007569239940494299 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Hayao Miyazaki","start":47,"link_probability":1,"rho":0.6224693059921265,"end":61,"id":20312,"title":"Hayao Miyazaki"} +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 47 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 61 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 47:61 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"combined","start":62,"link_probability":0.0031111694406718016,"rho":0.01150079257786274,"end":70,"id":29612,"title":"Syncretism"} +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 62 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 70 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0031111694406718016 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"win","start":71,"link_probability":0.0032746954821050167,"rho":0.0016373477410525084,"end":74,"id":15861684,"title":"Winterberg bobsleigh, luge, and skeleton track"} +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 71 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 74 +2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0032746954821050167 +2023-10-27 14:10:13.197 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e +2023-10-27 14:10:13.198  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1dca1a58 +2023-10-27 14:10:13.198 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:13.227  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:13.228  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:13.228 DEBUG 11765 --- [nio-8091-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:13.234 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : processing took: 324 ms diff --git a/qanary-component-NER-Tagme/src/main/resources/config/application.properties b/qanary-component-NER-Tagme/src/main/resources/config/application.properties index a4dadccc9..3441845bc 100644 --- a/qanary-component-NER-Tagme/src/main/resources/config/application.properties +++ b/qanary-component-NER-Tagme/src/main/resources/config/application.properties @@ -47,5 +47,5 @@ qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # textrazor service tagme.api.live.test.active=true tagme.api.url=https://tagme.d4science.org/tagme/tag -tagme.api.key= +tagme.api.key=354d5276-677a-4da3-acfa-30b9101feb8c-843339462 tagme.api.threshold=0.65 diff --git a/qanary-component-NER-TextRazor/nohup.out b/qanary-component-NER-TextRazor/nohup.out new file mode 100644 index 000000000..2fa405b50 --- /dev/null +++ b/qanary-component-NER-TextRazor/nohup.out @@ -0,0 +1,5377 @@ + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TextRazor -- TextRazor is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:22.767  INFO 9651 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9651 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) +2023-10-27 12:09:22.824 DEBUG 9651 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.825  INFO 9651 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:09:42.059  WARN 9651 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:42.437  WARN 9651 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:42.598  WARN 9651 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'textRazor' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/textrazor/ner/TextRazor.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.textrazor.ner.TextRazor]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException +2023-10-27 12:09:42.985 ERROR 9651 --- [ main] o.s.boot.SpringApplication  : Application run failed + +org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'textRazor' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/textrazor/ner/TextRazor.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.textrazor.ner.TextRazor]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] + at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] + at eu.wdaqua.qanary.component.textrazor.ner.Application.main(Application.java:36) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] + at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] +Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.textrazor.ner.TextRazor]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] + at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 25 common frames omitted +Caused by: eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException: null + at eu.wdaqua.qanary.component.textrazor.ner.TextRazor.(TextRazor.java:65) ~[classes!/:3.4.0] + at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] + at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] + at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] + ... 27 common frames omitted + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TextRazor -- TextRazor is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:53.128  INFO 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11764 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) +2023-10-27 12:15:53.196 DEBUG 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:53.200  INFO 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" +2023-10-27 12:16:18.180  WARN 11764 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:18.860  WARN 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:19.027  INFO 11764 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 +2023-10-27 12:16:19.051  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated +2023-10-27 12:16:19.256 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 12:16:19.627 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 12:16:19.700 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:19.761 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 12:16:19.879  INFO 11764 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 +2023-10-27 12:16:20.481 DEBUG 11764 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1133ec6e +2023-10-27 12:16:20.710 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:20.739 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 12:16:20.771  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 12:16:21.189 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.00406,"ok":true} +2023-10-27 12:16:21.194 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} +2023-10-27 12:16:21.194 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 12:16:21.194 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 +2023-10-27 12:16:21.194  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected +2023-10-27 12:16:21.381  INFO 11764 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ca27722 +2023-10-27 12:16:21.382  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated +2023-10-27 12:16:21.383 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 12:16:21.389 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 12:16:21.390 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 12:16:21.390 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 12:16:21.390  INFO 11764 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 +2023-10-27 12:16:21.399 DEBUG 11764 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67427b69 +2023-10-27 12:16:21.621 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 12:16:21.622 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 12:16:21.622  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004069,"ok":true} +2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} +2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 +2023-10-27 12:16:21.624  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected +2023-10-27 12:16:21.625  INFO 11764 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.textrazor.ner.TextRazor@544630b7 +2023-10-27 12:16:21.643  INFO 11764 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8086 +spring.application.name = TextRazor +spring.application.description = TextRazor is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:21.849  INFO 11764 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl +2023-10-27 12:16:28.819  WARN 11764 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:28.847  INFO 11764 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 12:16:38.914  INFO 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : Started Application in 53.431 seconds (JVM running for 65.988) +2023-10-27 12:16:40.606  INFO 11764 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 187c8cfccbc3 +2023-10-27 13:37:19.122  WARN 11764 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TextRazor, managementUrl=http://0.0.0.0:8086/actuator, healthUrl=http://0.0.0.0:8086/actuator/health, serviceUrl=http://0.0.0.0:8086/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": localhost:8080 failed to respond; nested exception is org.apache.http.NoHttpResponseException: localhost:8080 failed to respond. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TextRazor -- TextRazor is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:48.447  INFO 28731 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28731 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) +2023-10-27 13:37:48.461 DEBUG 28731 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:48.462  INFO 28731 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:38:08.954  WARN 28731 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:09.580  WARN 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:09.717  INFO 28731 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c345c5f +2023-10-27 13:38:09.734  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated +2023-10-27 13:38:10.039 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:38:10.570 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:38:10.614 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:10.741 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:38:10.848  INFO 28731 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 +2023-10-27 13:38:11.324 DEBUG 28731 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6063d80a +2023-10-27 13:38:11.575 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:11.629 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:38:11.659  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:38:12.096 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004109,"ok":true} +2023-10-27 13:38:12.121 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} +2023-10-27 13:38:12.134 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 13:38:12.134 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 +2023-10-27 13:38:12.134  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected +2023-10-27 13:38:12.393  INFO 28731 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@23a9ba52 +2023-10-27 13:38:12.394  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated +2023-10-27 13:38:12.405 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:38:12.406 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:38:12.406 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:38:12.407 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:38:12.414  INFO 28731 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 +2023-10-27 13:38:12.420 DEBUG 28731 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@9573b3b +2023-10-27 13:38:12.635 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:38:12.636 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:38:12.636  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004115,"ok":true} +2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} +2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 +2023-10-27 13:38:12.637  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected +2023-10-27 13:38:12.638  INFO 28731 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.textrazor.ner.TextRazor@78461bc4 +2023-10-27 13:38:12.651  INFO 28731 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8086 +spring.application.name = TextRazor +spring.application.description = TextRazor is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:12.736  INFO 28731 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl +2023-10-27 13:38:18.523  WARN 28731 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:18.679  INFO 28731 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:38:28.365  WARN 28731 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8086 is already in use +2023-10-27 13:38:28.727 ERROR 28731 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8086 was already in use. + +Action: + +Identify and stop the process that's listening on port 8086 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +TextRazor -- TextRazor is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.4.0 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:55.741  INFO 30122 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30122 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) +2023-10-27 13:38:55.795 DEBUG 30122 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:55.800  INFO 30122 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" +2023-10-27 13:39:19.000  WARN 30122 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:19.573  WARN 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:19.647  INFO 30122 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1568159 +2023-10-27 13:39:19.669  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated +2023-10-27 13:39:19.769 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:39:19.889 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:39:19.901 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:19.921 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:39:19.967  INFO 30122 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 +2023-10-27 13:39:20.382 DEBUG 30122 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@54709809 +2023-10-27 13:39:20.598 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:20.627 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:39:20.651  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:39:20.976 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004575,"ok":true} +2023-10-27 13:39:21.002 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} +2023-10-27 13:39:21.009 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 13:39:21.011 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 +2023-10-27 13:39:21.011  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected +2023-10-27 13:39:21.157  INFO 30122 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9573b3b +2023-10-27 13:39:21.158  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated +2023-10-27 13:39:21.159 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:39:21.168 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:39:21.179 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:39:21.180 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:39:21.180  INFO 30122 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 +2023-10-27 13:39:21.189 DEBUG 30122 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@544630b7 +2023-10-27 13:39:21.445 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:39:21.451 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:39:21.451  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:39:21.456 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.003601,"ok":true} +2023-10-27 13:39:21.456 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} +2023-10-27 13:39:21.459 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 13:39:21.460 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 +2023-10-27 13:39:21.460  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected +2023-10-27 13:39:21.461  INFO 30122 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.textrazor.ner.TextRazor@1095f122 +2023-10-27 13:39:21.521  INFO 30122 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8086 +spring.application.name = TextRazor +spring.application.description = TextRazor is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:21.668  INFO 30122 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl +2023-10-27 13:39:25.847  WARN 30122 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:25.970  INFO 30122 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s +2023-10-27 13:39:32.490  WARN 30122 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8086 is already in use +2023-10-27 13:39:32.821 ERROR 30122 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8086 was already in use. + +Action: + +Identify and stop the process that's listening on port 8086 or configure this application to listen on another port. + +2023-10-27 13:54:11.902  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:11.999  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:12.412  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:12.955  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@37b2e5ac +2023-10-27 13:54:13.114  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f3aaf78 +2023-10-27 13:54:13.152 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:13.513  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:13.514  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:13.950 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 +2023-10-27 13:54:13.951  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql +2023-10-27 13:54:13.969 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? +2023-10-27 13:54:13.969  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question Did Kobe Bryant leave the Lakers when LeBron James joined that team? +2023-10-27 13:54:13.973 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:54:13.974 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:54:13.975 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:54:13.975 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Did Kobe Bryant leave the Lakers when LeBron James joined that team?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:54:14.261  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=647116524 +2023-10-27 13:54:14.447 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6bcbd5cc +2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:54:14.672  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[5],"entityId":"Los Angeles Lakers","freebaseTypes":["/sports/sports_team","/basketball/basketball_team","/business/employer","/organization/organization","/sports/professional_sports_team","/award/award_nominee","/business/business_operation","/award/award_winner"],"confidenceScore":38.64,"wikiLink":"http://en.wikipedia.org/wiki/Los_Angeles_Lakers","matchedText":"Lakers","freebaseId":"/m/0jmk7","relevanceScore":0.3103,"entityEnglishId":"Los Angeles Lakers","startingPos":26,"endingPos":32,"wikidataId":"Q121783","crunchbaseId":"los-angeles-lakers"},{"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"LeBron James","freebaseTypes":["/tv/tv_program_guest","/people/person","/sports/drafted_athlete","/film/person_or_entity_appearing_in_film","/tv/tv_producer","/tv/tv_actor","/award/award_nominee","/tv/tv_writer","/music/artist","/tv/tv_personality","/film/producer","/film/actor","/basketball/basketball_player","/sports/pro_athlete","/award/award_winner","/olympics/olympic_athlete","/business/product_endorser","/book/author","/sports/sports_award_winner","/book/book_subject","/people/measured_person","/business/sponsored_recipient"],"confidenceScore":36.72,"wikiLink":"http://en.wikipedia.org/wiki/LeBron_James","matchedText":"LeBron James","freebaseId":"/m/01jz6d","relevanceScore":0.2458,"entityEnglishId":"LeBron James","startingPos":38,"endingPos":50,"wikidataId":"Q36159"},{"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[1,2],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":48.08,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.3447,"entityEnglishId":"Kobe Bryant","startingPos":4,"endingPos":15,"wikidataId":"Q25369","crunchbaseId":"black-mamba"}]},"time":0.007004,"ok":true} +2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[5],"entityId":"Los Angeles Lakers","freebaseTypes":["/sports/sports_team","/basketball/basketball_team","/business/employer","/organization/organization","/sports/professional_sports_team","/award/award_nominee","/business/business_operation","/award/award_winner"],"confidenceScore":38.64,"wikiLink":"http://en.wikipedia.org/wiki/Los_Angeles_Lakers","matchedText":"Lakers","freebaseId":"/m/0jmk7","relevanceScore":0.3103,"entityEnglishId":"Los Angeles Lakers","startingPos":26,"endingPos":32,"wikidataId":"Q121783","crunchbaseId":"los-angeles-lakers"} +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 32 +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"LeBron James","freebaseTypes":["/tv/tv_program_guest","/people/person","/sports/drafted_athlete","/film/person_or_entity_appearing_in_film","/tv/tv_producer","/tv/tv_actor","/award/award_nominee","/tv/tv_writer","/music/artist","/tv/tv_personality","/film/producer","/film/actor","/basketball/basketball_player","/sports/pro_athlete","/award/award_winner","/olympics/olympic_athlete","/business/product_endorser","/book/author","/sports/sports_award_winner","/book/book_subject","/people/measured_person","/business/sponsored_recipient"],"confidenceScore":36.72,"wikiLink":"http://en.wikipedia.org/wiki/LeBron_James","matchedText":"LeBron James","freebaseId":"/m/01jz6d","relevanceScore":0.2458,"entityEnglishId":"LeBron James","startingPos":38,"endingPos":50,"wikidataId":"Q36159"} +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 50 +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[1,2],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":48.08,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.3447,"entityEnglishId":"Kobe Bryant","startingPos":4,"endingPos":15,"wikidataId":"Q25369","crunchbaseId":"black-mamba"} +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 4 +2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 15 +2023-10-27 13:54:14.681 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 +2023-10-27 13:54:14.681  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5384080f +2023-10-27 13:54:14.681 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:14.693  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.694  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.694 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "26"^^xsd:nonNegativeInteger . + _:b1 oa:end "32"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.703  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cdb6461 +2023-10-27 13:54:14.704 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:14.706  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.706  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.706 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "50"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.714  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@463b285c +2023-10-27 13:54:14.714 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:14.716  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.717  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.717 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "4"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:14.723 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 2745 ms +2023-10-27 13:54:17.575  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:17.576  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:17.576  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:17.576  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f27a5aa +2023-10-27 13:54:17.584  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25c21e8a +2023-10-27 13:54:17.585 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:17.586  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:17.587  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:17.596 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d +2023-10-27 13:54:17.597  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d found in urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc at http://localhost:8080/sparql +2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 13:54:17.599  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question How many countries have never been members of the UN? +2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many countries have never been members of the UN?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:54:17.600  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=369039952 +2023-10-27 13:54:17.601 DEBUG 11764 --- [nio-8086-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7930c74 +2023-10-27 13:54:17.818 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:17.818 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:54:17.818  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:54:17.819 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true},"time":0.002991,"ok":true} +2023-10-27 13:54:17.819 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : processing took: 243 ms +2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@4ece3469 +2023-10-27 13:55:25.920  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4009d3c0 +2023-10-27 13:55:25.920 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:25.922  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:25.922  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:25.930 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 +2023-10-27 13:55:25.930  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql +2023-10-27 13:55:25.933 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:25.933  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:25.933 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:55:25.933 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:55:25.934 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:55:25.934 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the website of NPR's “Tiny Desk Concert”?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:55:25.934  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=143736597 +2023-10-27 13:55:26.097 DEBUG 11764 --- [nio-8086-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@44365f19 +2023-10-27 13:55:26.309 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:55:26.309 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:55:26.310  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:55:26.310 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Organisation","Broadcaster","BroadcastNetwork","TelevisionStation"],"matchingTokens":[5],"entityId":"NPR","freebaseTypes":["/computer/software_developer","/award/award_winner","/broadcast/producer","/business/employer","/media_common/quotation_source","/book/book_subject","/government/polling_authority","/business/customer","/business/consumer_company","/business/business_operation","/organization/organization","/broadcast/radio_network","/organization/non_profit_organization","/internet/social_network_user"],"confidenceScore":2.935,"wikiLink":"http://en.wikipedia.org/wiki/NPR","matchedText":"NPR","freebaseId":"/m/0c0sl","relevanceScore":0,"entityEnglishId":"NPR","startingPos":23,"endingPos":26,"wikidataId":"Q671510","crunchbaseId":"npr","permid":"4296094825"}]},"time":0.004029,"ok":true} +2023-10-27 13:55:26.310 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Organisation","Broadcaster","BroadcastNetwork","TelevisionStation"],"matchingTokens":[5],"entityId":"NPR","freebaseTypes":["/computer/software_developer","/award/award_winner","/broadcast/producer","/business/employer","/media_common/quotation_source","/book/book_subject","/government/polling_authority","/business/customer","/business/consumer_company","/business/business_operation","/organization/organization","/broadcast/radio_network","/organization/non_profit_organization","/internet/social_network_user"],"confidenceScore":2.935,"wikiLink":"http://en.wikipedia.org/wiki/NPR","matchedText":"NPR","freebaseId":"/m/0c0sl","relevanceScore":0,"entityEnglishId":"NPR","startingPos":23,"endingPos":26,"wikidataId":"Q671510","crunchbaseId":"npr","permid":"4296094825"} +2023-10-27 13:55:26.310 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 +2023-10-27 13:55:26.312 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 +2023-10-27 13:55:26.318 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 +2023-10-27 13:55:26.318  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@134d9fb +2023-10-27 13:55:26.318 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:26.320  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:26.320  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:26.320 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "26"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:26.328 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : processing took: 426 ms +2023-10-27 13:57:22.027  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:22.030  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:22.031  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:22.031  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@7c17a909 +2023-10-27 13:57:22.052  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72d058fb +2023-10-27 13:57:22.052 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:22.054  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:22.054  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:22.068 DEBUG 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:22.068  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql +2023-10-27 13:57:22.071 DEBUG 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? +2023-10-27 13:57:22.071  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question What is the twitter name of Running Wild? +2023-10-27 13:57:22.071 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:57:22.072 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:57:22.072 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:57:22.072 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the twitter name of Running Wild?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:57:22.072  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=481231456 +2023-10-27 13:57:22.212 DEBUG 11764 --- [nio-8086-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@76efc279 +2023-10-27 13:57:22.424 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:22.425 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:57:22.425  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:57:22.425 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[3],"entityId":"Twitter","freebaseTypes":["/media_common/quotation_source","/business/employer","/award/award_nominated_work","/book/book_subject","/media_common/quotation_subject","/organization/organization_partnership","/business/customer","/award/award_winning_work","/internet/website"],"confidenceScore":1.506,"wikiLink":"http://en.wikipedia.org/wiki/Twitter","matchedText":"twitter","freebaseId":"/m/0289n8t","relevanceScore":0,"entityEnglishId":"Twitter","startingPos":12,"endingPos":19,"wikidataId":"Q918","crunchbaseId":"twitter","lei":"549300I8RX485XMK6836","permid":"4296301199"}]},"time":0.00579,"ok":true} +2023-10-27 13:57:22.433 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[3],"entityId":"Twitter","freebaseTypes":["/media_common/quotation_source","/business/employer","/award/award_nominated_work","/book/book_subject","/media_common/quotation_subject","/organization/organization_partnership","/business/customer","/award/award_winning_work","/internet/website"],"confidenceScore":1.506,"wikiLink":"http://en.wikipedia.org/wiki/Twitter","matchedText":"twitter","freebaseId":"/m/0289n8t","relevanceScore":0,"entityEnglishId":"Twitter","startingPos":12,"endingPos":19,"wikidataId":"Q918","crunchbaseId":"twitter","lei":"549300I8RX485XMK6836","permid":"4296301199"} +2023-10-27 13:57:22.434 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question: 12 +2023-10-27 13:57:22.434 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 +2023-10-27 13:57:22.455 DEBUG 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:22.457  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33ed52c0 +2023-10-27 13:57:22.457 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:22.465  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:22.466  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:22.466 DEBUG 11764 --- [nio-8086-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "12"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:22.485 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.QanaryServiceController  : processing took: 455 ms +2023-10-27 13:57:29.905  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:29.905  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:29.905  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:29.906  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@3eabd903 +2023-10-27 13:57:29.937  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@306c20a6 +2023-10-27 13:57:29.937 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:29.948  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:29.949  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:29.974 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 +2023-10-27 13:57:29.975  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql +2023-10-27 13:57:29.985 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many different colors can water take? +2023-10-27 13:57:29.986  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question How many different colors can water take? +2023-10-27 13:57:29.986 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:57:29.986 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:57:29.986 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:57:29.987 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many different colors can water take?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:57:29.987  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1937681384 +2023-10-27 13:57:30.098 DEBUG 11764 --- [nio-8086-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3453b273 +2023-10-27 13:57:30.316 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:30.317 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:57:30.317  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:57:30.317 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true},"time":0.008865,"ok":true} +2023-10-27 13:57:30.317 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : processing took: 412 ms +2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@50a8452d +2023-10-27 13:58:04.605  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e6fb148 +2023-10-27 13:58:04.606 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:04.607  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:04.607  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:04.614 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:04.614  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql +2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:04.616  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Who is the oldest cast member of the Netflix show “Queer Eye” ?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 13:58:04.616  INFO 11764 --- [io-8086-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=264905833 +2023-10-27 13:58:04.762 DEBUG 11764 --- [io-8086-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5a502e5d +2023-10-27 13:58:05.003 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:05.003 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 13:58:05.003  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 13:58:05.003 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[8],"entityId":"Netflix","freebaseTypes":["/business/business_operation","/award/award_nominee","/business/issuer","/business/employer","/award/award_winner","/venture_capital/venture_funded_company","/tv/tv_network","/internet/website_owner","/dataworld/information_source","/organization/organization"],"confidenceScore":4.163,"wikiLink":"http://en.wikipedia.org/wiki/Netflix","matchedText":"Netflix","freebaseId":"/m/017rf_","relevanceScore":0.01622,"entityEnglishId":"Netflix","startingPos":37,"endingPos":44,"wikidataId":"Q907311","crunchbaseId":"netflix","lei":"549300Y7VHGU0I7CE873","figi":"BBG001SF6L46","permid":"4295902158"},{"id":1,"type":["Work","TelevisionShow"],"matchingTokens":[10,11,12,13],"entityId":"Queer Eye (2018 TV series)","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.209,"wikiLink":"http://en.wikipedia.org/wiki/Queer_Eye_(2018_TV_series)","matchedText":"“Queer Eye”","freebaseId":"","relevanceScore":0.2218,"entityEnglishId":"Queer Eye (2018 TV series)","startingPos":50,"endingPos":61,"wikidataId":"Q48817408"}]},"time":0.006571,"ok":true} +2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[8],"entityId":"Netflix","freebaseTypes":["/business/business_operation","/award/award_nominee","/business/issuer","/business/employer","/award/award_winner","/venture_capital/venture_funded_company","/tv/tv_network","/internet/website_owner","/dataworld/information_source","/organization/organization"],"confidenceScore":4.163,"wikiLink":"http://en.wikipedia.org/wiki/Netflix","matchedText":"Netflix","freebaseId":"/m/017rf_","relevanceScore":0.01622,"entityEnglishId":"Netflix","startingPos":37,"endingPos":44,"wikidataId":"Q907311","crunchbaseId":"netflix","lei":"549300Y7VHGU0I7CE873","figi":"BBG001SF6L46","permid":"4295902158"} +2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 +2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 44 +2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Work","TelevisionShow"],"matchingTokens":[10,11,12,13],"entityId":"Queer Eye (2018 TV series)","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.209,"wikiLink":"http://en.wikipedia.org/wiki/Queer_Eye_(2018_TV_series)","matchedText":"“Queer Eye”","freebaseId":"","relevanceScore":0.2218,"entityEnglishId":"Queer Eye (2018 TV series)","startingPos":50,"endingPos":61,"wikidataId":"Q48817408"} +2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 50 +2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 61 +2023-10-27 13:58:05.009 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:05.009  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1f52bb73 +2023-10-27 13:58:05.009 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:05.012  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:05.012  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:05.012 DEBUG 11764 --- [io-8086-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "37"^^xsd:nonNegativeInteger . + _:b1 oa:end "44"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:05.019  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@dc10499 +2023-10-27 13:58:05.019 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:58:05.021  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:05.021  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:05.021 DEBUG 11764 --- [io-8086-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "50"^^xsd:nonNegativeInteger . + _:b1 oa:end "61"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:58:05.027 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : processing took: 429 ms +2023-10-27 14:00:13.271  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:13.271  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:13.271  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:13.272  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@3ee6c8c8 +2023-10-27 14:00:13.282  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@307f9b07 +2023-10-27 14:00:13.282 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:13.283  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:13.284  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:13.290 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d +2023-10-27 14:00:13.290  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql +2023-10-27 14:00:13.292 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:13.292  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:13.292 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:00:13.293 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:00:13.293 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:13.293 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Who was the fellow Hobbit who was an enemy of Frodo?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:00:13.293  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2050175224 +2023-10-27 14:00:13.448 DEBUG 11764 --- [nio-8086-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4647d486 +2023-10-27 14:00:14.000 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:14.000 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:00:14.001  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","FictionalCharacter"],"matchingTokens":[10],"entityId":"Frodo Baggins","freebaseTypes":["/theater/theater_character","/fictional_universe/fictional_character","/book/book_character","/fictional_universe/fictional_employer","/film/film_character"],"confidenceScore":6.111,"wikiLink":"http://en.wikipedia.org/wiki/Frodo_Baggins","matchedText":"Frodo","freebaseId":"/m/02vzw","relevanceScore":0.3331,"entityEnglishId":"Frodo Baggins","startingPos":46,"endingPos":51,"wikidataId":"Q177329"},{"id":1,"matchingTokens":[4],"entityId":"Hobbit","freebaseTypes":["/fictional_universe/character_species","/book/book_subject","/film/film_subject"],"confidenceScore":9.628,"wikiLink":"http://en.wikipedia.org/wiki/Hobbit","matchedText":"Hobbit","freebaseId":"/m/0g01s","relevanceScore":0.2816,"entityEnglishId":"Hobbit","startingPos":19,"endingPos":25,"wikidataId":"Q74359"}]},"time":0.006496,"ok":true} +2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","FictionalCharacter"],"matchingTokens":[10],"entityId":"Frodo Baggins","freebaseTypes":["/theater/theater_character","/fictional_universe/fictional_character","/book/book_character","/fictional_universe/fictional_employer","/film/film_character"],"confidenceScore":6.111,"wikiLink":"http://en.wikipedia.org/wiki/Frodo_Baggins","matchedText":"Frodo","freebaseId":"/m/02vzw","relevanceScore":0.3331,"entityEnglishId":"Frodo Baggins","startingPos":46,"endingPos":51,"wikidataId":"Q177329"} +2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 46 +2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 51 +2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"matchingTokens":[4],"entityId":"Hobbit","freebaseTypes":["/fictional_universe/character_species","/book/book_subject","/film/film_subject"],"confidenceScore":9.628,"wikiLink":"http://en.wikipedia.org/wiki/Hobbit","matchedText":"Hobbit","freebaseId":"/m/0g01s","relevanceScore":0.2816,"entityEnglishId":"Hobbit","startingPos":19,"endingPos":25,"wikidataId":"Q74359"} +2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 +2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 25 +2023-10-27 14:00:14.007 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d +2023-10-27 14:00:14.007  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@611b26b4 +2023-10-27 14:00:14.007 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:14.009  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "46"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:14.011  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "46"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:14.011 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "46"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:14.022  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@693312d7 +2023-10-27 14:00:14.023 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:14.026  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:14.026  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:14.027 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:14.039 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : processing took: 768 ms +2023-10-27 14:00:20.826  INFO 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:20.826  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:20.827  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:20.827  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@2e870198 +2023-10-27 14:00:20.921  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75fee0d3 +2023-10-27 14:00:20.922 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:20.922  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:20.923  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:20.930 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 +2023-10-27 14:00:20.930  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql +2023-10-27 14:00:20.933 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? +2023-10-27 14:00:20.934  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question Through which countries does the Danube go? +2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Through which countries does the Danube go?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:00:20.934  INFO 11764 --- [io-8086-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1513651188 +2023-10-27 14:00:21.100 DEBUG 11764 --- [io-8086-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7f7d443c +2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:00:21.315  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","NaturalPlace","BodyOfWater","Stream","River"],"matchingTokens":[5],"entityId":"Danube","freebaseTypes":["/geography/body_of_water","/location/location","/book/book_subject","/geography/geographical_feature","/travel/travel_destination","/geography/river"],"confidenceScore":2.412,"wikiLink":"http://en.wikipedia.org/wiki/Danube","matchedText":"Danube","freebaseId":"/m/06xgl5","relevanceScore":0,"entityEnglishId":"Danube","startingPos":33,"endingPos":39,"wikidataId":"Q1653"}]},"time":0.003883,"ok":true} +2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","NaturalPlace","BodyOfWater","Stream","River"],"matchingTokens":[5],"entityId":"Danube","freebaseTypes":["/geography/body_of_water","/location/location","/book/book_subject","/geography/geographical_feature","/travel/travel_destination","/geography/river"],"confidenceScore":2.412,"wikiLink":"http://en.wikipedia.org/wiki/Danube","matchedText":"Danube","freebaseId":"/m/06xgl5","relevanceScore":0,"entityEnglishId":"Danube","startingPos":33,"endingPos":39,"wikidataId":"Q1653"} +2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 +2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 39 +2023-10-27 14:00:21.320 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 +2023-10-27 14:00:21.321  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a1d6286 +2023-10-27 14:00:21.321 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:21.322  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:21.323  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:21.323 DEBUG 11764 --- [io-8086-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:21.329 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : processing took: 503 ms +2023-10-27 14:00:22.582  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:22.583  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:22.583  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:22.583  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@68839916 +2023-10-27 14:00:22.592  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5549f88a +2023-10-27 14:00:22.592 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:22.593  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:22.593  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:22.599 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f +2023-10-27 14:00:22.599  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql +2023-10-27 14:00:22.601 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? +2023-10-27 14:00:22.601  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question What is the second letter in the Greek alphabet? +2023-10-27 14:00:22.601 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:00:22.601 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:00:22.602 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:22.602 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the second letter in the Greek alphabet?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:00:22.602  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=128651038 +2023-10-27 14:00:22.603 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7a35716e +2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:00:22.824  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Language"],"matchingTokens":[7],"entityId":"Greek language","freebaseTypes":["/book/book_subject","/fictional_universe/fictional_language","/language/human_language","/media_common/netflix_genre","/education/field_of_study","/language/languoid","/broadcast/genre"],"confidenceScore":2.339,"wikiLink":"http://en.wikipedia.org/wiki/Greek_language","matchedText":"Greek","freebaseId":"/m/0349s","relevanceScore":0.2026,"entityEnglishId":"Greek language","startingPos":33,"endingPos":38,"wikidataId":"Q9129"},{"id":1,"matchingTokens":[7,8],"entityId":"Greek alphabet","freebaseTypes":["/language/language_writing_system","/book/book_subject"],"confidenceScore":9.456,"wikiLink":"http://en.wikipedia.org/wiki/Greek_alphabet","matchedText":"Greek alphabet","freebaseId":"/m/0358gm","relevanceScore":0.165,"entityEnglishId":"Greek alphabet","startingPos":33,"endingPos":47,"wikidataId":"Q8216"},{"id":2,"matchingTokens":[8],"entityId":"Alphabet","freebaseTypes":["/book/book_subject","/film/film_subject","/language/language_writing_type"],"confidenceScore":1.45,"wikiLink":"http://en.wikipedia.org/wiki/Alphabet","matchedText":"alphabet","freebaseId":"/m/0hwf","relevanceScore":0.215,"entityEnglishId":"Alphabet","startingPos":39,"endingPos":47,"wikidataId":"Q9779"}]},"time":0.008499,"ok":true} +2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Language"],"matchingTokens":[7],"entityId":"Greek language","freebaseTypes":["/book/book_subject","/fictional_universe/fictional_language","/language/human_language","/media_common/netflix_genre","/education/field_of_study","/language/languoid","/broadcast/genre"],"confidenceScore":2.339,"wikiLink":"http://en.wikipedia.org/wiki/Greek_language","matchedText":"Greek","freebaseId":"/m/0349s","relevanceScore":0.2026,"entityEnglishId":"Greek language","startingPos":33,"endingPos":38,"wikidataId":"Q9129"} +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"matchingTokens":[7,8],"entityId":"Greek alphabet","freebaseTypes":["/language/language_writing_system","/book/book_subject"],"confidenceScore":9.456,"wikiLink":"http://en.wikipedia.org/wiki/Greek_alphabet","matchedText":"Greek alphabet","freebaseId":"/m/0358gm","relevanceScore":0.165,"entityEnglishId":"Greek alphabet","startingPos":33,"endingPos":47,"wikidataId":"Q8216"} +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 47 +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"matchingTokens":[8],"entityId":"Alphabet","freebaseTypes":["/book/book_subject","/film/film_subject","/language/language_writing_type"],"confidenceScore":1.45,"wikiLink":"http://en.wikipedia.org/wiki/Alphabet","matchedText":"alphabet","freebaseId":"/m/0hwf","relevanceScore":0.215,"entityEnglishId":"Alphabet","startingPos":39,"endingPos":47,"wikidataId":"Q9779"} +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 39 +2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 47 +2023-10-27 14:00:22.831 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f +2023-10-27 14:00:22.831  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a042cb6 +2023-10-27 14:00:22.831 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:22.833  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.833  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.834 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "38"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.839  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5ebb4bc9 +2023-10-27 14:00:22.839 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:22.841  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.841  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.841 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "33"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.849  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44ac753c +2023-10-27 14:00:22.849 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:22.850  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "39"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.851  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "39"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.851 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "39"^^xsd:nonNegativeInteger . + _:b1 oa:end "47"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:22.856 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 273 ms +2023-10-27 14:00:31.028  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:31.029  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:31.029  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:31.029  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@315c1a2d +2023-10-27 14:00:31.037  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64c82932 +2023-10-27 14:00:31.038 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:31.039  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:31.040  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:31.045 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:31.045  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql +2023-10-27 14:00:31.047 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? +2023-10-27 14:00:31.047  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question Which of the dragons in Game of Thrones died? +2023-10-27 14:00:31.047 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:00:31.047 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:00:31.048 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:00:31.048 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Which of the dragons in Game of Thrones died?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:00:31.048  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1377505949 +2023-10-27 14:00:31.160 DEBUG 11764 --- [nio-8086-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@678c75c5 +2023-10-27 14:00:31.376 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:00:31.377  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Work","TelevisionShow"],"matchingTokens":[5,6,7],"entityId":"Game of Thrones","freebaseTypes":["/tv/tv_program","/award/award_nominated_work","/award/award_winning_work","/media_common/adapted_work","/media_common/netflix_title","/media_common/adaptation"],"confidenceScore":5.326,"wikiLink":"http://en.wikipedia.org/wiki/Game_of_Thrones","matchedText":"Game of Thrones","freebaseId":"/m/0524b41","relevanceScore":0.05312,"entityEnglishId":"Game of Thrones","startingPos":24,"endingPos":39,"wikidataId":"Q23572"}]},"time":0.004439,"ok":true} +2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Work","TelevisionShow"],"matchingTokens":[5,6,7],"entityId":"Game of Thrones","freebaseTypes":["/tv/tv_program","/award/award_nominated_work","/award/award_winning_work","/media_common/adapted_work","/media_common/netflix_title","/media_common/adaptation"],"confidenceScore":5.326,"wikiLink":"http://en.wikipedia.org/wiki/Game_of_Thrones","matchedText":"Game of Thrones","freebaseId":"/m/0524b41","relevanceScore":0.05312,"entityEnglishId":"Game of Thrones","startingPos":24,"endingPos":39,"wikidataId":"Q23572"} +2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 24 +2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 39 +2023-10-27 14:00:31.384 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:31.385  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@74e15945 +2023-10-27 14:00:31.385 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:31.392  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:31.392  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:31.392 DEBUG 11764 --- [nio-8086-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "24"^^xsd:nonNegativeInteger . + _:b1 oa:end "39"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:31.400 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : processing took: 371 ms +2023-10-27 14:01:11.678  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:11.679  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:11.679  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:11.679  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@2386308e +2023-10-27 14:01:11.688  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d41da8e +2023-10-27 14:01:11.689 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:01:11.690  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:11.690  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:11.698 DEBUG 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:11.699  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql +2023-10-27 14:01:11.700 DEBUG 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:11.701  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many times did the Italian national soccer team win the Fifa World Cup?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:01:11.701  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=888418286 +2023-10-27 14:01:11.811 DEBUG 11764 --- [nio-8086-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@297e5bfe +2023-10-27 14:01:12.030 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:01:12.031 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:01:12.031  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[5],"entityId":"Italy","freebaseTypes":["/periodicals/newspaper_circulation_area","/organization/organization_member","/location/dated_location","/military/military_combatant","/law/court_jurisdiction_area","/location/country","/sports/sports_team_location","/sports/sport_country","/exhibitions/exhibition_subject","/organization/organization_scope","/symbols/name_source","/symbols/flag_referent","/government/governmental_jurisdiction","/location/administrative_division","/travel/travel_destination","/organization/organization_founder","/meteorology/forecast_zone","/fictional_universe/fictional_setting","/location/region","/media_common/netflix_genre","/location/statistical_region","/book/book_subject","/olympics/olympic_participating_country","/film/film_location","/exhibitions/exhibition_venue","/biology/breed_origin","/business/business_location","/food/beer_country_region","/business/employer","/location/location"],"confidenceScore":5.545,"wikiLink":"http://en.wikipedia.org/wiki/Italy","matchedText":"Italian","freebaseId":"/m/03rjj","relevanceScore":0.02572,"entityEnglishId":"Italy","startingPos":23,"endingPos":30,"wikidataId":"Q38"},{"id":1,"type":["Activity","Sport"],"matchingTokens":[7],"entityId":"Association football","freebaseTypes":["/olympics/olympic_participating_country","/interests/hobby","/book/book_subject","/olympics/olympic_sport","/media_common/media_genre","/organization/club_interest","/interests/hobbyist","/internet/website_category","/sports/sport","/award/competition_type","/award/award_discipline","/cvg/computer_game_subject","/film/film_subject","/interests/interest","/cvg/cvg_genre","/organization/organization_sector","/award/hall_of_fame_induction_category","/broadcast/genre","/media_common/netflix_genre","/book/periodical_subject","/tv/tv_subject","/exhibitions/exhibition_subject","/comic_books/comic_book_genre","/sports/school_sports_team","/award/hall_of_fame_discipline","/sports/sports_team"],"confidenceScore":30.55,"wikiLink":"http://en.wikipedia.org/wiki/Association_football","matchedText":"soccer","freebaseId":"/m/0fxc1s","relevanceScore":0.2286,"entityEnglishId":"Association football","startingPos":40,"endingPos":46,"wikidataId":"Q2736"},{"id":2,"type":["Agent","Organisation","SportsTeam","SoccerClub"],"matchingTokens":[5,6,7,8],"entityId":"Italy national football team","freebaseTypes":["/sports/sports_team","/award/award_winner","/award/award_nominee","/soccer/football_team","/organization/organization"],"confidenceScore":1.003,"wikiLink":"http://en.wikipedia.org/wiki/Italy_national_football_team","matchedText":"Italian national soccer team","freebaseId":"/m/01_lhg","relevanceScore":0.2105,"entityEnglishId":"Italy national football team","startingPos":23,"endingPos":51,"wikidataId":"Q676899"},{"id":3,"type":["Event","SocietalEvent","SportsEvent"],"matchingTokens":[11,12,13],"entityId":"FIFA World Cup","freebaseTypes":["/soccer/football_award","/time/recurring_event","/sports/sports_championship","/film/film_subject"],"confidenceScore":14.23,"wikiLink":"http://en.wikipedia.org/wiki/FIFA_World_Cup","matchedText":"Fifa World Cup","freebaseId":"/m/030q7","relevanceScore":0.04699,"entityEnglishId":"FIFA World Cup","startingPos":60,"endingPos":74,"wikidataId":"Q19317"}]},"time":0.0093,"ok":true} +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[5],"entityId":"Italy","freebaseTypes":["/periodicals/newspaper_circulation_area","/organization/organization_member","/location/dated_location","/military/military_combatant","/law/court_jurisdiction_area","/location/country","/sports/sports_team_location","/sports/sport_country","/exhibitions/exhibition_subject","/organization/organization_scope","/symbols/name_source","/symbols/flag_referent","/government/governmental_jurisdiction","/location/administrative_division","/travel/travel_destination","/organization/organization_founder","/meteorology/forecast_zone","/fictional_universe/fictional_setting","/location/region","/media_common/netflix_genre","/location/statistical_region","/book/book_subject","/olympics/olympic_participating_country","/film/film_location","/exhibitions/exhibition_venue","/biology/breed_origin","/business/business_location","/food/beer_country_region","/business/employer","/location/location"],"confidenceScore":5.545,"wikiLink":"http://en.wikipedia.org/wiki/Italy","matchedText":"Italian","freebaseId":"/m/03rjj","relevanceScore":0.02572,"entityEnglishId":"Italy","startingPos":23,"endingPos":30,"wikidataId":"Q38"} +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 30 +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Activity","Sport"],"matchingTokens":[7],"entityId":"Association football","freebaseTypes":["/olympics/olympic_participating_country","/interests/hobby","/book/book_subject","/olympics/olympic_sport","/media_common/media_genre","/organization/club_interest","/interests/hobbyist","/internet/website_category","/sports/sport","/award/competition_type","/award/award_discipline","/cvg/computer_game_subject","/film/film_subject","/interests/interest","/cvg/cvg_genre","/organization/organization_sector","/award/hall_of_fame_induction_category","/broadcast/genre","/media_common/netflix_genre","/book/periodical_subject","/tv/tv_subject","/exhibitions/exhibition_subject","/comic_books/comic_book_genre","/sports/school_sports_team","/award/hall_of_fame_discipline","/sports/sports_team"],"confidenceScore":30.55,"wikiLink":"http://en.wikipedia.org/wiki/Association_football","matchedText":"soccer","freebaseId":"/m/0fxc1s","relevanceScore":0.2286,"entityEnglishId":"Association football","startingPos":40,"endingPos":46,"wikidataId":"Q2736"} +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 40 +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 46 +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Organisation","SportsTeam","SoccerClub"],"matchingTokens":[5,6,7,8],"entityId":"Italy national football team","freebaseTypes":["/sports/sports_team","/award/award_winner","/award/award_nominee","/soccer/football_team","/organization/organization"],"confidenceScore":1.003,"wikiLink":"http://en.wikipedia.org/wiki/Italy_national_football_team","matchedText":"Italian national soccer team","freebaseId":"/m/01_lhg","relevanceScore":0.2105,"entityEnglishId":"Italy national football team","startingPos":23,"endingPos":51,"wikidataId":"Q676899"} +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 51 +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":3,"type":["Event","SocietalEvent","SportsEvent"],"matchingTokens":[11,12,13],"entityId":"FIFA World Cup","freebaseTypes":["/soccer/football_award","/time/recurring_event","/sports/sports_championship","/film/film_subject"],"confidenceScore":14.23,"wikiLink":"http://en.wikipedia.org/wiki/FIFA_World_Cup","matchedText":"Fifa World Cup","freebaseId":"/m/030q7","relevanceScore":0.04699,"entityEnglishId":"FIFA World Cup","startingPos":60,"endingPos":74,"wikidataId":"Q19317"} +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 60 +2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 74 +2023-10-27 14:01:12.039 DEBUG 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:12.039  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c7cd0b5 +2023-10-27 14:01:12.039 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:12.042  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "30"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.042  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "30"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.042 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "30"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.052  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7eec9ff4 +2023-10-27 14:01:12.053 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:12.055  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.056  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.056 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "40"^^xsd:nonNegativeInteger . + _:b1 oa:end "46"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.067  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d5abf0d +2023-10-27 14:01:12.068 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:12.071  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.072  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.072 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.084  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@620aef3 +2023-10-27 14:01:12.084 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:01:12.087  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.087  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.087 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "60"^^xsd:nonNegativeInteger . + _:b1 oa:end "74"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:01:12.096 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.QanaryServiceController  : processing took: 418 ms +2023-10-27 14:02:10.903  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:10.904  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:10.904  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:10.904  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@456fab76 +2023-10-27 14:02:10.913  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f570b86 +2023-10-27 14:02:10.913 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:10.922  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:10.923  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:10.934 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d +2023-10-27 14:02:10.934  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql +2023-10-27 14:02:10.935 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:02:10.936  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Which started first: impressionism or expressionism (art movements)?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:02:10.936  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1476072986 +2023-10-27 14:02:11.086 DEBUG 11764 --- [nio-8086-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3ed87818 +2023-10-27 14:02:11.306 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:02:11.306 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:02:11.306  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:02:11.306 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"matchingTokens":[4],"entityId":"Impressionism","freebaseTypes":["/book/book_subject","/visual_art/visual_art_support","/visual_art/art_period_movement","/interests/collection_category","/symbols/namesake","/exhibitions/exhibition_subject"],"confidenceScore":25.43,"wikiLink":"http://en.wikipedia.org/wiki/Impressionism","matchedText":"impressionism","freebaseId":"/m/03xj1","relevanceScore":0.6412,"entityEnglishId":"Impressionism","startingPos":21,"endingPos":34,"wikidataId":"Q40415"},{"id":1,"matchingTokens":[6],"entityId":"Expressionism","freebaseTypes":["/book/school_or_movement","/visual_art/art_period_movement","/film/film_genre","/architecture/architectural_style","/theater/theater_genre","/media_common/media_genre"],"confidenceScore":17.16,"wikiLink":"http://en.wikipedia.org/wiki/Expressionism","matchedText":"expressionism","freebaseId":"/m/0pybl","relevanceScore":0.7015,"entityEnglishId":"Expressionism","startingPos":38,"endingPos":51,"wikidataId":"Q80113"},{"id":2,"matchingTokens":[8],"entityId":"Art","freebaseTypes":["/business/consumer_product","/book/book_subject","/media_common/quotation_subject","/interests/hobby","/award/award_discipline","/business/industry","/education/field_of_study","/film/film_subject","/interests/collection_category","/book/periodical_subject","/business/product_theme","/internet/website_category","/interests/interest","/exhibitions/exhibition_subject","/organization/organization_sector"],"confidenceScore":3.297,"wikiLink":"http://en.wikipedia.org/wiki/Art","matchedText":"art","freebaseId":"/m/0jjw","relevanceScore":0.5816,"entityEnglishId":"Art","startingPos":53,"endingPos":56,"wikidataId":"Q735"},{"id":3,"matchingTokens":[8,9],"entityId":"Art movement","confidenceScore":3.83,"wikiLink":"http://en.wikipedia.org/wiki/Art_movement","matchedText":"art movements","freebaseId":"/m/01h8mp","relevanceScore":0.2373,"entityEnglishId":"Art movement","startingPos":53,"endingPos":66,"wikidataId":"Q968159"}]},"time":0.007981,"ok":true} +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"matchingTokens":[4],"entityId":"Impressionism","freebaseTypes":["/book/book_subject","/visual_art/visual_art_support","/visual_art/art_period_movement","/interests/collection_category","/symbols/namesake","/exhibitions/exhibition_subject"],"confidenceScore":25.43,"wikiLink":"http://en.wikipedia.org/wiki/Impressionism","matchedText":"impressionism","freebaseId":"/m/03xj1","relevanceScore":0.6412,"entityEnglishId":"Impressionism","startingPos":21,"endingPos":34,"wikidataId":"Q40415"} +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 21 +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 34 +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"matchingTokens":[6],"entityId":"Expressionism","freebaseTypes":["/book/school_or_movement","/visual_art/art_period_movement","/film/film_genre","/architecture/architectural_style","/theater/theater_genre","/media_common/media_genre"],"confidenceScore":17.16,"wikiLink":"http://en.wikipedia.org/wiki/Expressionism","matchedText":"expressionism","freebaseId":"/m/0pybl","relevanceScore":0.7015,"entityEnglishId":"Expressionism","startingPos":38,"endingPos":51,"wikidataId":"Q80113"} +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 51 +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"matchingTokens":[8],"entityId":"Art","freebaseTypes":["/business/consumer_product","/book/book_subject","/media_common/quotation_subject","/interests/hobby","/award/award_discipline","/business/industry","/education/field_of_study","/film/film_subject","/interests/collection_category","/book/periodical_subject","/business/product_theme","/internet/website_category","/interests/interest","/exhibitions/exhibition_subject","/organization/organization_sector"],"confidenceScore":3.297,"wikiLink":"http://en.wikipedia.org/wiki/Art","matchedText":"art","freebaseId":"/m/0jjw","relevanceScore":0.5816,"entityEnglishId":"Art","startingPos":53,"endingPos":56,"wikidataId":"Q735"} +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 53 +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 56 +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":3,"matchingTokens":[8,9],"entityId":"Art movement","confidenceScore":3.83,"wikiLink":"http://en.wikipedia.org/wiki/Art_movement","matchedText":"art movements","freebaseId":"/m/01h8mp","relevanceScore":0.2373,"entityEnglishId":"Art movement","startingPos":53,"endingPos":66,"wikidataId":"Q968159"} +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 53 +2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 66 +2023-10-27 14:02:11.312 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d +2023-10-27 14:02:11.312  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4319e689 +2023-10-27 14:02:11.312 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:11.316  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.316  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.316 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "21"^^xsd:nonNegativeInteger . + _:b1 oa:end "34"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.323  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7b95c187 +2023-10-27 14:02:11.323 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:11.325  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.325  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.325 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "51"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.333  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3cd9ee48 +2023-10-27 14:02:11.333 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:11.334  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.335  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.335 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "56"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.341  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@413c5973 +2023-10-27 14:02:11.341 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:02:11.343  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.343  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.343 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "53"^^xsd:nonNegativeInteger . + _:b1 oa:end "66"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:02:11.350 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : processing took: 446 ms +2023-10-27 14:03:01.324  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.325  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.325  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.325  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@74b316ab +2023-10-27 14:03:01.336  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@367bf762 +2023-10-27 14:03:01.336 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:01.337  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:01.337  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:01.343 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:01.343  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql +2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:01.345  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:03:01.345  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=800550060 +2023-10-27 14:03:01.534 DEBUG 11764 --- [nio-8086-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3f88969 +2023-10-27 14:03:01.750 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:01.751 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:03:01.751  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[4],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":53.36,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1402,"entityEnglishId":"National Basketball Association","startingPos":17,"endingPos":20,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"},{"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"Michael Jordan","freebaseTypes":["/people/measured_person","/celebrities/celebrity","/award/ranked_item","/award/hall_of_fame_inductee","/award/award_nominee","/film/person_or_entity_appearing_in_film","/people/person","/business/sponsored_recipient","/sports/pro_athlete","/tv/tv_subject","/award/award_winner","/sports/drafted_athlete","/olympics/olympic_athlete","/film/actor","/film/film_subject","/tv/tv_actor","/sports/sports_team_owner","/sports/sports_award_winner","/book/author","/baseball/baseball_player","/tv/tv_personality","/book/book_subject","/influence/influence_node","/basketball/basketball_player"],"confidenceScore":24.64,"wikiLink":"http://en.wikipedia.org/wiki/Michael_Jordan","matchedText":"Michael Jordan","freebaseId":"/m/054c1","relevanceScore":0.3442,"entityEnglishId":"Michael Jordan","startingPos":29,"endingPos":43,"wikidataId":"Q41421"},{"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[10,11,12],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":1.785,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bean Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.2821,"entityEnglishId":"Kobe Bryant","startingPos":47,"endingPos":63,"wikidataId":"Q25369","crunchbaseId":"black-mamba"}]},"time":0.009304,"ok":true} +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[4],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":53.36,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1402,"entityEnglishId":"National Basketball Association","startingPos":17,"endingPos":20,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"} +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 17 +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 20 +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"Michael Jordan","freebaseTypes":["/people/measured_person","/celebrities/celebrity","/award/ranked_item","/award/hall_of_fame_inductee","/award/award_nominee","/film/person_or_entity_appearing_in_film","/people/person","/business/sponsored_recipient","/sports/pro_athlete","/tv/tv_subject","/award/award_winner","/sports/drafted_athlete","/olympics/olympic_athlete","/film/actor","/film/film_subject","/tv/tv_actor","/sports/sports_team_owner","/sports/sports_award_winner","/book/author","/baseball/baseball_player","/tv/tv_personality","/book/book_subject","/influence/influence_node","/basketball/basketball_player"],"confidenceScore":24.64,"wikiLink":"http://en.wikipedia.org/wiki/Michael_Jordan","matchedText":"Michael Jordan","freebaseId":"/m/054c1","relevanceScore":0.3442,"entityEnglishId":"Michael Jordan","startingPos":29,"endingPos":43,"wikidataId":"Q41421"} +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 29 +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 43 +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[10,11,12],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":1.785,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bean Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.2821,"entityEnglishId":"Kobe Bryant","startingPos":47,"endingPos":63,"wikidataId":"Q25369","crunchbaseId":"black-mamba"} +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 47 +2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 63 +2023-10-27 14:03:01.760 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:01.760  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c97c5ce +2023-10-27 14:03:01.760 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:01.762  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.763  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.763 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "17"^^xsd:nonNegativeInteger . + _:b1 oa:end "20"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.775  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70fd8eb9 +2023-10-27 14:03:01.775 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:01.778  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.778  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.778 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "29"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.789  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19d4a723 +2023-10-27 14:03:01.789 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:01.791  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.791  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.791 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "47"^^xsd:nonNegativeInteger . + _:b1 oa:end "63"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:01.801 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : processing took: 476 ms +2023-10-27 14:04:26.953  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:04:26.955  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:04:26.955  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:04:26.955  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@4d9dd273 +2023-10-27 14:04:26.963  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1851abbe +2023-10-27 14:04:26.963 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:26.964  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:26.964  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:26.971 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b +2023-10-27 14:04:26.971  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql +2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 14:04:26.973  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Did the Chicago Bulls win at least two seasons of the NBA championship?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:04:26.973  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-464899173 +2023-10-27 14:04:27.183 DEBUG 11764 --- [nio-8086-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6b89bd52 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:04:27.403  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[2],"entityId":"Chicago","freebaseTypes":["/book/book_subject","/periodicals/newspaper_circulation_area","/symbols/name_source","/location/dated_location","/location/hud_county_place","/location/place_with_neighborhoods","/location/capital_of_administrative_division","/travel/travel_destination","/fictional_universe/fictional_setting","/film/film_location","/government/governmental_jurisdiction","/organization/organization_scope","/exhibitions/exhibition_sponsor","/business/business_location","/award/award_discipline","/location/citytown","/sports/sports_team_location","/tv/tv_location","/location/administrative_division","/business/employer","/location/statistical_region","/location/location","/olympics/olympic_bidding_city"],"confidenceScore":11.35,"wikiLink":"http://en.wikipedia.org/wiki/Chicago","matchedText":"Chicago","freebaseId":"/m/01_d4","relevanceScore":0.07726,"entityEnglishId":"Chicago","startingPos":8,"endingPos":15,"wikidataId":"Q1297"},{"id":1,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[2,3],"entityId":"Chicago Bulls","freebaseTypes":["/sports/sports_team","/award/award_nominee","/sports/professional_sports_team","/award/award_winner","/basketball/basketball_team"],"confidenceScore":4.324,"wikiLink":"http://en.wikipedia.org/wiki/Chicago_Bulls","matchedText":"Chicago Bulls","freebaseId":"/m/0jm74","relevanceScore":0.2012,"entityEnglishId":"Chicago Bulls","startingPos":8,"endingPos":21,"wikidataId":"Q128109","crunchbaseId":"chicago-bulls"},{"id":2,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[11],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":6.66,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1132,"entityEnglishId":"National Basketball Association","startingPos":54,"endingPos":57,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"},{"id":3,"type":["Event","SocietalEvent","Convention"],"matchingTokens":[11,12],"entityId":"NBA Finals","freebaseTypes":["/sports/sports_championship","/time/recurring_event"],"confidenceScore":1.533,"wikiLink":"http://en.wikipedia.org/wiki/NBA_Finals","matchedText":"NBA championship","freebaseId":"/m/03m5x4","relevanceScore":0.1795,"entityEnglishId":"NBA Finals","startingPos":54,"endingPos":70,"wikidataId":"Q842375"}]},"time":0.008018,"ok":true} +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[2],"entityId":"Chicago","freebaseTypes":["/book/book_subject","/periodicals/newspaper_circulation_area","/symbols/name_source","/location/dated_location","/location/hud_county_place","/location/place_with_neighborhoods","/location/capital_of_administrative_division","/travel/travel_destination","/fictional_universe/fictional_setting","/film/film_location","/government/governmental_jurisdiction","/organization/organization_scope","/exhibitions/exhibition_sponsor","/business/business_location","/award/award_discipline","/location/citytown","/sports/sports_team_location","/tv/tv_location","/location/administrative_division","/business/employer","/location/statistical_region","/location/location","/olympics/olympic_bidding_city"],"confidenceScore":11.35,"wikiLink":"http://en.wikipedia.org/wiki/Chicago","matchedText":"Chicago","freebaseId":"/m/01_d4","relevanceScore":0.07726,"entityEnglishId":"Chicago","startingPos":8,"endingPos":15,"wikidataId":"Q1297"} +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 8 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 15 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[2,3],"entityId":"Chicago Bulls","freebaseTypes":["/sports/sports_team","/award/award_nominee","/sports/professional_sports_team","/award/award_winner","/basketball/basketball_team"],"confidenceScore":4.324,"wikiLink":"http://en.wikipedia.org/wiki/Chicago_Bulls","matchedText":"Chicago Bulls","freebaseId":"/m/0jm74","relevanceScore":0.2012,"entityEnglishId":"Chicago Bulls","startingPos":8,"endingPos":21,"wikidataId":"Q128109","crunchbaseId":"chicago-bulls"} +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 8 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 21 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[11],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":6.66,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1132,"entityEnglishId":"National Basketball Association","startingPos":54,"endingPos":57,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"} +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 54 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 57 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":3,"type":["Event","SocietalEvent","Convention"],"matchingTokens":[11,12],"entityId":"NBA Finals","freebaseTypes":["/sports/sports_championship","/time/recurring_event"],"confidenceScore":1.533,"wikiLink":"http://en.wikipedia.org/wiki/NBA_Finals","matchedText":"NBA championship","freebaseId":"/m/03m5x4","relevanceScore":0.1795,"entityEnglishId":"NBA Finals","startingPos":54,"endingPos":70,"wikidataId":"Q842375"} +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 54 +2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 70 +2023-10-27 14:04:27.409 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b +2023-10-27 14:04:27.409  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48dd9691 +2023-10-27 14:04:27.409 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:27.410  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.410  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.410 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "15"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.416  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6bf0dbb3 +2023-10-27 14:04:27.416 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:27.417  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.417  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.417 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "8"^^xsd:nonNegativeInteger . + _:b1 oa:end "21"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.423  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ee98128 +2023-10-27 14:04:27.423 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:27.424  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "54"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.424  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "54"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.424 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "54"^^xsd:nonNegativeInteger . + _:b1 oa:end "57"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.430  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@582cc08a +2023-10-27 14:04:27.430 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:27.431  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "54"^^xsd:nonNegativeInteger . + _:b1 oa:end "70"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.432  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "54"^^xsd:nonNegativeInteger . + _:b1 oa:end "70"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.432 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "54"^^xsd:nonNegativeInteger . + _:b1 oa:end "70"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:27.437 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : processing took: 482 ms +2023-10-27 14:04:57.084  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:57.084  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:57.085  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:57.085  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@1543c2c6 +2023-10-27 14:04:57.095  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e293d44 +2023-10-27 14:04:57.095 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:57.096  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:57.096  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:57.108 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:04:57.108  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql +2023-10-27 14:04:57.110 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? +2023-10-27 14:04:57.110  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question What is the capital of the prefecture Tokyo ? +2023-10-27 14:04:57.110 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:04:57.110 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:04:57.111 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:04:57.111 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the capital of the prefecture Tokyo ?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:04:57.111  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-570284519 +2023-10-27 14:04:57.263 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1ac8d84b +2023-10-27 14:04:57.480 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:04:57.480 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:04:57.481  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"matchingTokens":[6],"entityId":"Prefecture","confidenceScore":1.081,"wikiLink":"http://en.wikipedia.org/wiki/Prefecture","matchedText":"prefecture","freebaseId":"/m/0jw6r","relevanceScore":0.08958,"entityEnglishId":"Prefecture","startingPos":27,"endingPos":37,"wikidataId":"Q515716"},{"id":1,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[7],"entityId":"Tokyo","freebaseTypes":["/travel/travel_destination","/location/citytown","/location/administrative_division","/location/statistical_region","/location/dated_location","/location/location","/location/jp_designated_city","/location/administrative_division","/location/statistical_region","/periodicals/newspaper_circulation_area","/location/jp_prefecture","/film/film_location","/book/book_subject","/olympics/olympic_host_city","/location/location","/government/governmental_jurisdiction","/location/jp_city_town","/travel/travel_destination","/business/employer","/location/citytown","/meteorology/cyclone_affected_area","/fictional_universe/fictional_setting","/organization/organization_scope","/symbols/name_source","/location/place_with_neighborhoods","/location/dated_location","/location/location"],"confidenceScore":2.29,"wikiLink":"http://en.wikipedia.org/wiki/Tokyo","matchedText":"Tokyo","freebaseId":"/m/0swk_t7","relevanceScore":0.1411,"entityEnglishId":"Tokyo","startingPos":38,"endingPos":43,"wikidataId":"Q1490"}]},"time":0.003488,"ok":true} +2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"matchingTokens":[6],"entityId":"Prefecture","confidenceScore":1.081,"wikiLink":"http://en.wikipedia.org/wiki/Prefecture","matchedText":"prefecture","freebaseId":"/m/0jw6r","relevanceScore":0.08958,"entityEnglishId":"Prefecture","startingPos":27,"endingPos":37,"wikidataId":"Q515716"} +2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 27 +2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 +2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[7],"entityId":"Tokyo","freebaseTypes":["/travel/travel_destination","/location/citytown","/location/administrative_division","/location/statistical_region","/location/dated_location","/location/location","/location/jp_designated_city","/location/administrative_division","/location/statistical_region","/periodicals/newspaper_circulation_area","/location/jp_prefecture","/film/film_location","/book/book_subject","/olympics/olympic_host_city","/location/location","/government/governmental_jurisdiction","/location/jp_city_town","/travel/travel_destination","/business/employer","/location/citytown","/meteorology/cyclone_affected_area","/fictional_universe/fictional_setting","/organization/organization_scope","/symbols/name_source","/location/place_with_neighborhoods","/location/dated_location","/location/location"],"confidenceScore":2.29,"wikiLink":"http://en.wikipedia.org/wiki/Tokyo","matchedText":"Tokyo","freebaseId":"/m/0swk_t7","relevanceScore":0.1411,"entityEnglishId":"Tokyo","startingPos":38,"endingPos":43,"wikidataId":"Q1490"} +2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 +2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 43 +2023-10-27 14:04:57.487 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:04:57.487  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3dea4bbb +2023-10-27 14:04:57.488 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:57.489  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.489  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.489 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "27"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.495  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@36b4eb32 +2023-10-27 14:04:57.495 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:04:57.497  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.497  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.497 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "38"^^xsd:nonNegativeInteger . + _:b1 oa:end "43"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:04:57.503 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 419 ms +2023-10-27 14:06:01.592  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:01.592  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:01.592  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:01.593  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@71512a9d +2023-10-27 14:06:01.599  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11529675 +2023-10-27 14:06:01.600 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:01.600  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:01.601  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:01.607 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:01.607  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql +2023-10-27 14:06:01.609 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many poems did Allen Ginsberg published? +2023-10-27 14:06:01.609  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question How many poems did Allen Ginsberg published? +2023-10-27 14:06:01.609 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:06:01.609 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:06:01.610 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:06:01.610 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many poems did Allen Ginsberg published?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:06:01.610  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-987132577 +2023-10-27 14:06:01.878 DEBUG 11764 --- [nio-8086-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@40eafde9 +2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:06:02.104  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[4,5],"entityId":"Allen Ginsberg","freebaseTypes":["/music/composer","/film/film_story_contributor","/award/award_nominee","/music/group_member","/tv/tv_personality","/film/person_or_entity_appearing_in_film","/people/person","/people/deceased_person","/music/writer","/film/film_subject","/film/actor","/film/writer","/visual_art/visual_artist","/medicine/notable_person_with_medical_condition","/music/artist","/book/author","/tv/tv_actor","/award/award_winner","/fictional_universe/person_in_fiction","/music/lyricist","/organization/organization_founder","/influence/influence_node","/book/book_subject"],"confidenceScore":6.25,"wikiLink":"http://en.wikipedia.org/wiki/Allen_Ginsberg","matchedText":"Allen Ginsberg","freebaseId":"/m/0lrh","relevanceScore":0.3673,"entityEnglishId":"Allen Ginsberg","startingPos":19,"endingPos":33,"wikidataId":"Q6711"}]},"time":0.006951,"ok":true} +2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[4,5],"entityId":"Allen Ginsberg","freebaseTypes":["/music/composer","/film/film_story_contributor","/award/award_nominee","/music/group_member","/tv/tv_personality","/film/person_or_entity_appearing_in_film","/people/person","/people/deceased_person","/music/writer","/film/film_subject","/film/actor","/film/writer","/visual_art/visual_artist","/medicine/notable_person_with_medical_condition","/music/artist","/book/author","/tv/tv_actor","/award/award_winner","/fictional_universe/person_in_fiction","/music/lyricist","/organization/organization_founder","/influence/influence_node","/book/book_subject"],"confidenceScore":6.25,"wikiLink":"http://en.wikipedia.org/wiki/Allen_Ginsberg","matchedText":"Allen Ginsberg","freebaseId":"/m/0lrh","relevanceScore":0.3673,"entityEnglishId":"Allen Ginsberg","startingPos":19,"endingPos":33,"wikidataId":"Q6711"} +2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 +2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 +2023-10-27 14:06:02.109 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:02.109  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@69031fad +2023-10-27 14:06:02.110 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:02.111  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:02.112  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:02.112 DEBUG 11764 --- [nio-8086-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "19"^^xsd:nonNegativeInteger . + _:b1 oa:end "33"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:02.129 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : processing took: 537 ms +2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@7ce1ac00 +2023-10-27 14:06:30.832  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1121cd6c +2023-10-27 14:06:30.832 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:30.833  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:30.833  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:30.839 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 +2023-10-27 14:06:30.839  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 found in urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 at http://localhost:8080/sparql +2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? +2023-10-27 14:06:30.841  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question Is Dr. Pepper named after its inventor? +2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Is Dr. Pepper named after its inventor?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:06:30.841  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=967908090 +2023-10-27 14:06:30.953 DEBUG 11764 --- [nio-8086-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@23f3fea1 +2023-10-27 14:06:31.228 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:06:31.228 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:06:31.229  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Food","Beverage"],"matchingTokens":[1,2],"entityId":"Dr Pepper","freebaseTypes":["/business/brand","/food/beverage"],"confidenceScore":3.088,"wikiLink":"http://en.wikipedia.org/wiki/Dr_Pepper","matchedText":"Dr. Pepper","freebaseId":"/m/0128401y","relevanceScore":0,"entityEnglishId":"Dr Pepper","startingPos":3,"endingPos":13,"wikidataId":"Q623561"}]},"time":0.003654,"ok":true} +2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Food","Beverage"],"matchingTokens":[1,2],"entityId":"Dr Pepper","freebaseTypes":["/business/brand","/food/beverage"],"confidenceScore":3.088,"wikiLink":"http://en.wikipedia.org/wiki/Dr_Pepper","matchedText":"Dr. Pepper","freebaseId":"/m/0128401y","relevanceScore":0,"entityEnglishId":"Dr Pepper","startingPos":3,"endingPos":13,"wikidataId":"Q623561"} +2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 3 +2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 13 +2023-10-27 14:06:31.233 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 +2023-10-27 14:06:31.234  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d6552c5 +2023-10-27 14:06:31.234 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:06:31.235  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:31.235  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:31.235 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "13"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:06:31.240 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : processing took: 417 ms +2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@5e20c6b1 +2023-10-27 14:07:22.836  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c3bd10e +2023-10-27 14:07:22.836 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:22.837  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:22.837  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:22.844 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 +2023-10-27 14:07:22.844  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql +2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? +2023-10-27 14:07:22.846  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question In how many movies did Carey Mulligan and Ryan Gosling star together? +2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:07:22.847 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[In how many movies did Carey Mulligan and Ryan Gosling star together?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:07:22.847  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1734149481 +2023-10-27 14:07:23.076 DEBUG 11764 --- [nio-8086-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@602f1076 +2023-10-27 14:07:23.334 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:07:23.335  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[5,6],"entityId":"Carey Mulligan","freebaseTypes":["/influence/influence_node","/music/artist","/theater/theater_actor","/people/person","/tv/tv_actor","/film/actor","/award/award_winner","/award/award_nominee"],"confidenceScore":5.717,"wikiLink":"http://en.wikipedia.org/wiki/Carey_Mulligan","matchedText":"Carey Mulligan","freebaseId":"/m/0bwgc_","relevanceScore":0.1383,"entityEnglishId":"Carey Mulligan","startingPos":23,"endingPos":37,"wikidataId":"Q219655"},{"id":1,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[8,9],"entityId":"Ryan Gosling","freebaseTypes":["/music/group_member","/tv/tv_program_guest","/music/artist","/film/director","/people/person","/film/actor","/film/producer","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/film/writer","/celebrities/celebrity","/influence/influence_node","/award/award_nominee","/award/award_winner"],"confidenceScore":4.525,"wikiLink":"http://en.wikipedia.org/wiki/Ryan_Gosling","matchedText":"Ryan Gosling","freebaseId":"/m/03m6_z","relevanceScore":0.0659,"entityEnglishId":"Ryan Gosling","startingPos":42,"endingPos":54,"wikidataId":"Q193815"}]},"time":0.009594,"ok":true} +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[5,6],"entityId":"Carey Mulligan","freebaseTypes":["/influence/influence_node","/music/artist","/theater/theater_actor","/people/person","/tv/tv_actor","/film/actor","/award/award_winner","/award/award_nominee"],"confidenceScore":5.717,"wikiLink":"http://en.wikipedia.org/wiki/Carey_Mulligan","matchedText":"Carey Mulligan","freebaseId":"/m/0bwgc_","relevanceScore":0.1383,"entityEnglishId":"Carey Mulligan","startingPos":23,"endingPos":37,"wikidataId":"Q219655"} +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[8,9],"entityId":"Ryan Gosling","freebaseTypes":["/music/group_member","/tv/tv_program_guest","/music/artist","/film/director","/people/person","/film/actor","/film/producer","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/film/writer","/celebrities/celebrity","/influence/influence_node","/award/award_nominee","/award/award_winner"],"confidenceScore":4.525,"wikiLink":"http://en.wikipedia.org/wiki/Ryan_Gosling","matchedText":"Ryan Gosling","freebaseId":"/m/03m6_z","relevanceScore":0.0659,"entityEnglishId":"Ryan Gosling","startingPos":42,"endingPos":54,"wikidataId":"Q193815"} +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 42 +2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 54 +2023-10-27 14:07:23.339 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 +2023-10-27 14:07:23.340  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cfe5eef +2023-10-27 14:07:23.340 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:23.341  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:23.341  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:23.341 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "23"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:23.347  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4331e8f +2023-10-27 14:07:23.347 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:07:23.348  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "54"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:23.348  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "54"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:23.348 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "54"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:07:23.353 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : processing took: 526 ms +2023-10-27 14:08:24.494  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:24.495  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:24.495  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:24.495  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@25d81b55 +2023-10-27 14:08:24.510  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d43188c +2023-10-27 14:08:24.511 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:24.512  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:24.513  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:24.525 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c +2023-10-27 14:08:24.525  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql +2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? +2023-10-27 14:08:24.528  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question How often was Naomi Novik nominated for a Hugo Award? +2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How often was Naomi Novik nominated for a Hugo Award?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:08:24.529  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2035953308 +2023-10-27 14:08:24.660 DEBUG 11764 --- [nio-8086-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6555bb16 +2023-10-27 14:08:24.878 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:08:24.879  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[3,4],"entityId":"Naomi Novik","freebaseTypes":["/award/award_winner","/influence/influence_node","/award/award_nominee","/book/author","/people/person","/fictional_universe/fictional_character_creator"],"confidenceScore":2.733,"wikiLink":"http://en.wikipedia.org/wiki/Naomi_Novik","matchedText":"Naomi Novik","freebaseId":"/m/0ckkqp","relevanceScore":0.1639,"entityEnglishId":"Naomi Novik","startingPos":14,"endingPos":25,"wikidataId":"Q242643"},{"id":1,"type":["Award"],"matchingTokens":[8,9],"entityId":"Hugo Award","freebaseTypes":["/event/speech_topic","/symbols/namesake","/award/award"],"confidenceScore":3.854,"wikiLink":"http://en.wikipedia.org/wiki/Hugo_Award","matchedText":"Hugo Award","freebaseId":"/m/03gw9","relevanceScore":0.1182,"entityEnglishId":"Hugo Award","startingPos":42,"endingPos":52,"wikidataId":"Q188914"}]},"time":0.00652,"ok":true} +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[3,4],"entityId":"Naomi Novik","freebaseTypes":["/award/award_winner","/influence/influence_node","/award/award_nominee","/book/author","/people/person","/fictional_universe/fictional_character_creator"],"confidenceScore":2.733,"wikiLink":"http://en.wikipedia.org/wiki/Naomi_Novik","matchedText":"Naomi Novik","freebaseId":"/m/0ckkqp","relevanceScore":0.1639,"entityEnglishId":"Naomi Novik","startingPos":14,"endingPos":25,"wikidataId":"Q242643"} +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 14 +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 25 +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Award"],"matchingTokens":[8,9],"entityId":"Hugo Award","freebaseTypes":["/event/speech_topic","/symbols/namesake","/award/award"],"confidenceScore":3.854,"wikiLink":"http://en.wikipedia.org/wiki/Hugo_Award","matchedText":"Hugo Award","freebaseId":"/m/03gw9","relevanceScore":0.1182,"entityEnglishId":"Hugo Award","startingPos":42,"endingPos":52,"wikidataId":"Q188914"} +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 42 +2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 52 +2023-10-27 14:08:24.883 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c +2023-10-27 14:08:24.885  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1401b8c1 +2023-10-27 14:08:24.886 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:24.887  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.888  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.888 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "14"^^xsd:nonNegativeInteger . + _:b1 oa:end "25"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.893  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71e61ba7 +2023-10-27 14:08:24.893 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:08:24.895  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.895  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.895 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "42"^^xsd:nonNegativeInteger . + _:b1 oa:end "52"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:08:24.900 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : processing took: 405 ms +2023-10-27 14:09:00.691  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:00.693  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:00.693  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:00.693  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@612033bd +2023-10-27 14:09:00.710  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d76b552 +2023-10-27 14:09:00.711 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:00.714  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:00.714  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:00.728 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf +2023-10-27 14:09:00.728  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql +2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? +2023-10-27 14:09:00.731  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question What language do they speak in Poland ? +2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What language do they speak in Poland ?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:09:00.731  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-27051051 +2023-10-27 14:09:00.843 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@52ae96d4 +2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:09:01.063  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[6],"entityId":"Poland","freebaseTypes":["/symbols/coat_of_arms_bearer","/media_common/netflix_genre","/business/employer","/biology/breed_origin","/organization/organization_member","/fictional_universe/fictional_setting","/symbols/name_source","/location/dated_location","/sports/sports_team_location","/location/country","/government/governmental_jurisdiction","/travel/travel_destination","/film/film_festival_focus","/location/statistical_region","/sports/sport_country","/military/military_combatant","/film/film_location","/location/location","/organization/organization_scope","/food/beer_country_region","/book/book_subject","/organization/organization_founder","/symbols/flag_referent","/business/business_location","/periodicals/newspaper_circulation_area","/olympics/olympic_participating_country"],"confidenceScore":3.754,"wikiLink":"http://en.wikipedia.org/wiki/Poland","matchedText":"Poland","freebaseId":"/m/05qhw","relevanceScore":0,"entityEnglishId":"Poland","startingPos":31,"endingPos":37,"wikidataId":"Q36"}]},"time":0.003654,"ok":true} +2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[6],"entityId":"Poland","freebaseTypes":["/symbols/coat_of_arms_bearer","/media_common/netflix_genre","/business/employer","/biology/breed_origin","/organization/organization_member","/fictional_universe/fictional_setting","/symbols/name_source","/location/dated_location","/sports/sports_team_location","/location/country","/government/governmental_jurisdiction","/travel/travel_destination","/film/film_festival_focus","/location/statistical_region","/sports/sport_country","/military/military_combatant","/film/film_location","/location/location","/organization/organization_scope","/food/beer_country_region","/book/book_subject","/organization/organization_founder","/symbols/flag_referent","/business/business_location","/periodicals/newspaper_circulation_area","/olympics/olympic_participating_country"],"confidenceScore":3.754,"wikiLink":"http://en.wikipedia.org/wiki/Poland","matchedText":"Poland","freebaseId":"/m/05qhw","relevanceScore":0,"entityEnglishId":"Poland","startingPos":31,"endingPos":37,"wikidataId":"Q36"} +2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 31 +2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 +2023-10-27 14:09:01.070 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf +2023-10-27 14:09:01.071  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43d20ac8 +2023-10-27 14:09:01.071 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:01.072  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:01.073  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:01.073 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "31"^^xsd:nonNegativeInteger . + _:b1 oa:end "37"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:01.083 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 391 ms +2023-10-27 14:09:10.786  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:10.786  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:10.787  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:10.787  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@4bfeb21 +2023-10-27 14:09:10.800  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7e2bb164 +2023-10-27 14:09:10.800 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:10.800  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:10.801  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:10.807 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 +2023-10-27 14:09:10.807  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql +2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:10.808  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com +2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com +2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] +2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Is samurai champloo a piece of original work or an adaptation?], extractors=[entities]}] as "application/x-www-form-urlencoded" +2023-10-27 14:09:10.808  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1512567479 +2023-10-27 14:09:10.921 DEBUG 11764 --- [nio-8086-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@536bb63 +2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" +2023-10-27 14:09:11.142  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com +2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"matchingTokens":[1],"entityId":"Samurai","freebaseTypes":["/film/film_subject","/fictional_universe/character_occupation","/people/profession","/book/book_subject","/royalty/system_of_nobility","/royalty/noble_title"],"confidenceScore":3.575,"wikiLink":"http://en.wikipedia.org/wiki/Samurai","matchedText":"samurai","freebaseId":"/m/01183wql","relevanceScore":0.08118,"entityEnglishId":"Samurai","startingPos":3,"endingPos":10,"wikidataId":"Q38142"},{"id":1,"type":["ComicBook","Work","WrittenWork","Comics","Manga"],"matchingTokens":[1,2],"entityId":"Samurai Champloo","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.669,"wikiLink":"http://en.wikipedia.org/wiki/Samurai_Champloo","matchedText":"samurai champloo","freebaseId":"/m/0324s1","relevanceScore":0.02947,"entityEnglishId":"Samurai Champloo","startingPos":3,"endingPos":19,"wikidataId":"Q143276"}]},"time":0.004887,"ok":true} +2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"matchingTokens":[1],"entityId":"Samurai","freebaseTypes":["/film/film_subject","/fictional_universe/character_occupation","/people/profession","/book/book_subject","/royalty/system_of_nobility","/royalty/noble_title"],"confidenceScore":3.575,"wikiLink":"http://en.wikipedia.org/wiki/Samurai","matchedText":"samurai","freebaseId":"/m/01183wql","relevanceScore":0.08118,"entityEnglishId":"Samurai","startingPos":3,"endingPos":10,"wikidataId":"Q38142"} +2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 3 +2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 10 +2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["ComicBook","Work","WrittenWork","Comics","Manga"],"matchingTokens":[1,2],"entityId":"Samurai Champloo","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.669,"wikiLink":"http://en.wikipedia.org/wiki/Samurai_Champloo","matchedText":"samurai champloo","freebaseId":"/m/0324s1","relevanceScore":0.02947,"entityEnglishId":"Samurai Champloo","startingPos":3,"endingPos":19,"wikidataId":"Q143276"} +2023-10-27 14:09:11.143 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 3 +2023-10-27 14:09:11.143 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 +2023-10-27 14:09:11.147 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 +2023-10-27 14:09:11.147  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a7f6ce6 +2023-10-27 14:09:11.147 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:11.149  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "10"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.149  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "10"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.149 DEBUG 11764 --- [nio-8086-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "10"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.156  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46360bbf +2023-10-27 14:09:11.156 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: +prefix oa: +prefix xsd: + +INSERT { +GRAPH ?graph { + ?a a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + oa:hasSelector [ + a oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end + ] + ] ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time . +}} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:09:11.158  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.158  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.158 DEBUG 11764 --- [nio-8086-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfSpotInstance . + ?a oa:hasTarget _:b0 . + _:b0 oa:SpecificResource . + _:b0 oa:hasSource . + _:b0 oa:hasSelector _:b1 . + _:b1 oa:TextPositionSelector . + _:b1 oa:start "3"^^xsd:nonNegativeInteger . + _:b1 oa:end "19"^^xsd:nonNegativeInteger . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:09:11.163 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : processing took: 377 ms diff --git a/qanary-component-NER-TextRazor/src/main/resources/config/application.properties b/qanary-component-NER-TextRazor/src/main/resources/config/application.properties index 5568cb573..0630c3302 100644 --- a/qanary-component-NER-TextRazor/src/main/resources/config/application.properties +++ b/qanary-component-NER-TextRazor/src/main/resources/config/application.properties @@ -47,4 +47,4 @@ qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # textrazor service textrazor.api.live.test.active=true textrazor.api.url=http://api.textrazor.com -textrazor.api.key= +textrazor.api.key=7411ec7b19fd78780cd60dbb07eaee0b9b05f63e8df210c6841c8334 diff --git a/qanary-component-QB-PlatypusWrapper/nohup.out b/qanary-component-QB-PlatypusWrapper/nohup.out new file mode 100644 index 000000000..37bc56b5f --- /dev/null +++ b/qanary-component-QB-PlatypusWrapper/nohup.out @@ -0,0 +1,5294 @@ + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.3.1 +Spring Boot Version: 2.7.9 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:22.606  INFO 9654 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 9654 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) +2023-10-27 12:09:22.612 DEBUG 9654 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 +2023-10-27 12:09:22.624  INFO 9654 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:47.912  INFO 9654 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = PlatypusQueryBuilder +spring.application.description = PlatypusQueryBuilder is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:48.047  WARN 9654 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:49.066  WARN 9654 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:49.897  INFO 9654 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 12:09:49.962  INFO 9654 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 12:09:49.983  INFO 9654 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 12:09:50.010  INFO 9654 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 12:09:50.022  INFO 9654 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@3d4d3fe7 +2023-10-27 12:09:50.050  INFO 9654 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 12:09:54.603  INFO 9654 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 12:09:54.603  INFO 9654 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 12:09:54.697  INFO 9654 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 12:10:01.621  INFO 9654 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 12:10:01.811  INFO 9654 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 12:10:01.811  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 12:10:01.813  INFO 9654 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3a01773b +2023-10-27 12:10:02.261  WARN 9654 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 12:10:02.262  INFO 9654 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 12:10:02.262  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 12:10:02.263  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:10:02.263  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 12:10:02.401 ERROR 9654 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.3.1 +Spring Boot Version: 2.7.9 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:51.614  INFO 11767 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 11767 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) +2023-10-27 12:15:51.665 DEBUG 11767 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 +2023-10-27 12:15:51.682  INFO 11767 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:23.333  INFO 11767 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = PlatypusQueryBuilder +spring.application.description = PlatypusQueryBuilder is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:23.635  WARN 11767 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:25.388  WARN 11767 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:26.994  INFO 11767 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 12:16:27.014  INFO 11767 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 12:16:27.015  INFO 11767 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 12:16:27.066  INFO 11767 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 12:16:27.071  INFO 11767 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@7dac3fd8 +2023-10-27 12:16:27.087  INFO 11767 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 12:16:33.728  INFO 11767 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 12:16:33.728  INFO 11767 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 12:16:33.887  INFO 11767 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 12:16:45.588  INFO 11767 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 12:16:45.741  INFO 11767 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 12:16:45.742  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 12:16:45.743  INFO 11767 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 12:16:45.745  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 12:16:45.746  INFO 11767 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 12:16:45.746  INFO 11767 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 12:16:45.747  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5c1f6d57 +2023-10-27 12:16:46.173  WARN 11767 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 12:16:46.175  INFO 11767 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 12:16:46.176  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 12:16:46.179  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:16:46.180  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 12:16:46.394 ERROR 11767 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.3.1 +Spring Boot Version: 2.7.9 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:49.810  INFO 28734 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 28734 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) +2023-10-27 13:37:49.852 DEBUG 28734 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 +2023-10-27 13:37:49.857  INFO 28734 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:21.585  INFO 28734 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = PlatypusQueryBuilder +spring.application.description = PlatypusQueryBuilder is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:21.682  WARN 28734 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:23.026  WARN 28734 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:24.626  INFO 28734 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:38:24.713  INFO 28734 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 13:38:24.773  INFO 28734 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 13:38:24.917  INFO 28734 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:38:24.966  INFO 28734 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@7dac3fd8 +2023-10-27 13:38:25.047  INFO 28734 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 13:38:30.761  INFO 28734 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:38:30.761  INFO 28734 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:38:30.814  INFO 28734 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 13:38:35.910  INFO 28734 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:38:36.073  INFO 28734 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:38:36.074  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:38:36.075  INFO 28734 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5c1f6d57 +2023-10-27 13:38:36.554  WARN 28734 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 13:38:36.566  INFO 28734 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 13:38:36.568  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 13:38:36.568  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:38:36.569  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 13:38:36.809 ERROR 28734 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.3.1 +Spring Boot Version: 2.7.9 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:52.491  INFO 30125 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 30125 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) +2023-10-27 13:38:52.514 DEBUG 30125 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 +2023-10-27 13:38:52.527  INFO 30125 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:21.880  INFO 30125 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = PlatypusQueryBuilder +spring.application.description = PlatypusQueryBuilder is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:22.104  WARN 30125 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:23.089  WARN 30125 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:24.610  INFO 30125 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:39:24.694  INFO 30125 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 13:39:24.716  INFO 30125 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 13:39:24.854  INFO 30125 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:39:24.879  INFO 30125 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@7dac3fd8 +2023-10-27 13:39:24.938  INFO 30125 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 13:39:30.523  INFO 30125 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:39:30.523  INFO 30125 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:39:30.570  INFO 30125 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 13:39:37.466  INFO 30125 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:39:37.574  INFO 30125 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:39:37.575  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:39:37.576  INFO 30125 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5c1f6d57 +2023-10-27 13:39:37.841  WARN 30125 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 13:39:37.842  INFO 30125 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 13:39:37.842  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 13:39:37.842  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:39:37.842  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 13:39:38.066 ERROR 30125 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.3.1 +Spring Boot Version: 2.7.9 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:40:18.776  INFO 31141 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 31141 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) +2023-10-27 13:40:18.778 DEBUG 31141 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 +2023-10-27 13:40:18.779  INFO 31141 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:40:21.192  INFO 31141 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5555 +spring.application.name = PlatypusQueryBuilder +spring.application.description = PlatypusQueryBuilder is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:40:21.210  WARN 31141 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:40:21.323  WARN 31141 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:40:21.455  INFO 31141 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:40:21.463  INFO 31141 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs +2023-10-27 13:40:21.464  INFO 31141 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html +2023-10-27 13:40:21.475  INFO 31141 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:40:21.476  INFO 31141 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@3d4d3fe7 +2023-10-27 13:40:21.482  INFO 31141 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 13:40:21.989  INFO 31141 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:40:21.989  INFO 31141 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:40:22.002  INFO 31141 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 13:40:23.003  INFO 31141 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:40:23.015  INFO 31141 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:40:23.016  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:40:23.016  INFO 31141 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3a01773b +2023-10-27 13:40:23.104  WARN 31141 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use +2023-10-27 13:40:23.104  INFO 31141 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 13:40:23.104  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 13:40:23.104  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:40:23.104  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 13:40:23.145 ERROR 31141 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 5555 was already in use. + +Action: + +Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.3.1 +Spring Boot Version: 2.7.9 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:41:45.118  INFO 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 31614 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) +2023-10-27 13:41:45.120 DEBUG 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 +2023-10-27 13:41:45.121  INFO 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:41:47.474  INFO 31614 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 5982 +spring.application.name = PlatypusQueryBuilder +spring.application.description = PlatypusQueryBuilder is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:41:47.494  WARN 31614 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:41:47.620  WARN 31614 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:41:47.712  INFO 31614 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:41:47.717  INFO 31614 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5982/api-docs +2023-10-27 13:41:47.717  INFO 31614 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5982/swagger-ui.html +2023-10-27 13:41:47.725  INFO 31614 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] +2023-10-27 13:41:47.725  INFO 31614 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@41382722 +2023-10-27 13:41:47.729  INFO 31614 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl +2023-10-27 13:41:48.125  INFO 31614 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:41:48.126  INFO 31614 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE +@prefix ISO6391: . +@prefix qa: . +@prefix rdfs: . + +qa:Platypus a qa:QanaryComponentQB; + rdfs:label "Qanary component: Platypus Query Builder"@en; + qa:hasInputAnnotations [ a qa:AnnotationQuestion; + qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en + ]; + qa:hasOutputAnnotations [ a qa:AnnotationAnswer; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; + qa:supportedKnowledgeGraphs + ]; + qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; + qa:supportedKnowledgeGraphs + ] . + +2023-10-27 13:41:48.134  INFO 31614 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d +2023-10-27 13:41:49.173  INFO 31614 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:41:49.183  INFO 31614 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:41:49.183  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6794ac0b +2023-10-27 13:41:49.305  INFO 31614 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now +2023-10-27 13:41:49.305  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. +2023-10-27 13:41:49.320  INFO 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Started Application in 4.67 seconds (JVM running for 5.205) +2023-10-27 13:41:49.441  INFO 31614 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 68984f8d521e +2023-10-27 13:53:40.703  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:40.719  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:40.834  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:40.980  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@b243847 +2023-10-27 13:53:41.677  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql +2023-10-27 13:53:41.677 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:53:41.800  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5dc0e763 +2023-10-27 13:53:41.803 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:41.838  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:41.839  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:41.848 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:41.848  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql +2023-10-27 13:53:41.883 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? +2023-10-27 13:53:41.946  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20universities%20have%20more%20than%20200000%20students?&lang=en +2023-10-27 13:53:41.946 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20universities%20have%20more%20than%20200000%20students?&lang=en +2023-10-27 13:53:41.947  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20universities%20have%20more%20than%20200000%20students?&lang=en +2023-10-27 13:53:41.960 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520universities%2520have%2520more%2520than%2520200000%2520students?&lang=en +2023-10-27 13:53:42.000 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:53:42.051  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2061339155 +2023-10-27 13:53:54.503 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6fbdea91 +2023-10-27 13:53:54.504 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:53:54.633 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:53:57.238  INFO 31614 --- [nio-5982-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:57.239  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:57.239  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} +2023-10-27 13:53:57.239  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@204a2ff4 +2023-10-27 13:53:57.250  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql +2023-10-27 13:53:57.250 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:53:57.261  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49a1a72a +2023-10-27 13:53:57.261 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:57.263  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:57.264  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:57.270 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 +2023-10-27 13:53:57.270  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql +2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? +2023-10-27 13:53:57.272  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20TNFAIP1%20?&lang=en +2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20is%20TNFAIP1%20?&lang=en +2023-10-27 13:53:57.272  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20TNFAIP1%20?&lang=en +2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520is%2520TNFAIP1%2520?&lang=en +2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:53:57.273  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-196862961 +2023-10-27 13:53:59.093 DEBUG 31614 --- [nio-5982-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@11a0aa8c +2023-10-27 13:53:59.093 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:53:59.093 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:53:59.103  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=What is TNFAIP1 ?, lang=en +2023-10-27 13:53:59.104  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... +2023-10-27 13:53:59.117 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhat\twhat\tPRON\t_\t_\t0\troot\t_\t_\n2\tis\tbe\tVERB\t_\t_\t1\tcop\t_\t_\n3\tTNFAIP1\ttnfaip1\tNOUN\t_\t_\t1\tnsubj\t_\t_\n4\t?\t?\tSYM\t_\t_\t1\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?TNFAIP1 WHERE {\n\tBIND(wd:Q18032040 AS ?TNFAIP1)\n} LIMIT 100","platypus:term":"{ ?TNFAIP1 | [?TNFAIP1 = ] }","result":{"@id":"wd:Q18032040","alternateName":[{"@language":"en","@value":"B12"},{"@language":"en","@value":"B12"},{"@language":"en","@value":"EDP1"},{"@language":"en","@value":"EDP1"},{"@language":"en","@value":"B61"},{"@language":"en","@value":"B61"},{"@language":"en","@value":"hBACURD2"},{"@language":"en","@value":"hBACURD2"},{"@language":"en","@value":"BTBD34"},{"@language":"en","@value":"BTBD34"},{"@language":"en","@value":"TNF alpha induced protein 1"},{"@language":"en","@value":"TNF alpha induced protein 1"}],"description":{"@language":"en","@value":"protein-coding gene in the species Homo sapiens"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/TNFAIP1","@type":"Article","articleBody":"BTB/POZ domain-containing protein TNFAIP1 is a protein that in humans is encoded by the TNFAIP1 gene.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"TNFAIP1"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/00/Ideogram_human_chromosome_17.svg/320px-Ideogram_human_chromosome_17.svg.png","height":128,"width":320},"name":{"@language":"en","@value":"TNFAIP1"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/TNFAIP1"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/TNFAIP1"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/TNFAIP1"}]},"resultScore":0.04} +2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?TNFAIP1 WHERE { + BIND(wd:Q18032040 AS ?TNFAIP1) +} LIMIT 100 +2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.04 +2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' +2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null +2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' +2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: http://www.wikidata.org/entity/Q18032040 (http://www.w3.org/2001/XMLSchema#anyURI) +2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' +2023-10-27 13:53:59.126 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 +2023-10-27 13:53:59.129 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "wd:Q18032040" )( ?confidence, "0.04"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" )( ?graph, ) +2023-10-27 13:53:59.129  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4847fe5a +2023-10-27 13:53:59.129 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (now() as ?time) . +} +2023-10-27 13:53:59.145  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" . + ?newAnnotation qa:score "0.04"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.146  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" . + ?newAnnotation qa:score "0.04"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.146  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b00fd29 +2023-10-27 13:53:59.146 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + + ?answer rdf:type qa:Answer . + ?answer rdf:value ?answerValue . + + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget ?targetQuestion . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score ?confidence . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy ?application . + + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value ?answerDataType . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (now() as ?time) . +} +2023-10-27 13:53:59.151  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.04"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q18032040" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.04"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.152  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.04"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q18032040" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.04"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.152 DEBUG 31614 --- [nio-5982-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" . + ?newAnnotation qa:score "0.04"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.168 DEBUG 31614 --- [nio-5982-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.04"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q18032040" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.04"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:53:59.180 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.component.QanaryServiceController  : processing took: 1941 ms +2023-10-27 13:54:15.320  INFO 31614 --- [nio-5982-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:15.320  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:15.321  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} +2023-10-27 13:54:15.321  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@1af36d8e +2023-10-27 13:54:15.330  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql +2023-10-27 13:54:15.331 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:54:15.342  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1eccea08 +2023-10-27 13:54:15.342 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:15.345  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:15.345  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:15.351 DEBUG 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 +2023-10-27 13:54:15.351  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql +2023-10-27 13:54:15.353 DEBUG 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? +2023-10-27 13:54:15.354  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20Kobe%20Bryant%20leave%20the%20Lakers%20when%20LeBron%20James%20joined%20that%20team?&lang=en +2023-10-27 13:54:15.354 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Did%20Kobe%20Bryant%20leave%20the%20Lakers%20when%20LeBron%20James%20joined%20that%20team?&lang=en +2023-10-27 13:54:15.354  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20Kobe%20Bryant%20leave%20the%20Lakers%20when%20LeBron%20James%20joined%20that%20team?&lang=en +2023-10-27 13:54:15.354 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Did%2520Kobe%2520Bryant%2520leave%2520the%2520Lakers%2520when%2520LeBron%2520James%2520joined%2520that%2520team?&lang=en +2023-10-27 13:54:15.354 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:54:15.355  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=222484989 +2023-10-27 13:54:17.003 DEBUG 31614 --- [nio-5982-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@441ea1b5 +2023-10-27 13:54:17.004 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:54:17.005 ERROR 31614 --- [nio-5982-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:55:14.372  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:14.373  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:14.373  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} +2023-10-27 13:55:14.373  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@2eab860b +2023-10-27 13:55:14.384  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql +2023-10-27 13:55:14.384 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:55:14.413  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@206c7dae +2023-10-27 13:55:14.413 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:14.414  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:14.415  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:14.420 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 +2023-10-27 13:55:14.420  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql +2023-10-27 13:55:14.422 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the magazine in which hunter x hunter is published established? +2023-10-27 13:55:14.422  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20magazine%20in%20which%20hunter%20x%20hunter%20is%20published%20established?&lang=en +2023-10-27 13:55:14.422 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20magazine%20in%20which%20hunter%20x%20hunter%20is%20published%20established?&lang=en +2023-10-27 13:55:14.422  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20magazine%20in%20which%20hunter%20x%20hunter%20is%20published%20established?&lang=en +2023-10-27 13:55:14.422 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=when%2520was%2520the%2520magazine%2520in%2520which%2520hunter%2520x%2520hunter%2520is%2520published%2520established?&lang=en +2023-10-27 13:55:14.423 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:55:14.423  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=82601702 +2023-10-27 13:55:16.094 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@61517795 +2023-10-27 13:55:16.094 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:55:16.096 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@735ca3e1 +2023-10-27 13:55:19.362  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql +2023-10-27 13:55:19.362 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:55:19.370  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7d9b43fa +2023-10-27 13:55:19.370 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:19.371  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:19.371  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:19.379 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f +2023-10-27 13:55:19.379  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql +2023-10-27 13:55:19.381 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation which forest is bigger, Amazon Rainforest or Congo Basin? +2023-10-27 13:55:19.382  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=which%20forest%20is%20bigger,%20Amazon%20Rainforest%20or%20Congo%20Basin?&lang=en +2023-10-27 13:55:19.382 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=which%20forest%20is%20bigger,%20Amazon%20Rainforest%20or%20Congo%20Basin?&lang=en +2023-10-27 13:55:19.382  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=which%20forest%20is%20bigger,%20Amazon%20Rainforest%20or%20Congo%20Basin?&lang=en +2023-10-27 13:55:19.382 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=which%2520forest%2520is%2520bigger,%2520Amazon%2520Rainforest%2520or%2520Congo%2520Basin?&lang=en +2023-10-27 13:55:19.382 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:55:19.382  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1410940707 +2023-10-27 13:55:24.948 DEBUG 31614 --- [nio-5982-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@79a4c891 +2023-10-27 13:55:24.949 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:55:24.950 ERROR 31614 --- [nio-5982-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@4cdd939 +2023-10-27 13:55:37.230  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql +2023-10-27 13:55:37.230 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:55:37.252  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c22d51b +2023-10-27 13:55:37.252 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:37.253  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:37.253  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:37.258 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 +2023-10-27 13:55:37.258  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql +2023-10-27 13:55:37.261 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many public holidays does the state Bavaria have in a year? +2023-10-27 13:55:37.262  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20public%20holidays%20does%20the%20state%20Bavaria%20have%20in%20a%20year?&lang=en +2023-10-27 13:55:37.262 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20public%20holidays%20does%20the%20state%20Bavaria%20have%20in%20a%20year?&lang=en +2023-10-27 13:55:37.262  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20public%20holidays%20does%20the%20state%20Bavaria%20have%20in%20a%20year?&lang=en +2023-10-27 13:55:37.262 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520public%2520holidays%2520does%2520the%2520state%2520Bavaria%2520have%2520in%2520a%2520year?&lang=en +2023-10-27 13:55:37.263 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:55:37.263  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-134904073 +2023-10-27 13:56:35.637  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:35.637  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:35.638  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:35.638  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@53338071 +2023-10-27 13:56:35.647  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql +2023-10-27 13:56:35.647 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:56:35.656  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5df46467 +2023-10-27 13:56:35.657 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:56:35.659  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:35.659  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:35.666 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d +2023-10-27 13:56:35.666  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql +2023-10-27 13:56:35.669 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Goethe’s unmarried partner born ? +2023-10-27 13:56:35.670  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Where%20was%20Goethe%E2%80%99s%20unmarried%20partner%20born%20?&lang=en +2023-10-27 13:56:35.670 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Where%20was%20Goethe%E2%80%99s%20unmarried%20partner%20born%20?&lang=en +2023-10-27 13:56:35.670  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Where%20was%20Goethe%E2%80%99s%20unmarried%20partner%20born%20?&lang=en +2023-10-27 13:56:35.670 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Where%2520was%2520Goethe%25E2%2580%2599s%2520unmarried%2520partner%2520born%2520?&lang=en +2023-10-27 13:56:35.670 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:56:35.670  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=644210054 +2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@517519fa +2023-10-27 13:57:06.357  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql +2023-10-27 13:57:06.357 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:57:06.369  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fb2fda4 +2023-10-27 13:57:06.370 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:06.371  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:06.372  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:06.381 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:06.382  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql +2023-10-27 13:57:06.384 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was the University of Hamburg founded? +2023-10-27 13:57:06.384  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=When%20was%20the%20University%20of%20Hamburg%20founded?&lang=en +2023-10-27 13:57:06.384 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=When%20was%20the%20University%20of%20Hamburg%20founded?&lang=en +2023-10-27 13:57:06.384  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=When%20was%20the%20University%20of%20Hamburg%20founded?&lang=en +2023-10-27 13:57:06.384 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=When%2520was%2520the%2520University%2520of%2520Hamburg%2520founded?&lang=en +2023-10-27 13:57:06.385 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:57:06.385  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=423100088 +2023-10-27 13:57:20.737 DEBUG 31614 --- [nio-5982-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1e8ff79f +2023-10-27 13:57:20.738 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:20.739 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:57:20.742  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=When was the University of Hamburg founded?, lang=en +2023-10-27 13:57:20.742  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... +2023-10-27 13:57:20.748 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhen\twhen\tADV\t_\t_\t2\tadvmod\t_\t_\n2\twas\tbe\tVERB\t_\t_\t7\taux:pass\t_\t_\n3\tthe\tthe\tDET\t_\t_\t4\tdet\t_\t_\n4\tUniversity\tUniversity\tNOUN\t_\t_\t7\tnsubj:pass\t_\t_\n5\tof\tof\tADP\t_\t_\t6\tcase\t_\t_\n6\tHamburg\tHamburg\tNOUN\t_\t_\t4\tnmod\t_\t_\n7\tfounded\tfound\tVERB\t_\t_\t0\troot\t_\t_\n8\t?\t?\tSYM\t_\t_\t7\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result3 WHERE {\n\twd:Q156725 wdt:P571 ?result3 .\n} LIMIT 100","platypus:term":"{ ?result3 | <, , ?result3> }","result":{"@reverse":{"dateCreated":{"@id":"wd:Q156725","@type":["EducationalOrganization","Organization","HighSchool"],"alternateName":[{"@language":"en","@value":"Hamburg University"},{"@language":"en","@value":"Hamburg University"}],"description":{"@language":"en","@value":"university in Hamburg, Germany"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/University_of_Hamburg","@type":"Article","articleBody":"The University of Hamburg is a public research university in Hamburg, Germany. It was founded on 28 March 1919 by combining the previous General Lecture System, the Hamburg Colonial Institute, and the Academic College. The main campus is located in the central district of Rotherbaum, with affiliated institutes and research centres distributed around the city-state. Seven Nobel Prize winners and one Wolf Prize winner are affiliated with UHH.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"University of Hamburg"},"hasPart":[{"@id":"wd:Q2324644","@type":"Organization","alternateName":[{"@language":"en","@value":"Hamburg State and University Library"},{"@language":"en","@value":"Hamburg State and University Library"}],"description":{"@language":"en","@value":"scientific general library of the city-state of Hamburg"},"name":{"@language":"en","@value":"Hamburg State and University Library Carl von Ossietzky"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/158350553"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Staats-_und_Universit%C3%A4tsbibliothek_Hamburg"}],"url":{"@type":"xsd:anyURI","@value":"http://www.sub.uni-hamburg.de/home.html"}},{"@id":"wd:Q1998467","@type":"Organization","sameAs":[{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/134074187"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Nordost-Institut"}]},{"@id":"wd:Q23441223","@type":"Organization","alternateName":[{"@language":"en","@value":"ÄZB"},{"@language":"en","@value":"ÄZB"}],"description":{"@language":"en","@value":"Medical library in Hamburg Germany"},"name":{"@language":"en","@value":"Central Medical Library"},"sameAs":{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/%C3%84rztliche_Zentralbibliothek"},"url":{"@type":"xsd:anyURI","@value":"http://www.uke.de/aerztliche-zentralbibliothek"}},{"@id":"wd:Q65156553","@type":"Organization","sameAs":{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Abteilung_Ostrechtsforschung_der_Universit%C3%A4t_Hamburg"}}],"http://www.opengis.net/ont/geosparql#":{"@id":"http://www.opengis.net/ont/geosparql#53.56694444444487,9.983888888888968","@type":"GeoCoordinates","http://www.opengis.net/ont/geosparql#asWKT":{"@type":"http://www.opengis.net/ont/geosparql#wktLiteral","@value":"POINT (9.983888888888968 53.56694444444487)"},"latitude":53.56694444444487,"longitude":9.983888888888968},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/88/Seal_of_the_University_of_Hamburg.svg/320px-Seal_of_the_University_of_Hamburg.svg.png","height":320,"width":320},"name":{"@language":"en","@value":"University of Hamburg"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%90%D7%95%D7%A0%D7%99%D7%91%D7%A8%D7%A1%D7%99%D7%98%D7%AA_%D7%94%D7%9E%D7%91%D7%95%D7%A8%D7%92"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Hamburg_%C3%9Cniversitesi"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Universit%C3%A4t_Hamburg"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D9%87%D8%A7%D9%85%D8%A8%D9%88%D8%B1%D8%BA"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CE%B1%CE%BD%CE%B5%CF%80%CE%B9%CF%83%CF%84%CE%AE%CE%BC%CE%B9%CE%BF_%CF%84%CE%BF%CF%85_%CE%91%CE%BC%CE%B2%CE%BF%CF%8D%CF%81%CE%B3%CE%BF%CF%85"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Universit%C3%A0_di_Amburgo"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Universitas_Hamburgensis"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Chuo_Kikuu_cha_Hamburg"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Hamburgo_universitetas"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Universitat_d%27Hamburg"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Universitas_Hamburg"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/University_of_Hamburg"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%93%D0%B0%D0%BC%D0%B1%D1%83%D1%80%D0%B7%D1%8C%D0%BA%D0%B8%D0%B9_%D1%83%D0%BD%D1%96%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%82%D0%B5%D1%82"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Uniwersytet_Hamburski"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Universidad_de_Hamburgo"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%8F%E3%83%B3%E3%83%96%E3%83%AB%E3%82%AF%E5%A4%A7%E5%AD%A6"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E6%B1%89%E5%A0%A1%E5%A4%A7%E5%AD%A6"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Universit%C3%A4t_Hamburg"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/6944322"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%A1%E0%B8%AB%E0%B8%B2%E0%B8%A7%E0%B8%B4%E0%B8%97%E0%B8%A2%E0%B8%B2%E0%B8%A5%E0%B8%B1%E0%B8%A2%E0%B8%AE%E0%B8%B1%E0%B8%A1%E0%B8%9A%E0%B8%A7%E0%B8%A3%E0%B9%8C%E0%B8%84"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%ED%95%A8%EB%B6%80%EB%A5%B4%ED%81%AC_%EB%8C%80%ED%95%99%EA%B5%90"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%93%D0%B0%D0%BC%D0%B1%D1%83%D1%80%D0%B3%D1%81%D0%BA%D0%B8%D0%B9_%D1%83%D0%BD%D0%B8%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%82%D0%B5%D1%82"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Universidade_de_Hamburgo"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Univerza_v_Hamburgu"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Universit%C3%A4t_Hamburg"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Universitatea_din_Hamburg"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BA%A1i_h%E1%BB%8Dc_Hamburg"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/05t7c1"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/University-of-Hamburg"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Hampurin_yliopisto"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Unibersidad_ng_Hamburg"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Hamburgi_%C3%9Clikool"},{"@type":"xsd:anyURI","@value":"http://www.instagram.com/uni_hamburg"},{"@type":"xsd:anyURI","@value":"http://twitter.com/unihh"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%B9%E0%AE%AE%E0%AF%8D%E0%AE%AA%E0%AE%B0%E0%AF%8D%E0%AE%95%E0%AF%81_%E0%AE%AA%E0%AE%B2%E0%AF%8D%E0%AE%95%E0%AE%B2%E0%AF%88%E0%AE%95%E0%AF%8D%E0%AE%95%E0%AE%B4%E0%AE%95%E0%AE%AE%E0%AF%8D"},{"@type":"xsd:anyURI","@value":"http://www.facebook.com/uni.hamburg"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/133411557"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Universit%C3%A9_de_Hambourg"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%AF%D8%A7%D9%86%D8%B4%DA%AF%D8%A7%D9%87_%D9%87%D8%A7%D9%85%D8%A8%D9%88%D8%B1%DA%AF"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Hamburgs_universitet"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Universiteit_Hamburg"}],"url":{"@type":"xsd:anyURI","@value":"http://www.uni-hamburg.de/"}}},"@type":"xsd:date","name":"1919-01-01Z","rdf:value":{"@type":"xsd:date","@value":"1919-01-01Z"}},"resultScore":0.42} +2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result3 WHERE { + wd:Q156725 wdt:P571 ?result3 . +} LIMIT 100 +2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.42 +2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' +2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: 1919-01-01Z (http://www.w3.org/2001/XMLSchema#date) +2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'literal' +2023-10-27 13:57:20.771 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:20.771 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "1919-01-01Z" )( ?confidence, "0.42"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" )( ?graph, ) +2023-10-27 13:57:20.772  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@674c877d +2023-10-27 13:57:20.772 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (now() as ?time) . +} +2023-10-27 13:57:20.776  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" . + ?newAnnotation qa:score "0.42"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:57:20.777  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" . + ?newAnnotation qa:score "0.42"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:57:20.777  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2fdb09ed +2023-10-27 13:57:20.777 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + + ?answer rdf:type qa:Answer . + ?answer rdf:value ?answerValue . + + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget ?targetQuestion . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score ?confidence . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy ?application . + + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value ?answerDataType . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (now() as ?time) . +} +2023-10-27 13:57:20.791  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.42"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "1919-01-01Z" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.42"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:date . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:57:20.792  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.42"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "1919-01-01Z" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.42"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:date . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:57:20.792 DEBUG 31614 --- [nio-5982-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" . + ?newAnnotation qa:score "0.42"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:57:20.819 DEBUG 31614 --- [nio-5982-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.42"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "1919-01-01Z" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.42"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:date . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:57:20.836 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : processing took: 14489 ms +2023-10-27 13:57:48.214  INFO 31614 --- [nio-5982-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:48.214  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:48.215  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} +2023-10-27 13:57:48.215  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@26d20031 +2023-10-27 13:57:48.224  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql +2023-10-27 13:57:48.224 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:57:48.239  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@729bf604 +2023-10-27 13:57:48.240 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:48.241  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:48.242  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:48.249 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 +2023-10-27 13:57:48.250  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql +2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in the country where ghost in the shell is born, who is the current head of the state? +2023-10-27 13:57:48.252  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20the%20country%20where%20ghost%20in%20the%20shell%20is%20born,%20who%20is%20the%20current%20head%20of%20the%20state?&lang=en +2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=in%20the%20country%20where%20ghost%20in%20the%20shell%20is%20born,%20who%20is%20the%20current%20head%20of%20the%20state?&lang=en +2023-10-27 13:57:48.252  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20the%20country%20where%20ghost%20in%20the%20shell%20is%20born,%20who%20is%20the%20current%20head%20of%20the%20state?&lang=en +2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=in%2520the%2520country%2520where%2520ghost%2520in%2520the%2520shell%2520is%2520born,%2520who%2520is%2520the%2520current%2520head%2520of%2520the%2520state?&lang=en +2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:57:48.253  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-753024794 +2023-10-27 13:57:48.918 DEBUG 31614 --- [nio-5982-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@56425057 +2023-10-27 13:57:48.918 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:57:48.919 ERROR 31614 --- [nio-5982-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:57:55.025  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:55.025  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:55.026  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:55.026  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7bb69825 +2023-10-27 13:57:55.036  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql +2023-10-27 13:57:55.037 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:57:55.046  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75717923 +2023-10-27 13:57:55.047 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:55.048  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:55.048  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:55.055 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:55.055  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql +2023-10-27 13:57:55.057 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? +2023-10-27 13:57:55.058  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20does%20the%20Scream%20franchise%20have?&lang=en +2023-10-27 13:57:55.058 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20does%20the%20Scream%20franchise%20have?&lang=en +2023-10-27 13:57:55.058  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20does%20the%20Scream%20franchise%20have?&lang=en +2023-10-27 13:57:55.058 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520movies%2520does%2520the%2520Scream%2520franchise%2520have?&lang=en +2023-10-27 13:57:55.058 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:57:55.058  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-764444990 +2023-10-27 13:57:57.000 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@53b655bc +2023-10-27 13:57:57.001 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:57:57.035 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:57:57.038  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=Where was Goethe’s unmarried partner born ?, lang=en +2023-10-27 13:57:57.038  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... +2023-10-27 13:57:57.043 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : found an answer array, processing just the first result +2023-10-27 13:57:57.043 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhere\twhere\tADV\t_\t_\t7\tadvmod\t_\t_\n2\twas\tbe\tVERB\t_\t_\t7\taux:pass\t_\t_\n3\tGoethe\tGoethe\tNOUN\t_\t_\t6\tnmod:poss\t_\t_\n4\t's\t's\tPART\t_\t_\t3\tcase\t_\t_\n5\tunmarried\tunmarried\tADJ\t_\t_\t6\tamod\t_\t_\n6\tpartner\tpartner\tNOUN\t_\t_\t7\tnsubj:pass\t_\t_\n7\tborn\tbear\tVERB\t_\t_\t0\troot\t_\t_\n8\t?\t?\tSYM\t_\t_\t7\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result78 WHERE {\n\t?arg4 wdt:P19 ?temp79 .\n\twd:Q5879 wdt:P451 ?arg4 .\n\t?temp79 wdt:P625 ?result78 .\n} LIMIT 100","platypus:term":"{ ?result78 | ∃ ?temp79 (, ?result78> ∧ ∃ ?arg4 (<, , ?arg4> ∧ , ?temp79>)) }","result":{"@id":"geo:50.1,8.766666666","@reverse":{"geo":{"@id":"wd:Q3042","@type":["AdministrativeArea","Organization","CivicStructure","House","City","Accommodation","GovernmentBuilding","Place"],"alternateName":[{"@language":"en","@value":"Offenbach"},{"@language":"en","@value":"Offenbach"},{"@language":"en","@value":"Offenbach/Main"},{"@language":"en","@value":"Offenbach/Main"}],"description":{"@language":"en","@value":"city in Hesse, Germany"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Offenbach_am_Main","@type":"Article","articleBody":"Offenbach am Main is a city in Hesse, Germany, on the left bank of the river Main. It borders Frankfurt and is part of the Frankfurt urban area and the larger Frankfurt Rhein-Main urban area. It has a population of 138,335.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Offenbach am Main"},"hasPart":[{"@id":"wd:Q2015467","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Offenbach-Bürgel"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-B%C3%BCrgel"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-B%C3%BCrgel"}]},{"@id":"wd:Q14216964","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"url":{"@type":"xsd:anyURI","@value":"http://www.offenbach.de/index.php"}},{"@id":"wd:Q881631","@type":"Place","description":{"@language":"en","@value":"District of Offenbach, Hesse, Germany"},"name":{"@language":"en","@value":"Lauterborn"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Lauterborn"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Lauterborn"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D9%88%D9%81%D9%86%D8%A8%D8%A7%D8%AE-%D9%84%D8%A7%D9%88%D8%AA%D8%B1%D8%A8%D9%88%D8%B1%D9%86"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach-Lauterborn"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/03mbwkk"}]},{"@id":"wd:Q1791003","@type":"Place","alternateName":[{"@language":"en","@value":"Offenbach-Rosenhöhe"},{"@language":"en","@value":"Offenbach-Rosenhöhe"}],"description":{"@language":"en","@value":"District of Offenbach am Main, Hesse, Germany"},"name":{"@language":"en","@value":"Rosenhöhe"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach-Rosenh%C3%B6he"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Rosenh%C3%B6he"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Rosenh%C3%B6he"}]},{"@id":"wd:Q2015478","@type":"Place","description":{"@language":"en","@value":"District of Offenbach, Hesse, Germany"},"name":{"@language":"en","@value":"Rumpenheim"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Rumpenheim"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Rumpenheim"}]},{"@id":"wd:Q1369228","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"sameAs":{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Mathildenviertel"}},{"@id":"wd:Q2015470","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Kaiserlei"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Kaiserlei"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Kaiserlei"}]},{"@id":"wd:Q314727","@type":"Place","description":{"@language":"en","@value":"district of Offenbach, Hesse, Germany"},"name":{"@language":"en","@value":"Bieber"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0771sy"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach-Bieber"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Bieber"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A8%DB%8C%D8%A8%D8%B1_%28%D8%A7%D9%81%D9%86%D8%A8%D8%A7%D8%AE%29"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Offenbach-Bieber"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/153614826"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Bieber"}]},{"@id":"wd:Q2015481","@type":"Place","description":{"@language":"en","@value":"District of Offenbach am Main, Hesse, Germany"},"name":{"@language":"en","@value":"Offenbach-Tempelsee"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Tempelsee"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Tempelsee"}]},{"@id":"wd:Q1605868","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Offenbach-Waldheim"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Waldheim"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Waldheim"}]}],"http://www.opengis.net/ont/geosparql#":{"@id":"http://www.opengis.net/ont/geosparql#50.1000000000004,8.766666666666737","@type":"GeoCoordinates","http://www.opengis.net/ont/geosparql#asWKT":{"@type":"http://www.opengis.net/ont/geosparql#wktLiteral","@value":"POINT (8.766666666666737 50.1000000000004)"},"latitude":50.1000000000004,"longitude":8.766666666666737},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Offenbach_am_main_from_drone.jpg/320px-Offenbach_am_main_from_drone.jpg","height":180,"width":320},"isPartOf":{"@id":"wd:Q707278","@type":["AdministrativeArea","Place"],"description":{"@language":"en","@value":"metropolitan region in Germany"},"name":{"@language":"en","@value":"Frankfurt Rhine-Main Metropolitan Region"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Regi%C3%B3n_Rin-Meno"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Regi%C3%A3o_metropolitana_Frankfurt/Reno-Meno"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%A0%D0%B0%D1%98%D0%BD%D0%B0-%D0%9C%D0%B0%D1%98%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Rhen-Main-omr%C3%A5det"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Rhein-Main-omr%C3%A5det"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Frankfurt_Rajna-Majna"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Rein%E2%80%93Main"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0bgtry"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Ren-Main"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Rijn-Maingebied"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Region_Ren-Men"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Reino-Maino_sritis"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Frankfurt/Rhein-Main"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CE%B5%CF%81%CE%B9%CE%BF%CF%87%CE%AE_%CE%A1%CE%AE%CE%BD%CE%BF%CF%85-%CE%9C%CE%AC%CE%B9%CE%BD"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E6%B3%95%E8%98%AD%E5%85%8B%E7%A6%8F%E8%90%8A%E8%8C%B5-%E7%BE%8E%E8%8C%B5%E5%A4%A7%E9%83%BD%E6%9C%83%E5%8D%80"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Rhein-Main-Gebiet"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Regione_metropolitana_Reno-Meno"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/R%C3%A9gion_Rhin-Main"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Frankfurt_Rhine-Main"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/240330115"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%81%D8%B1%D8%A7%D9%86%DA%A9%D9%81%D9%88%D8%B1%D8%AA_%D8%B1%D8%A7%DB%8C%D9%86-%D9%85%D8%A7%DB%8C%D9%86"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%A9%E3%82%A4%E3%83%B3%EF%BC%9D%E3%83%9E%E3%82%A4%E3%83%B3%E5%9C%B0%E6%96%B9"}],"url":{"@type":"xsd:anyURI","@value":"http://www.planungsverband.de/"}},"name":{"@language":"en","@value":"Offenbach am Main"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/140657703"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9E%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85_%D0%BD%D0%B0_%D0%9C%D0%B0%D0%B9%D0%BD"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9E%D1%84%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85-%D0%B0%D0%BC-%D0%9C%D0%B0%D0%B9%D0%BD"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Offenbach"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%83%E3%83%95%E3%82%A7%E3%83%B3%E3%83%90%E3%83%83%E3%83%8F%E3%83%BB%E3%82%A2%E3%83%A0%E3%83%BB%E3%83%9E%E3%82%A4%E3%83%B3"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Offenbach_na_Majni"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Ofenbaha_pie_Mainas"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Offenbachium_ad_Moenum"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9E%D1%84%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85-%D0%BD%D0%B0-%D0%9C%D0%B0%D0%B9%D0%BD%D1%96"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/6559110"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A3%D9%88%D9%81%D9%86%D8%A8%D8%A7%D8%AE_%D8%A3%D9%85_%D9%85%D8%A7%D9%8A%D9%86"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E7%BE%8E%E5%9B%A0%E6%B2%B3%E7%95%94%E5%A5%A5%E8%8A%AC%E5%B7%B4%E8%B5%AB"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%90%D7%95%D7%A4%D7%A0%D7%91%D7%9A"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Offenbach-sur-le-Main"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Offenbach_del_Meno"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%8C%CF%86%CE%B5%CE%BD%CE%BC%CF%80%CE%B1%CF%87"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D9%81%D9%86%D8%A8%D8%A7%D8%AE_%D8%A2%D9%85_%D9%85%D8%A7%DB%8C%D9%86"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Ofenbachas"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%98%A4%ED%8E%9C%EB%B0%94%ED%9D%90"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0254wm"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/84a83c9d-b5b5-40c4-a000-e06d64f9fc94"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9E%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85_%D0%BD%D0%B0_%D0%9C%D0%B0%D1%98%D0%BD%D0%B8"}],"url":{"@type":"xsd:anyURI","@value":"https://www.offenbach.de/"}}},"@type":"GeoCoordinates","latitude":50.1,"longitude":8.766666666},"resultScore":0.58} +2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result78 WHERE { + ?arg4 wdt:P19 ?temp79 . + wd:Q5879 wdt:P451 ?arg4 . + ?temp79 wdt:P625 ?result78 . +} LIMIT 100 +2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.58 +2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' +2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null +2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' +2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: geo:50.1,8.766666666 (http://www.w3.org/2001/XMLSchema#anyURI) +2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' +2023-10-27 13:57:57.053 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d +2023-10-27 13:57:57.053 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "geo:50.1,8.766666666" )( ?confidence, "0.58"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" )( ?graph, ) +2023-10-27 13:57:57.054  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d9fd4f1 +2023-10-27 13:57:57.054 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (now() as ?time) . +} +2023-10-27 13:57:57.057  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" . + ?newAnnotation qa:score "0.58"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:57:57.057  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" . + ?newAnnotation qa:score "0.58"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:57:57.057  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2b0ab1a0 +2023-10-27 13:57:57.058 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + + ?answer rdf:type qa:Answer . + ?answer rdf:value ?answerValue . + + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget ?targetQuestion . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score ?confidence . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy ?application . + + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value ?answerDataType . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (now() as ?time) . +} +2023-10-27 13:57:57.063  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.58"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "geo:50.1,8.766666666" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.58"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:57:57.063  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.58"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "geo:50.1,8.766666666" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.58"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:57:57.064 DEBUG 31614 --- [nio-5982-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" . + ?newAnnotation qa:score "0.58"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 13:57:57.072 DEBUG 31614 --- [nio-5982-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.58"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "geo:50.1,8.766666666" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.58"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 13:57:57.081 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : processing took: 81444 ms +2023-10-27 13:57:59.049 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@344c7318 +2023-10-27 13:57:59.049 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:57:59.050 ERROR 31614 --- [nio-5982-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:58:12.524 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30821149 +2023-10-27 13:58:12.524 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:58:12.526 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:58:38.068  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:38.069  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:38.069  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} +2023-10-27 13:58:38.069  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@50fab0be +2023-10-27 13:58:38.077  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql +2023-10-27 13:58:38.077 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:58:38.085  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6bf9b7ef +2023-10-27 13:58:38.085 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:38.087  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:38.087  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:38.093 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 +2023-10-27 13:58:38.094  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql +2023-10-27 13:58:38.097 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation how many plays has William Shakespeare written in the 16th century. +2023-10-27 13:58:38.098  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=how%20many%20plays%20has%20William%20Shakespeare%20written%20in%20the%2016th%20century.&lang=en +2023-10-27 13:58:38.098 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=how%20many%20plays%20has%20William%20Shakespeare%20written%20in%20the%2016th%20century.&lang=en +2023-10-27 13:58:38.098  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=how%20many%20plays%20has%20William%20Shakespeare%20written%20in%20the%2016th%20century.&lang=en +2023-10-27 13:58:38.098 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=how%2520many%2520plays%2520has%2520William%2520Shakespeare%2520written%2520in%2520the%252016th%2520century.&lang=en +2023-10-27 13:58:38.098 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:58:38.098  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1996961654 +2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@2af3a61f +2023-10-27 13:58:49.126  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql +2023-10-27 13:58:49.127 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:58:49.135  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@dd0b428 +2023-10-27 13:58:49.135 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:49.136  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:49.136  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:49.143 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:49.143  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql +2023-10-27 13:58:49.146 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:49.146  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20actor%20starring%20in%20Free%20Guy%20also%20starred%20in%20Deadpool?&lang=en +2023-10-27 13:58:49.146 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20actor%20starring%20in%20Free%20Guy%20also%20starred%20in%20Deadpool?&lang=en +2023-10-27 13:58:49.153  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20actor%20starring%20in%20Free%20Guy%20also%20starred%20in%20Deadpool?&lang=en +2023-10-27 13:58:49.154 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520actor%2520starring%2520in%2520Free%2520Guy%2520also%2520starred%2520in%2520Deadpool?&lang=en +2023-10-27 13:58:49.154 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:58:49.154  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=777975705 +2023-10-27 13:58:57.614 DEBUG 31614 --- [nio-5982-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6384b8fd +2023-10-27 13:58:57.614 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 13:58:57.616 ERROR 31614 --- [nio-5982-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:59:51.984  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:51.984  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:51.985  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} +2023-10-27 13:59:51.985  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@5326428 +2023-10-27 13:59:51.993  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql +2023-10-27 13:59:51.993 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 13:59:52.005  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e0fb80 +2023-10-27 13:59:52.005 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:52.006  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:52.006  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:52.014 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 13:59:52.014  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql +2023-10-27 13:59:52.016 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the professions of John Lennon’s sons? +2023-10-27 13:59:52.016  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20professions%20of%20John%20Lennon%E2%80%99s%20sons?&lang=en +2023-10-27 13:59:52.017 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20professions%20of%20John%20Lennon%E2%80%99s%20sons?&lang=en +2023-10-27 13:59:52.017  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20professions%20of%20John%20Lennon%E2%80%99s%20sons?&lang=en +2023-10-27 13:59:52.017 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520are%2520the%2520professions%2520of%2520John%2520Lennon%25E2%2580%2599s%2520sons?&lang=en +2023-10-27 13:59:52.017 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:59:52.017  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1361505563 +2023-10-27 14:00:02.057 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@a59e04d +2023-10-27 14:00:02.057 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:02.130 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:00:02.132  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=What are the professions of John Lennon’s sons?, lang=en +2023-10-27 14:00:02.132  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... +2023-10-27 14:00:02.136 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : found an answer array, processing just the first result +2023-10-27 14:00:02.136 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhat\twhat\tPRON\t_\t_\t0\troot\t_\t_\n2\tare\tbe\tVERB\t_\t_\t1\tcop\t_\t_\n3\tthe\tthe\tDET\t_\t_\t4\tdet\t_\t_\n4\tprofessions\tprofession\tNOUN\t_\t_\t1\tnsubj\t_\t_\n5\tof\tof\tADP\t_\t_\t9\tcase\t_\t_\n6\tJohn\tJohn\tNOUN\t_\t_\t7\tcompound\t_\t_\n7\tLennon\tLennon\tNOUN\t_\t_\t9\tnmod:poss\t_\t_\n8\t's\t's\tPART\t_\t_\t7\tcase\t_\t_\n9\tsons\tson\tNOUN\t_\t_\t4\tnmod\t_\t_\n10\t?\t?\tSYM\t_\t_\t1\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result2 WHERE {\n\t?arg5 wdt:P106 ?result2 .\n\twd:Q1203 wdt:P40 ?arg5 .\n} LIMIT 100","platypus:term":"{ ?result2 | ∃ ?arg5 (, ?result2> ∧ <, , ?arg5>) }","result":{"@id":"wd:Q28389","alternateName":[{"@language":"en","@value":"writer"},{"@language":"en","@value":"writer"},{"@language":"en","@value":"film writer"},{"@language":"en","@value":"film writer"},{"@language":"en","@value":"screen writer"},{"@language":"en","@value":"screen writer"},{"@language":"en","@value":"script writer"},{"@language":"en","@value":"script writer"},{"@language":"en","@value":"scenarist"},{"@language":"en","@value":"scenarist"},{"@language":"en","@value":"tv writer"},{"@language":"en","@value":"tv writer"},{"@language":"en","@value":"scriptwriter"},{"@language":"en","@value":"scriptwriter"}],"description":{"@language":"en","@value":"writer who writes for TV, films, comics and games"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Screenwriter","@type":"Article","articleBody":"A screenplay writer is a writer who practices the craft of screenwriting, writing screenplays on which mass media, such as films, television programs, and video games, are based.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Screenwriter"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Screenplay_example.svg/320px-Screenplay_example.svg.png","height":414,"width":320},"name":{"@language":"en","@value":"screenwriter"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Scenarist"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%AA%D7%A1%D7%A8%D7%99%D7%98%D7%90%D7%99"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Guionista"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E7%B7%A8%E5%8A%87"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B9%80%E0%B8%82%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B8%9A%E0%B8%97"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Forgat%C3%B3k%C3%B6nyv%C3%ADr%C3%B3"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A3%CE%B5%CE%BD%CE%B1%CF%81%CE%B9%CE%BF%CE%B3%CF%81%CE%AC%CF%86%CE%BF%CF%82"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0dxtg"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D9%83%D8%A7%D8%AA%D8%A8_%D8%B3%D9%8A%D9%86%D8%A7%D8%B1%D9%8A%D9%88"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Scenarist"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Manusf%C3%B6rfattare"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Scenarzysta"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Screenwriter"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%81%DB%8C%D9%84%D9%85%E2%80%8C%D9%86%D8%A7%D9%85%D9%87%E2%80%8C%D9%86%D9%88%DB%8C%D8%B3"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Manuskriptforfatter"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/Scenarista"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%A1%D1%86%D0%B5%D0%BD%D0%B0%D1%80%D0%B8%D1%81%D1%82"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E8%84%9A%E6%9C%AC%E5%AE%B6"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Penulis_skenario"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Scenarioschrijver"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Sc%C3%A9nariste"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Senarist"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Scenarist"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Nh%C3%A0_bi%C3%AAn_k%E1%BB%8Bch"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EA%B0%81%EB%B3%B8%EA%B0%80"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Scen%C4%81rists"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%A1%D1%86%D0%B5%D0%BD%D0%B0%D1%80%D0%B8%D1%81%D1%82"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Roteirista"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Screenwriters"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Drehbuchautor"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Stsenarist"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Manusforfatter"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Guionista"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/K%C3%A4sikirjoittaja"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%A4%E0%AE%BF%E0%AE%B0%E0%AF%88%E0%AE%95%E0%AF%8D%E0%AE%95%E0%AE%A4%E0%AF%88_%E0%AE%86%E0%AE%9A%E0%AE%BF%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%B0%E0%AF%8D"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%A1%D1%86%D0%B5%D0%BD%D0%B0%D1%80%D0%B8%D1%81%D1%82"}]},"resultScore":0.62} +2023-10-27 14:00:02.137 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result2 WHERE { + ?arg5 wdt:P106 ?result2 . + wd:Q1203 wdt:P40 ?arg5 . +} LIMIT 100 +2023-10-27 14:00:02.137 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.62 +2023-10-27 14:00:02.137 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' +2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null +2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' +2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: http://www.wikidata.org/entity/Q28389 (http://www.w3.org/2001/XMLSchema#anyURI) +2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' +2023-10-27 14:00:02.143 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 +2023-10-27 14:00:02.144 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "wd:Q28389" )( ?confidence, "0.62"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" )( ?graph, ) +2023-10-27 14:00:02.144  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c5cd60a +2023-10-27 14:00:02.145 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (now() as ?time) . +} +2023-10-27 14:00:02.147  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" . + ?newAnnotation qa:score "0.62"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.147  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" . + ?newAnnotation qa:score "0.62"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.147  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18e412fa +2023-10-27 14:00:02.148 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + + ?answer rdf:type qa:Answer . + ?answer rdf:value ?answerValue . + + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget ?targetQuestion . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score ?confidence . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy ?application . + + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value ?answerDataType . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (now() as ?time) . +} +2023-10-27 14:00:02.151  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.62"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q28389" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.62"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.151  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.62"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q28389" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.62"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.151 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" . + ?newAnnotation qa:score "0.62"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.157 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.62"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q28389" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.62"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 14:00:02.166 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : processing took: 10182 ms +2023-10-27 14:00:18.483  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:18.483  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:18.484  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:18.484  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@3e33e60c +2023-10-27 14:00:18.500  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql +2023-10-27 14:00:18.500 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:00:18.517  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e9bb0da +2023-10-27 14:00:18.517 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:18.519  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:18.519  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:18.526 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d +2023-10-27 14:00:18.527  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql +2023-10-27 14:00:18.529 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:18.530  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Who%20was%20the%20fellow%20Hobbit%20who%20was%20an%20enemy%20of%20Frodo?&lang=en +2023-10-27 14:00:18.530 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Who%20was%20the%20fellow%20Hobbit%20who%20was%20an%20enemy%20of%20Frodo?&lang=en +2023-10-27 14:00:18.530  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Who%20was%20the%20fellow%20Hobbit%20who%20was%20an%20enemy%20of%20Frodo?&lang=en +2023-10-27 14:00:18.531 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Who%2520was%2520the%2520fellow%2520Hobbit%2520who%2520was%2520an%2520enemy%2520of%2520Frodo?&lang=en +2023-10-27 14:00:18.531 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:00:18.531  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1807209424 +2023-10-27 14:00:19.534 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@742ffb18 +2023-10-27 14:00:19.534 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:00:19.535 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:00:46.011  INFO 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:46.011  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:46.012  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:46.013  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@1ff227be +2023-10-27 14:00:46.021  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql +2023-10-27 14:00:46.021 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:00:46.028  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ea008d0 +2023-10-27 14:00:46.028 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:46.029  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:46.030  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:46.035 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:46.035  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql +2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? +2023-10-27 14:00:46.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20were%20directed%20by%20Akira%20Kurosawa%20?&lang=en +2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20were%20directed%20by%20Akira%20Kurosawa%20?&lang=en +2023-10-27 14:00:46.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20were%20directed%20by%20Akira%20Kurosawa%20?&lang=en +2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520movies%2520were%2520directed%2520by%2520Akira%2520Kurosawa%2520?&lang=en +2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:00:46.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-401806449 +2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} +2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7ce69113 +2023-10-27 14:01:40.802  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql +2023-10-27 14:01:40.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:01:40.810  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d1c2086 +2023-10-27 14:01:40.811 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:01:40.811  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:40.812  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:40.819 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 +2023-10-27 14:01:40.819  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql +2023-10-27 14:01:40.820 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the boiling point of water? +2023-10-27 14:01:40.821  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20the%20boiling%20point%20of%20water?&lang=en +2023-10-27 14:01:40.821 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20is%20the%20boiling%20point%20of%20water?&lang=en +2023-10-27 14:01:40.821  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20the%20boiling%20point%20of%20water?&lang=en +2023-10-27 14:01:40.821 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520is%2520the%2520boiling%2520point%2520of%2520water?&lang=en +2023-10-27 14:01:40.821 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:01:40.821  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1798464153 +2023-10-27 14:02:35.004 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@300e7857 +2023-10-27 14:02:35.006 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:02:35.006 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:02:35.007  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=What is the boiling point of water?, lang=en +2023-10-27 14:02:35.007  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... +2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhat\twhat\tPRON\t_\t_\t0\troot\t_\t_\n2\tis\tbe\tVERB\t_\t_\t1\tcop\t_\t_\n3\tthe\tthe\tDET\t_\t_\t5\tdet\t_\t_\n4\tboiling\tboiling\tADJ\t_\t_\t5\tamod\t_\t_\n5\tpoint\tpoint\tNOUN\t_\t_\t1\tnsubj\t_\t_\n6\tof\tof\tADP\t_\t_\t7\tcase\t_\t_\n7\twater\twater\tNOUN\t_\t_\t5\tnmod\t_\t_\n8\t?\t?\tSYM\t_\t_\t1\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result17 WHERE {\n\twd:Q283 wdt:P2102 ?result17 .\n} LIMIT 100","platypus:term":"{ ?result17 | <, , ?result17> }","result":{"@type":"xsd:decimal","name":"99.9839","rdf:value":{"@type":"xsd:decimal","@value":"99.9839"}},"resultScore":0.53} +2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result17 WHERE { + wd:Q283 wdt:P2102 ?result17 . +} LIMIT 100 +2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.53 +2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' +2023-10-27 14:02:35.011 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': 'xsd:decimal' found, but no URI can be assigned to this literal datatype. +2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' +2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'resource': Cannot invoke "com.google.gson.JsonElement.getAsString()" because the return value of "com.google.gson.JsonObject.get(String)" is null +2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'boolean' +2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : NOT IMPLEMENTED +2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'boolean': method 'getDataBoolean' is not implemented. +2023-10-27 14:02:35.020 ERROR 31614 --- [nio-5982-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is eu.wdaqua.qanary.component.platypuswrapper.qb.messages.DataNotProcessableException: Data cannot be processed as either 'literal', 'resource' or 'boolean'.] with root cause + +eu.wdaqua.qanary.component.platypuswrapper.qb.messages.DataNotProcessableException: Data cannot be processed as either 'literal', 'resource' or 'boolean'. + at eu.wdaqua.qanary.component.platypuswrapper.qb.messages.PlatypusResult.getData(PlatypusResult.java:115) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.messages.PlatypusResult.initData(PlatypusResult.java:193) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.messages.PlatypusResult.(PlatypusResult.java:78) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:198) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} +2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7deb5ed8 +2023-10-27 14:03:26.087  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql +2023-10-27 14:03:26.087 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:03:26.096  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72159a96 +2023-10-27 14:03:26.096 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:26.097  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:26.098  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:26.105 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf +2023-10-27 14:03:26.105  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql +2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? +2023-10-27 14:03:26.108  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20animal%20participated%20in%20a%20military%20operation%20with%20the%20Australian%20Defence%20Force?&lang=en +2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20animal%20participated%20in%20a%20military%20operation%20with%20the%20Australian%20Defence%20Force?&lang=en +2023-10-27 14:03:26.108  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20animal%20participated%20in%20a%20military%20operation%20with%20the%20Australian%20Defence%20Force?&lang=en +2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520animal%2520participated%2520in%2520a%2520military%2520operation%2520with%2520the%2520Australian%2520Defence%2520Force?&lang=en +2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:26.108  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-381625263 +2023-10-27 14:03:29.872 DEBUG 31614 --- [nio-5982-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3e30e130 +2023-10-27 14:03:29.872 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:03:29.873 ERROR 31614 --- [nio-5982-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

can only concatenate list (not "tuple") to list

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

can only concatenate list (not "tuple") to list

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@502d3485 +2023-10-27 14:03:32.502  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql +2023-10-27 14:03:32.502 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:03:32.514  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15b3ed45 +2023-10-27 14:03:32.515 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:32.518  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:32.518  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:32.524 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e +2023-10-27 14:03:32.524  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql +2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Whom did Clara Westhoff marry? +2023-10-27 14:03:32.526  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Whom%20did%20Clara%20Westhoff%20marry?&lang=en +2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Whom%20did%20Clara%20Westhoff%20marry?&lang=en +2023-10-27 14:03:32.526  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Whom%20did%20Clara%20Westhoff%20marry?&lang=en +2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Whom%2520did%2520Clara%2520Westhoff%2520marry?&lang=en +2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:32.527  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1564413440 +2023-10-27 14:03:38.302 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@53e73de1 +2023-10-27 14:03:38.302 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT +2023-10-27 14:03:38.307 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause + +org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:03:41.357 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6fa5957f +2023-10-27 14:03:41.357 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:41.502 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:03:41.504  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=Whom did Clara Westhoff marry?, lang=en +2023-10-27 14:03:41.504  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... +2023-10-27 14:03:41.506 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhom\twhom\tPRON\t_\t_\t5\tobj\t_\t_\n2\tdid\tdo\tVERB\t_\t_\t5\taux\t_\t_\n3\tClara\tClara\tNOUN\t_\t_\t4\tcompound\t_\t_\n4\tWesthoff\tWesthoff\tNOUN\t_\t_\t5\tnsubj\t_\t_\n5\tmarry\tmarry\tVERB\t_\t_\t0\troot\t_\t_\n6\t?\t?\tSYM\t_\t_\t5\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result9 WHERE {\n\twd:Q462333 wdt:P26 ?result9 .\n} LIMIT 100","platypus:term":"{ ?result9 | <, , ?result9> }","result":{"@id":"wd:Q76483","@reverse":{"spouse":{"@id":"wd:Q462333","@type":"Person","alternateName":[{"@language":"en","@value":"Clara Rilke"},{"@language":"en","@value":"Clara Rilke"},{"@language":"en","@value":"Clara Henriette Sophie Rilke-Westhoff"},{"@language":"en","@value":"Clara Henriette Sophie Rilke-Westhoff"},{"@language":"en","@value":"Clara Rilke-Westhoff"},{"@language":"en","@value":"Clara Rilke-Westhoff"}],"birthDate":{"@type":"xsd:date","@value":"1878-11-21Z"},"birthPlace":{"@id":"wd:Q24879","@type":["AdministrativeArea","Organization","City","Place"],"alternateName":[{"@language":"en","@value":"Hansestadt Bremen"},{"@language":"en","@value":"Hansestadt Bremen"}],"description":{"@language":"en","@value":"city in the Bremen federated state, Germany"},"name":{"@language":"en","@value":"Bremen"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Br%C4%97menas"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Br%C3%AAme"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Brema"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%96%E3%83%AC%E3%83%BC%E3%83%A1%E3%83%B3"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/9c607066-ceb6-4a78-a614-4c14a2b3ec35"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Brema"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/137159715"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2944388"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Br%C3%A9my"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Bremen_%28by%29"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%91%D7%A8%D7%9E%D7%9F"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%89%A5%E1%88%AC%E1%88%98%E1%8A%95"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Bremen_%28kota%29"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E4%B8%8D%E6%9D%A5%E6%A2%85"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A8%D8%B1%D9%85%D9%86"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%92%CF%81%CE%AD%CE%BC%CE%B7"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%AC%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%AE%E0%A5%87%E0%A4%A8"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B9%80%E0%B8%9A%E0%B8%A3%E0%B9%80%E0%B8%A1%E0%B8%B4%E0%B8%99"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Bremen_%28stad%29"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Bremen-Germany"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Br%C3%A9ma_%28telep%C3%BCl%C3%A9s%29"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Br%C3%A9my"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Brema"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Br%C4%93mene"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A8%D8%B1%D9%8A%D9%85%D9%86_%28%D9%85%D8%AF%D9%8A%D9%86%D8%A9%29"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%AC%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%AE%E0%A4%A8"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/017w_"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%B8%8C%EB%A0%88%EB%A9%98"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Bremen"}],"url":{"@type":"xsd:anyURI","@value":"https://www.bremen.de/"}},"children":{"@id":"wd:Q63980725","@type":"Person","alternateName":[{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber"},{"@language":"en","@value":"Ruth Sieber"}],"description":{"@language":"en","@value":"Sieber-Rilke, Ruth, 1901-1972"},"name":{"@language":"en","@value":"Ruth Sieber-Rilke"},"sameAs":{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/74239671"}},"deathDate":{"@type":"xsd:date","@value":"1954-03-09Z"},"deathPlace":{"@id":"wd:Q252834","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Fischerhude"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Fischerhude"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Fischerhude"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/236823582"},{"@type":"xsd:anyURI","@value":"http://www.flickr.com/places/info/649823"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Fischerhude"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%95%E3%82%A3%E3%83%83%E3%82%B7%E3%83%A3%E3%83%95%E3%83%BC%E3%83%87"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Fischerhude"}],"url":{"@type":"xsd:anyURI","@value":"https://www.fischerhude.com/"}},"description":{"@language":"en","@value":"German sculptor"},"gender":{"@id":"Female"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Clara_Westhoff","@type":"Article","articleBody":"Clara Westhoff, also known as Clara Rilke or Clara Rilke-Westhoff was a pioneer German sculptor and artist. She was the wife of poet Rainer Maria Rilke.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Clara Westhoff"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Clara_Rilke-Westhoff.jpg/320px-Clara_Rilke-Westhoff.jpg","height":457,"width":320},"name":{"@language":"en","@value":"Clara Westhoff"},"nationality":{"@id":"wd:Q183","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"BRD"},{"@language":"en","@value":"BRD"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"🇩🇪"},{"@language":"en","@value":"🇩🇪"}],"description":{"@language":"en","@value":"federal parliamentary republic in central-western Europe"},"name":{"@language":"en","@value":"Germany"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/N%C3%A9metorsz%C3%A1g"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%8A%D0%B5%D0%BC%D0%B0%D1%87%D0%BA%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%9C%E0%B2%B0%E0%B3%8D%E0%B2%AE%E0%B2%A8%E0%B2%BF"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Germany"},{"@type":"xsd:anyURI","@value":"http://www.flickr.com/places/info/23424829"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Deutschland"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Njema%C4%8Dka"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Almanya"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Nem%C4%8Dija"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Nemecko"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%92%D7%A8%D7%9E%D7%A0%D7%99%D7%94"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Germany"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Allemagne"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0345h"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Saksamaa"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Ujerumani"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Alemania"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://foursquare.com/v/5c2cabf59cadd9002bc0c090"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BB%A9c"},{"@type":"xsd:anyURI","@value":"http://te.wikipedia.org/wiki/%E0%B0%9C%E0%B0%B0%E0%B1%8D%E0%B0%AE%E0%B0%A8%E0%B1%80"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%9C%E0%AF%86%E0%AE%B0%E0%AF%8D%E0%AE%AE%E0%AE%A9%E0%AE%BF"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%9C%E0%B5%BC%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%A8%E0%B4%BF"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/189116956"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%89%E3%82%A4%E3%83%84"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/85752fda-13c4-31a3-bee5-0e5cb1f51dad"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2921044"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Alemanha"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A2%D9%84%D9%85%D8%A7%D9%86"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Vokietija"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%8F%85%EC%9D%BC"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A3%D9%84%D9%85%D8%A7%D9%86%D9%8A%D8%A7"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8C%80%E1%88%AD%E1%88%98%E1%8A%95"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Niemcy"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://gu.wikipedia.org/wiki/%E0%AA%9C%E0%AA%B0%E0%AB%8D%E0%AA%AE%E0%AA%A8%E0%AB%80"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%9C%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%AE%E0%A6%BE%E0%A6%A8%E0%A6%BF"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B9%80%E0%B8%97%E0%B8%A8%E0%B9%80%E0%B8%A2%E0%B8%AD%E0%B8%A3%E0%B8%A1%E0%B8%99%E0%B8%B5"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/N%C4%9Bmecko"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Duitsland"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/V%C4%81cija"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%93%CE%B5%CF%81%CE%BC%CE%B1%CE%BD%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Saksa"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%BE%B7%E5%9B%BD"}]},"sameAs":[{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/02p3cl"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%92%D0%B5%D1%81%D1%82%D1%85%D0%BE%D1%84%D1%84%2C_%D0%9A%D0%BB%D0%B0%D1%80%D0%B0"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/2525852"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AF%E3%83%A9%E3%83%A9%E3%83%BB%E3%83%B4%E3%82%A7%E3%82%B9%E3%83%88%E3%83%9B%E3%83%95"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Clara_Westhoff"}]}},"@type":"Person","alternateName":[{"@language":"en","@value":"Rainer Mariyah Rilḳeh"},{"@language":"en","@value":"Rainer Mariyah Rilḳeh"},{"@language":"en","@value":"Rene Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"Rene Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"רינר מריה רילקה"},{"@language":"en","@value":"רינר מריה רילקה"},{"@language":"en","@value":"Rainer Maria Rielke"},{"@language":"en","@value":"Rainer Maria Rielke"},{"@language":"en","@value":"René Maria Cäsar Rilke"},{"@language":"en","@value":"René Maria Cäsar Rilke"},{"@language":"en","@value":"ראינר מריה רילקה"},{"@language":"en","@value":"ראינר מריה רילקה"},{"@language":"en","@value":"Rene Rilke"},{"@language":"en","@value":"Rene Rilke"},{"@language":"en","@value":"רץ מ. רילקה"},{"@language":"en","@value":"רץ מ. רילקה"},{"@language":"en","@value":"ר.מ רילקה"},{"@language":"en","@value":"ר.מ רילקה"},{"@language":"en","@value":"René Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"René Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"Rainer Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"Rainer Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"René Rilke"},{"@language":"en","@value":"René Rilke"},{"@language":"en","@value":"ריינר מריה רילקה"},{"@language":"en","@value":"ריינר מריה רילקה"},{"@language":"en","@value":"Rainŏ Maria Rilkʻe"},{"@language":"en","@value":"Rainŏ Maria Rilkʻe"},{"@language":"en","@value":"Li-erh-kʻo"},{"@language":"en","@value":"Li-erh-kʻo"},{"@language":"en","@value":"Reiner Marie Rilke"},{"@language":"en","@value":"Reiner Marie Rilke"}],"birthDate":{"@type":"xsd:date","@value":"1875-12-04Z"},"birthPlace":{"@id":"wd:Q1085","@type":["AdministrativeArea","Organization","City","Place"],"alternateName":[{"@language":"en","@value":"Praha"},{"@language":"en","@value":"Praha"},{"@language":"en","@value":"Hlavní město Praha"},{"@language":"en","@value":"Hlavní město Praha"}],"description":{"@language":"en","@value":"capital city of the Czech Republic"},"name":{"@language":"en","@value":"Prague"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%B8%83%E6%8B%89%E6%A0%BC"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/153543031"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%BE%E0%B4%97%E0%B5%8D"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/0a65a727-7465-4e6c-8b15-ed4d09e021ee"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3%D0%B0"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Praag"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Pr%C3%A1ga"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%ED%94%84%EB%9D%BC%ED%95%98"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A4%BE%E0%A4%97"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%AA%E0%B3%8D%E0%B2%B0%E0%B2%BE%E0%B2%97%E0%B3%8D"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%97%E3%83%A9%E3%83%8F"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Prague"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%BE%D8%B1%D8%A7%DA%AF"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/05ywg"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%97"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Prague-4"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CF%81%CE%AC%CE%B3%CE%B1"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://twitter.com/PrahaEU"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Prague"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A8%D8%B1%D8%A7%D8%BA"},{"@type":"xsd:anyURI","@value":"http://www.facebook.com/Prahaeu"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%A4%D7%A8%D7%90%D7%92"},{"@type":"xsd:anyURI","@value":"http://www.instagram.com/prahaeu"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A4%BE%E0%A4%97"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/3067696"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8D%95%E1%88%AB%E1%8C%8D"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B2%E0%B8%81"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Pr%C4%81ga"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3%D0%B0"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%AA%E0%AE%BF%E0%AE%B0%E0%AE%BE%E0%AE%95%E0%AE%BE"}],"url":{"@type":"xsd:anyURI","@value":"http://www.praha.eu/"}},"children":{"@id":"wd:Q63980725","@type":"Person","alternateName":[{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber"},{"@language":"en","@value":"Ruth Sieber"}],"description":{"@language":"en","@value":"Sieber-Rilke, Ruth, 1901-1972"},"name":{"@language":"en","@value":"Ruth Sieber-Rilke"},"sameAs":{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/74239671"}},"deathDate":{"@type":"xsd:date","@value":"1926-12-29Z"},"deathPlace":{"@id":"wd:Q69354","@type":["AdministrativeArea","Organization","City","Place"],"alternateName":[{"@language":"en","@value":"Montreux VD"},{"@language":"en","@value":"Montreux VD"}],"description":{"@language":"en","@value":"municipality in Switzerland"},"name":{"@language":"en","@value":"Montreux"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D1%91"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%A2%E3%83%B3%E3%83%88%E3%83%AB%E3%83%BC"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D0%B5"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0dlkr"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Montreux_%28Su%C3%AFssa%29"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D0%B5"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%A1%E0%B8%87%E0%B9%80%E0%B8%97%E0%B8%A3%E0%B8%AD"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D1%8C%D0%BE"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%9E%D7%95%D7%A0%D7%98%D7%A8%D7%94"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Montr%C3%B6"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/125490238"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2659601"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%9C%CE%BF%CE%BD%CF%84%CF%81%CE%AD"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Montr%C4%93"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D9%85%D9%88%D9%86%D8%AA%D8%B1%D9%88"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Montreux-Switzerland"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E8%92%99%E7%89%B9%E5%8B%92"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Montr%C4%97"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%85%D9%88%D9%86%D8%AA%D8%B1%D9%88"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%AA%BD%ED%8A%B8%EB%A2%B0"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/d872ed01-edfd-4b39-8ab5-f8b3c84fc001"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Montreux%2C_Swiss"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Montreux_%28%C5%A0vaj%C4%8Diarsko%29"}],"url":{"@type":"xsd:anyURI","@value":"http://www.montreux.ch/"}},"description":{"@language":"en","@value":"Austrian poet and writer"},"gender":{"@id":"Male"},"genre":[{"@id":"wd:Q1226395","@type":"CreativeWork","name":{"@language":"en","@value":"Dinggedicht"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Dinggedicht"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Dinggedicht"}]},{"@id":"wd:Q676","description":{"@language":"en","@value":"form of language which applies ordinary grammatical structure and natural flow of speech"},"name":{"@language":"en","@value":"prose"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Nesir"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%A4%D7%A8%D7%95%D7%96%D7%94"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/V%C4%83n_xu%C3%B4i"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Prose"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Prose"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CE%B5%CE%B6%CE%BF%CE%B3%CF%81%CE%B1%CF%86%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Proosa"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%97%E0%B4%A6%E0%B5%8D%E0%B4%AF%E0%B4%82"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E6%95%A3%E6%96%87"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%89%E0%AE%B0%E0%AF%88%E0%AE%A8%E0%AE%9F%E0%AF%88"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%97%E0%B2%A6%E0%B3%8D%E0%B2%AF"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Nathari"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Pr%C3%B3za"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D9%86%D8%AB%D8%B1"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%97%E0%A4%A6%E0%A5%8D%E0%A4%AF"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Pr%C3%B3za"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Pr%C3%B3za"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Tuluyan"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%A2%E0%B9%81%E0%B8%81%E0%B9%89%E0%B8%A7"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0dq0q"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E6%95%A3%E6%96%87"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Proz%C4%83"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Proosa"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%82%B0%EB%AC%B8"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%97%E0%A6%A6%E0%A7%8D%E0%A6%AF"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Prose"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%86%D8%AB%D8%B1"}]}],"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Rainer_Maria_Rilke","@type":"Article","articleBody":"René Karl Wilhelm Johann Josef Maria Rilke, shortened to Rainer Maria Rilke, was an Austrian poet and novelist. Acclaimed as an idiosyncratic and expressive poet, he is widely recognized as a significant writer in the German language. His work is viewed by critics and scholars as possessing undertones of mysticism, exploring themes of subjective experience and disbelief. His writings include one novel, several collections of poetry and several volumes of correspondence.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Rainer Maria Rilke"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Rainer_Maria_Rilke_1900.jpg/320px-Rainer_Maria_Rilke_1900.jpg","height":512,"width":320},"name":{"@language":"en","@value":"Rainer Maria Rilke"},"nationality":[{"@id":"wd:Q183","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"BRD"},{"@language":"en","@value":"BRD"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"🇩🇪"},{"@language":"en","@value":"🇩🇪"}],"description":{"@language":"en","@value":"federal parliamentary republic in central-western Europe"},"name":{"@language":"en","@value":"Germany"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/N%C3%A9metorsz%C3%A1g"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%8A%D0%B5%D0%BC%D0%B0%D1%87%D0%BA%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%9C%E0%B2%B0%E0%B3%8D%E0%B2%AE%E0%B2%A8%E0%B2%BF"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Germany"},{"@type":"xsd:anyURI","@value":"http://www.flickr.com/places/info/23424829"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Deutschland"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Njema%C4%8Dka"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Almanya"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Nem%C4%8Dija"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Nemecko"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%92%D7%A8%D7%9E%D7%A0%D7%99%D7%94"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Germany"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Allemagne"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0345h"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Saksamaa"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Ujerumani"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Alemania"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://foursquare.com/v/5c2cabf59cadd9002bc0c090"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BB%A9c"},{"@type":"xsd:anyURI","@value":"http://te.wikipedia.org/wiki/%E0%B0%9C%E0%B0%B0%E0%B1%8D%E0%B0%AE%E0%B0%A8%E0%B1%80"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%9C%E0%AF%86%E0%AE%B0%E0%AF%8D%E0%AE%AE%E0%AE%A9%E0%AE%BF"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%9C%E0%B5%BC%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%A8%E0%B4%BF"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/189116956"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%89%E3%82%A4%E3%83%84"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/85752fda-13c4-31a3-bee5-0e5cb1f51dad"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2921044"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Alemanha"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A2%D9%84%D9%85%D8%A7%D9%86"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Vokietija"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%8F%85%EC%9D%BC"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A3%D9%84%D9%85%D8%A7%D9%86%D9%8A%D8%A7"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8C%80%E1%88%AD%E1%88%98%E1%8A%95"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Niemcy"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://gu.wikipedia.org/wiki/%E0%AA%9C%E0%AA%B0%E0%AB%8D%E0%AA%AE%E0%AA%A8%E0%AB%80"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%9C%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%AE%E0%A6%BE%E0%A6%A8%E0%A6%BF"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B9%80%E0%B8%97%E0%B8%A8%E0%B9%80%E0%B8%A2%E0%B8%AD%E0%B8%A3%E0%B8%A1%E0%B8%99%E0%B8%B5"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/N%C4%9Bmecko"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Duitsland"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/V%C4%81cija"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%93%CE%B5%CF%81%CE%BC%CE%B1%CE%BD%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Saksa"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%BE%B7%E5%9B%BD"}]},{"@id":"wd:Q40","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"Republik Österreich"},{"@language":"en","@value":"Republik Österreich"},{"@language":"en","@value":"Republic of Austria"},{"@language":"en","@value":"Republic of Austria"},{"@language":"en","@value":"🇦🇹"},{"@language":"en","@value":"🇦🇹"},{"@language":"en","@value":"AT"},{"@language":"en","@value":"at"},{"@language":"en","@value":"AT"},{"@language":"en","@value":"at"},{"@language":"en","@value":"Österreich"},{"@language":"en","@value":"Österreich"},{"@language":"en","@value":"AUT"},{"@language":"en","@value":"AUT"}],"description":{"@language":"en","@value":"federal republic in western-central Europe"},"name":{"@language":"en","@value":"Austria"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%90%D1%83%D1%81%D1%82%D1%80%D0%B8%D1%98%D0%B0"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%86%E0%B2%B8%E0%B3%8D%E0%B2%9F%E0%B3%8D%E0%B2%B0%E0%B2%BF%E0%B2%AF"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2782113"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A7%D9%84%D9%86%D9%85%D8%B3%D8%A7"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/%C3%81ustria"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Oostenrijk"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/It%C3%A4valta"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Avusturya"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%90%D7%95%D7%A1%D7%98%D7%A8%D7%99%D7%94"},{"@type":"xsd:anyURI","@value":"http://te.wikipedia.org/wiki/%E0%B0%86%E0%B0%B8%E0%B1%8D%E0%B0%9F%E0%B1%8D%E0%B0%B0%E0%B0%BF%E0%B0%AF%E0%B0%BE"},{"@type":"xsd:anyURI","@value":"http://gu.wikipedia.org/wiki/%E0%AA%91%E0%AA%B8%E0%AB%8D%E0%AA%9F%E0%AB%8D%E0%AA%B0%E0%AA%BF%E0%AA%AF%E0%AA%BE"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Austrija"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B9%80%E0%B8%97%E0%B8%A8%E0%B8%AD%E0%B8%AD%E0%B8%AA%E0%B9%80%E0%B8%95%E0%B8%A3%E0%B8%B5%E0%B8%A2"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/%C3%80ustria"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Autriche"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%91%CF%85%CF%83%CF%84%CF%81%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8A%A6%E1%88%B5%E1%89%B5%E1%88%AA%E1%8B%AB"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/%C3%98strig"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0h7x"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%86%E0%AE%B8%E0%AF%8D%E0%AE%A4%E0%AE%BF%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%BE"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%93%E0%B4%B8%E0%B5%8D%E0%B4%9F%E0%B5%8D%E0%B4%B0%E0%B4%BF%E0%B4%AF"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%BC%E3%82%B9%E3%83%88%E3%83%AA%E3%82%A2"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/%C3%98sterrike"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D8%AA%D8%B1%DB%8C%D8%B4"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/caac77d1-a5c8-3e6e-8e27-90b44dcc1446"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Austrija"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Avstrija"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Rakousko"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Austria"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Austrija"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/%C3%96sterreich"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%A5%A5%E5%9C%B0%E5%88%A9"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/148842731"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Rak%C3%BAsko"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%85%E0%A6%B8%E0%A7%8D%E0%A6%9F%E0%A7%8D%E0%A6%B0%E0%A6%BF%E0%A6%AF%E0%A6%BC%E0%A6%BE"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C3%81o"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/%C3%96sterrike"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Ausztria"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D1%96%D1%8F"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%98%A4%EC%8A%A4%ED%8A%B8%EB%A6%AC%EC%95%84"}]},{"@id":"wd:Q28513","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"Austro-Hungarian Empire"},{"@language":"en","@value":"Austro-Hungarian Empire"},{"@language":"en","@value":"Austria Hungary"},{"@language":"en","@value":"Austria Hungary"},{"@language":"en","@value":"Dual Monarchy"},{"@language":"en","@value":"Dual Monarchy"}],"description":{"@language":"en","@value":"constitutional monarchic union from 1867 to October 1918"},"name":{"@language":"en","@value":"Austria-Hungary"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE-%E0%A4%B9%E0%A4%82%E0%A4%97%E0%A4%B0%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Autriche-Hongrie"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/It%C3%A4valta-Unkari"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Imperium_Austro-Hungaricum"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8A%A6%E1%88%B5%E1%89%B5%E1%88%AA%E1%8B%AB-%E1%88%80%E1%8A%95%E1%8C%8B%E1%88%AA"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D8%AA%D8%B1%DB%8C%D8%B4-%D9%85%D8%AC%D8%A7%D8%B1%D8%B3%D8%AA%D8%A7%D9%86"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Austro-Ungaria"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/%C3%98sterrike-Ungarn"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%90%D1%83%D1%81%D1%82%D1%80%D0%BE%D1%83%D0%B3%D0%B0%D1%80%D1%81%D0%BA%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%BC%E3%82%B9%E3%83%88%E3%83%AA%E3%82%A2%EF%BC%9D%E3%83%8F%E3%83%B3%E3%82%AC%E3%83%AA%E3%83%BC%E5%B8%9D%E5%9B%BD"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Austria-Hongaria"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Austria-Hungaria"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%88%E0%B8%B1%E0%B8%81%E0%B8%A3%E0%B8%A7%E0%B8%A3%E0%B8%A3%E0%B8%94%E0%B8%B4%E0%B8%AD%E0%B8%AD%E0%B8%AA%E0%B9%80%E0%B8%95%E0%B8%A3%E0%B8%B5%E0%B8%A2-%E0%B8%AE%E0%B8%B1%E0%B8%87%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%B5"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Avusturya-Macaristan_%C4%B0mparatorlu%C4%9Fu"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Avstro-Ogrska"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Rak%C3%BAsko-Uhorsko"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Rakousko-Uhersko"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/%C3%96sterreich-Ungarn"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/%C3%98strig-Ungarn"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Austrija-Vengrija"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%86%E0%AE%A4%E0%AF%8D%E0%AE%A4%E0%AE%BF%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%BE-%E0%AE%85%E0%AE%99%E0%AF%8D%E0%AE%95%E0%AF%87%E0%AE%B0%E0%AE%BF"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%98%A4%EC%8A%A4%ED%8A%B8%EB%A6%AC%EC%95%84-%ED%97%9D%EA%B0%80%EB%A6%AC_%EC%A0%9C%EA%B5%AD"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Impero_austro-ungarico"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE-%E0%A4%B9%E0%A4%82%E0%A4%97%E0%A5%87%E0%A4%B0%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%85%E0%A6%B8%E0%A7%8D%E0%A6%9F%E0%A7%8D%E0%A6%B0%E0%A6%BF%E0%A6%AF%E0%A6%BC%E0%A6%BE-%E0%A6%B9%E0%A6%BE%E0%A6%99%E0%A7%8D%E0%A6%97%E0%A7%87%E0%A6%B0%E0%A6%BF"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Austria-Ungari"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%86%E0%B4%B8%E0%B5%8D%E0%B4%9F%E0%B5%8D%E0%B4%B0%E0%B5%8B-%E0%B4%B9%E0%B4%99%E0%B5%8D%E0%B4%95%E0%B5%87%E0%B4%B1%E0%B4%BF%E0%B4%AF%E0%B5%BB_%E0%B4%B8%E0%B4%BE%E0%B4%AE%E0%B5%8D%E0%B4%B0%E0%B4%BE%E0%B4%9C%E0%B5%8D%E0%B4%AF%E0%B4%82"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%94%D7%90%D7%99%D7%9E%D7%A4%D7%A8%D7%99%D7%94_%D7%94%D7%90%D7%95%D7%A1%D7%98%D7%A8%D7%95-%D7%94%D7%95%D7%A0%D7%92%D7%A8%D7%99%D7%AA"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BA%BF_qu%E1%BB%91c_%C3%81o-Hung"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/%C3%96sterrike-Ungern"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Oostenrijk-Hongarije"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%91%CF%85%CF%83%CF%84%CF%81%CE%BF%CE%BF%CF%85%CE%B3%CE%B3%CE%B1%CF%81%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Austroung%C4%81rija"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Osztr%C3%A1k%E2%80%93Magyar_Monarchia"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%BE-%D0%A3%D0%BD%D0%B3%D0%B0%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Imperio_austroh%C3%BAngaro"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%BE-%D0%92%D0%B5%D0%BD%D0%B3%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%A5%A5%E5%8C%88%E5%B8%9D%E5%9B%BD"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Austro-W%C4%99gry"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%BE-%D0%A3%D0%B3%D0%BE%D1%80%D1%89%D0%B8%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A7%D9%84%D8%A5%D9%85%D8%A8%D8%B1%D8%A7%D8%B7%D9%88%D8%B1%D9%8A%D8%A9_%D8%A7%D9%84%D9%86%D9%85%D8%B3%D8%A7%D9%88%D9%8A%D8%A9_%D8%A7%D9%84%D9%85%D8%AC%D8%B1%D9%8A%D8%A9"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/012m_"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/%C3%81ustria-Hungria"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Austro-Ugarska"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/140196500"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Imperi_Austrohongar%C3%A8s"}]}],"sameAs":[{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%A0%D0%B0%D0%B9%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D1%96%D1%8F_%D0%A0%D1%96%D0%BB%D1%8C%D0%BA%D0%B5"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A1%CE%AC%CE%B9%CE%BD%CE%B5%CF%81_%CE%9C%CE%B1%CF%81%CE%AF%CE%B1_%CE%A1%CE%AF%CE%BB%CE%BA%CE%B5"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E8%8E%B1%E7%BA%B3%C2%B7%E7%8E%9B%E5%88%A9%E4%BA%9A%C2%B7%E9%87%8C%E5%B0%94%E5%85%8B"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/46897170"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%B1%D8%A7%D9%8A%D9%86%D8%B1_%D9%85%D8%A7%D8%B1%D9%8A%D8%A7_%D8%B1%D9%8A%D9%84%D9%83%D9%87"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Rainerius_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%A0%D0%B0%D1%98%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D0%B8%D1%98%D0%B0_%D0%A0%D0%B8%D0%BB%D0%BA%D0%B5"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%B0%E0%A4%BE%E0%A4%AF%E0%A4%A8%E0%A4%B0_%E0%A4%AE%E0%A4%BE%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE_%E0%A4%B0%E0%A4%BF%E0%A4%B2%E0%A5%8D%E0%A4%95%E0%A5%87"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%A8%D7%99%D7%99%D7%A0%D7%A8_%D7%9E%D7%A8%D7%99%D7%94_%D7%A8%D7%99%D7%9C%D7%A7%D7%94"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%A0%D0%B0%D0%B9%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D0%B8%D1%8F_%D0%A0%D0%B8%D0%BB%D0%BA%D0%B5"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%A9%E3%82%A4%E3%83%8A%E3%83%BC%E3%83%BB%E3%83%9E%E3%83%AA%E3%82%A2%E3%83%BB%E3%83%AA%E3%83%AB%E3%82%B1"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%A0%D0%B8%D0%BB%D1%8C%D0%BA%D0%B5%2C_%D0%A0%D0%B0%D0%B9%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Rainers_Marija_Rilke"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%9D%BC%EC%9D%B4%EB%84%88_%EB%A7%88%EB%A6%AC%EC%95%84_%EB%A6%B4%EC%BC%80"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%B0%E0%AF%86%E0%AE%AF%E0%AF%8D%E0%AE%A9%E0%AE%B0%E0%AF%8D_%E0%AE%AE%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%BE_%E0%AE%B0%E0%AE%BF%E0%AE%B2%E0%AF%8D%E0%AE%95%E0%AF%87"},{"@type":"xsd:anyURI","@value":"http://www.discogs.com/artist/558104"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%B1%D8%A7%DB%8C%D9%86%D8%B1_%D9%85%D8%A7%D8%B1%DB%8C%D8%A7_%D8%B1%DB%8C%D9%84%DA%A9%D9%87"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/artist/372abcd1-0367-41fd-8bcc-efe2b7c1c8bf"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Rainer-Maria-Rilke"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/06l0f"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%B0%E0%A6%BE%E0%A6%87%E0%A6%A8%E0%A6%BE%E0%A6%B0_%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A6%BF%E0%A6%AF%E0%A6%BC%E0%A6%BE_%E0%A6%B0%E0%A6%BF%E0%A6%B2%E0%A6%95%E0%A7%87"}],"url":{"@type":"xsd:anyURI","@value":"http://www.rilke.de/"}},"resultScore":0.13} +2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result9 WHERE { + wd:Q462333 wdt:P26 ?result9 . +} LIMIT 100 +2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.13 +2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' +2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null +2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' +2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: http://www.wikidata.org/entity/Q76483 (http://www.w3.org/2001/XMLSchema#anyURI) +2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' +2023-10-27 14:03:41.517 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e +2023-10-27 14:03:41.517 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "wd:Q76483" )( ?confidence, "0.13"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" )( ?graph, ) +2023-10-27 14:03:41.518  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@576e29b3 +2023-10-27 14:03:41.518 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (now() as ?time) . +} +2023-10-27 14:03:41.520  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" . + ?newAnnotation qa:score "0.13"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 14:03:41.520  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" . + ?newAnnotation qa:score "0.13"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 14:03:41.520  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6edea6c7 +2023-10-27 14:03:41.520 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: +PREFIX oa: +PREFIX qa: +PREFIX rdf: +PREFIX xsd: + +INSERT { +GRAPH ?graph { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget ?targetQuestion . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score ?confidence . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy ?application . + + ?answer rdf:type qa:Answer . + ?answer rdf:value ?answerValue . + + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget ?targetQuestion . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score ?confidence . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy ?application . + + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value ?answerDataType . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?newAnnotation) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (now() as ?time) . +} +2023-10-27 14:03:41.525  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.13"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q76483" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.13"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 14:03:41.526  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.13"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q76483" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.13"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 14:03:41.526 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" . + ?newAnnotation qa:score "0.13"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(now() AS ?time) + } + +2023-10-27 14:03:41.533 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: +PREFIX dbr: +PREFIX rdf: + +INSERT { + GRAPH { + ?newAnnotation rdf:type qa:AnnotationAnswer . + ?newAnnotation oa:hasTarget . + ?newAnnotation oa:hasBody ?answer . + ?newAnnotation qa:score "0.13"^^xsd:double . + ?newAnnotation oa:annotatedAt ?time . + ?newAnnotation oa:annotatedBy . + ?answer rdf:type qa:Answer . + ?answer rdf:value "wd:Q76483" . + ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . + ?newTypeAnnotation oa:hasTarget . + ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . + ?newTypeAnnotation qa:score "0.13"^^xsd:double . + ?newTypeAnnotation oa:annotatedAt ?time . + ?newTypeAnnotation oa:annotatedBy . + ?answerType rdf:type qa:AnswerType . + ?answerType rdf:value xsd:anyURI . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?newAnnotation) + BIND(IRI(str(rand())) AS ?answer) + BIND(IRI(str(rand())) AS ?newTypeAnnotation) + BIND(IRI(str(rand())) AS ?answerType) + BIND(now() AS ?time) + } + +2023-10-27 14:03:41.539 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : processing took: 9047 ms +2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} +2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@16d3171c +2023-10-27 14:03:48.317  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql +2023-10-27 14:03:48.317 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:03:48.427  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d8066f3 +2023-10-27 14:03:48.427 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:48.432  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:48.432  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:48.443 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 +2023-10-27 14:03:48.443  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql +2023-10-27 14:03:48.445 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? +2023-10-27 14:03:48.448  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=who%20is%20the%20youngested%20member%20in%20g-idle?&lang=en +2023-10-27 14:03:48.448 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=who%20is%20the%20youngested%20member%20in%20g-idle?&lang=en +2023-10-27 14:03:48.448  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=who%20is%20the%20youngested%20member%20in%20g-idle?&lang=en +2023-10-27 14:03:48.449 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=who%2520is%2520the%2520youngested%2520member%2520in%2520g-idle?&lang=en +2023-10-27 14:03:48.449 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:48.452  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-973931141 +2023-10-27 14:04:05.352 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16aae182 +2023-10-27 14:04:05.353 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:04:05.353 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:04:20.363  INFO 31614 --- [nio-5982-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:20.364  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:20.364  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} +2023-10-27 14:04:20.364  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@3c645e75 +2023-10-27 14:04:20.372  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql +2023-10-27 14:04:20.372 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:04:20.382  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32a3b789 +2023-10-27 14:04:20.382 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:20.383  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:20.384  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:20.389 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd +2023-10-27 14:04:20.389  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql +2023-10-27 14:04:20.390 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? +2023-10-27 14:04:20.391  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20titles%20of%20the%20Star%20Wars%20series%20movies?&lang=en +2023-10-27 14:04:20.391 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20titles%20of%20the%20Star%20Wars%20series%20movies?&lang=en +2023-10-27 14:04:20.391  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20titles%20of%20the%20Star%20Wars%20series%20movies?&lang=en +2023-10-27 14:04:20.391 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520are%2520the%2520titles%2520of%2520the%2520Star%2520Wars%2520series%2520movies?&lang=en +2023-10-27 14:04:20.391 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:04:20.391  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1677040593 +2023-10-27 14:04:26.242 DEBUG 31614 --- [nio-5982-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@739ebdb2 +2023-10-27 14:04:26.242 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:04:26.243 ERROR 31614 --- [nio-5982-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} +2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@47959d3d +2023-10-27 14:05:01.499  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql +2023-10-27 14:05:01.499 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:05:01.506  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f4d3d2f +2023-10-27 14:05:01.507 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:01.507  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:01.507  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:01.512 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b +2023-10-27 14:05:01.512  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql +2023-10-27 14:05:01.513 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? +2023-10-27 14:05:01.514  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20spouses%20do%20head%20of%20states%20have%20on%20average?&lang=en +2023-10-27 14:05:01.514 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20spouses%20do%20head%20of%20states%20have%20on%20average?&lang=en +2023-10-27 14:05:01.514  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20spouses%20do%20head%20of%20states%20have%20on%20average?&lang=en +2023-10-27 14:05:01.514 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520spouses%2520do%2520head%2520of%2520states%2520have%2520on%2520average?&lang=en +2023-10-27 14:05:01.514 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:05:01.514  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1605027937 +2023-10-27 14:05:09.318  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:05:09.318  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:05:09.319  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} +2023-10-27 14:05:09.319  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@640da79c +2023-10-27 14:05:09.325  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql +2023-10-27 14:05:09.325 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:05:09.334  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2740d80f +2023-10-27 14:05:09.335 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:09.336  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:09.336  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:09.341 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b +2023-10-27 14:05:09.342  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql +2023-10-27 14:05:09.343 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? +2023-10-27 14:05:09.343  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20the%20Chicago%20Bulls%20win%20at%20least%20two%20seasons%20of%20the%20NBA%20championship?&lang=en +2023-10-27 14:05:09.343 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Did%20the%20Chicago%20Bulls%20win%20at%20least%20two%20seasons%20of%20the%20NBA%20championship?&lang=en +2023-10-27 14:05:09.343  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20the%20Chicago%20Bulls%20win%20at%20least%20two%20seasons%20of%20the%20NBA%20championship?&lang=en +2023-10-27 14:05:09.344 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Did%2520the%2520Chicago%2520Bulls%2520win%2520at%2520least%2520two%2520seasons%2520of%2520the%2520NBA%2520championship?&lang=en +2023-10-27 14:05:09.344 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:05:09.344  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=467978128 +2023-10-27 14:05:31.419 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1a362884 +2023-10-27 14:05:31.419 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:05:31.420 ERROR 31614 --- [nio-5982-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7bf70593 +2023-10-27 14:05:33.971  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql +2023-10-27 14:05:33.971 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:05:33.978  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18a85873 +2023-10-27 14:05:33.978 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:33.979  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:33.979  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:33.984 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:33.984  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql +2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 14:05:33.986  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20which%20language%20does%20the%20united%20stated%20have%20the%20shortest%20short%20name?&lang=en +2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=in%20which%20language%20does%20the%20united%20stated%20have%20the%20shortest%20short%20name?&lang=en +2023-10-27 14:05:33.986  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20which%20language%20does%20the%20united%20stated%20have%20the%20shortest%20short%20name?&lang=en +2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=in%2520which%2520language%2520does%2520the%2520united%2520stated%2520have%2520the%2520shortest%2520short%2520name?&lang=en +2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:05:33.986  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1298772006 +2023-10-27 14:05:46.355 DEBUG 31614 --- [nio-5982-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@a37e520 +2023-10-27 14:05:46.355 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT +2023-10-27 14:05:46.356 ERROR 31614 --- [nio-5982-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause + +org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@42a72f86 +2023-10-27 14:06:07.244  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql +2023-10-27 14:06:07.244 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:06:07.254  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15441eca +2023-10-27 14:06:07.255 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:07.256  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:07.256  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:07.261 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:07.261  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql +2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many poems did Allen Ginsberg published? +2023-10-27 14:06:07.263  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20poems%20did%20Allen%20Ginsberg%20published?&lang=en +2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20poems%20did%20Allen%20Ginsberg%20published?&lang=en +2023-10-27 14:06:07.263  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20poems%20did%20Allen%20Ginsberg%20published?&lang=en +2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520poems%2520did%2520Allen%2520Ginsberg%2520published?&lang=en +2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:06:07.264  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=172080413 +2023-10-27 14:06:34.156 DEBUG 31614 --- [nio-5982-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@40e7970b +2023-10-27 14:06:34.156 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:06:34.157 ERROR 31614 --- [nio-5982-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:06:40.762  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.763  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.763  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} +2023-10-27 14:06:40.763  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@530f51d +2023-10-27 14:06:40.771  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql +2023-10-27 14:06:40.771 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:06:40.779  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f52d86f +2023-10-27 14:06:40.779 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:40.780  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.780  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:40.787 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 +2023-10-27 14:06:40.787  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql +2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? +2023-10-27 14:06:40.789  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20female%20Chinese%20Empresses%20have%20there%20been?&lang=en +2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20female%20Chinese%20Empresses%20have%20there%20been?&lang=en +2023-10-27 14:06:40.789  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20female%20Chinese%20Empresses%20have%20there%20been?&lang=en +2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520female%2520Chinese%2520Empresses%2520have%2520there%2520been?&lang=en +2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:06:40.789  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=993915621 +2023-10-27 14:06:41.674 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4d8f2bcb +2023-10-27 14:06:41.674 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:06:41.674 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7aee92c9 +2023-10-27 14:07:20.043  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql +2023-10-27 14:07:20.044 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:07:20.056  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@271f8e3d +2023-10-27 14:07:20.056 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:20.056  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:20.057  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:20.061 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:20.062  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql +2023-10-27 14:07:20.063 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:20.063  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en +2023-10-27 14:07:20.063 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en +2023-10-27 14:07:20.064  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en +2023-10-27 14:07:20.064 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520started%2520first:%2520impressionism%2520or%2520expressionism%2520(art%2520movements)?&lang=en +2023-10-27 14:07:20.064 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:07:20.064  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2146761926 +2023-10-27 14:07:21.261 DEBUG 31614 --- [nio-5982-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@219171c6 +2023-10-27 14:07:21.261 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:07:21.264 ERROR 31614 --- [nio-5982-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} +2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@33fc5040 +2023-10-27 14:07:24.022  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql +2023-10-27 14:07:24.022 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:07:24.029  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@b26cd1a +2023-10-27 14:07:24.029 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:24.030  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:24.030  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:24.034 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 +2023-10-27 14:07:24.034  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql +2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? +2023-10-27 14:07:24.036  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=In%20how%20many%20movies%20did%20Carey%20Mulligan%20and%20Ryan%20Gosling%20star%20together?&lang=en +2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=In%20how%20many%20movies%20did%20Carey%20Mulligan%20and%20Ryan%20Gosling%20star%20together?&lang=en +2023-10-27 14:07:24.036  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=In%20how%20many%20movies%20did%20Carey%20Mulligan%20and%20Ryan%20Gosling%20star%20together?&lang=en +2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=In%2520how%2520many%2520movies%2520did%2520Carey%2520Mulligan%2520and%2520Ryan%2520Gosling%2520star%2520together?&lang=en +2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:07:24.036  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1108552199 +2023-10-27 14:07:31.497 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6ff890c7 +2023-10-27 14:07:31.497 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:07:31.498 ERROR 31614 --- [nio-5982-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:08:10.083  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:10.084  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:10.084  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:10.084  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@36fd9f57 +2023-10-27 14:08:10.092  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql +2023-10-27 14:08:10.092 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:08:10.103  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@73d5cf45 +2023-10-27 14:08:10.103 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:10.104  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:10.104  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:10.109 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:10.109  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql +2023-10-27 14:08:10.110 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? +2023-10-27 14:08:10.110  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20caused%20Kobe%20Bryant's%20Death?&lang=en +2023-10-27 14:08:10.110 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20caused%20Kobe%20Bryant's%20Death?&lang=en +2023-10-27 14:08:10.110  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20caused%20Kobe%20Bryant's%20Death?&lang=en +2023-10-27 14:08:10.111 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520caused%2520Kobe%2520Bryant's%2520Death?&lang=en +2023-10-27 14:08:10.111 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:08:10.111  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-119898012 +2023-10-27 14:08:13.798 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@25fc326c +2023-10-27 14:08:13.798 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:08:13.799 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@32af6fc7 +2023-10-27 14:08:29.423  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql +2023-10-27 14:08:29.423 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:08:29.437  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19b62d01 +2023-10-27 14:08:29.437 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:29.438  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.439  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.445 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:29.445  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql +2023-10-27 14:08:29.447 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:29.447  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en +2023-10-27 14:08:29.447 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en +2023-10-27 14:08:29.448  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en +2023-10-27 14:08:29.448 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520started%2520first:%2520impressionism%2520or%2520expressionism%2520(art%2520movements)?&lang=en +2023-10-27 14:08:29.448 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:08:29.453 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@219171c6 +2023-10-27 14:08:29.454 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:08:29.455 ERROR 31614 --- [nio-5982-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:09:13.761  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.762  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.762  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} +2023-10-27 14:09:13.762  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@5458dc55 +2023-10-27 14:09:13.775  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql +2023-10-27 14:09:13.775 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:09:13.792  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@69ab95d9 +2023-10-27 14:09:13.792 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:13.793  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:13.793  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:13.799 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 +2023-10-27 14:09:13.799  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql +2023-10-27 14:09:13.801 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? +2023-10-27 14:09:13.802  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20creator%20of%20saturday%20night%20live%20born?&lang=en +2023-10-27 14:09:13.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20creator%20of%20saturday%20night%20live%20born?&lang=en +2023-10-27 14:09:13.802  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20creator%20of%20saturday%20night%20live%20born?&lang=en +2023-10-27 14:09:13.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=when%2520was%2520the%2520creator%2520of%2520saturday%2520night%2520live%2520born?&lang=en +2023-10-27 14:09:13.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:09:13.803  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-603999781 +2023-10-27 14:09:48.949  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:09:48.950  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:09:48.950  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} +2023-10-27 14:09:48.950  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@225341e5 +2023-10-27 14:09:48.960  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql +2023-10-27 14:09:48.960 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en +2023-10-27 14:09:48.971  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66bb2273 +2023-10-27 14:09:48.971 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:48.972  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:48.973  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:48.977 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 +2023-10-27 14:09:48.978  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql +2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? +2023-10-27 14:09:48.980  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20came%20first:%20the%20TV%20show%20The%20Flintstones%20or%20the%20end%20of%20racial%20discrimination%20in%20voting%20in%20the%20US%20?&lang=en +2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20came%20first:%20the%20TV%20show%20The%20Flintstones%20or%20the%20end%20of%20racial%20discrimination%20in%20voting%20in%20the%20US%20?&lang=en +2023-10-27 14:09:48.980  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20came%20first:%20the%20TV%20show%20The%20Flintstones%20or%20the%20end%20of%20racial%20discrimination%20in%20voting%20in%20the%20US%20?&lang=en +2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520came%2520first:%2520the%2520TV%2520show%2520The%2520Flintstones%2520or%2520the%2520end%2520of%2520racial%2520discrimination%2520in%2520voting%2520in%2520the%2520US%2520?&lang=en +2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:09:48.980  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1557397273 +2023-10-27 14:09:49.752 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@55f31d75 +2023-10-27 14:09:49.752 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:09:49.754 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:09:59.551 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@78248c9d +2023-10-27 14:09:59.551 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR +2023-10-27 14:09:59.553 ERROR 31614 --- [nio-5982-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause + +org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:10:02.047 DEBUG 31614 --- [nio-5982-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1d33f176 +2023-10-27 14:10:02.047 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT +2023-10-27 14:10:02.049 ERROR 31614 --- [nio-5982-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause + +org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:10:34.042 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@59cf1c15 +2023-10-27 14:10:34.042 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT +2023-10-27 14:10:34.044 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause + +org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" + at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + diff --git a/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties b/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties index 43a433d26..eff27953c 100644 --- a/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties +++ b/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties @@ -1,5 +1,5 @@ # Update the port number -server.port=5555 +server.port=5982 spring.application.name=PlatypusQueryBuilder spring.application.description=${spring.application.name} is a Qanary component # Update the URL of the Qanary pipeline diff --git a/qanary-component-QB-Sina/nohup.out b/qanary-component-QB-Sina/nohup.out new file mode 100644 index 000000000..fcddd9228 --- /dev/null +++ b/qanary-component-QB-Sina/nohup.out @@ -0,0 +1,7274 @@ + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +SINA -- SINA is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.4 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:09:22.297  INFO 9653 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 9653 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) +2023-10-27 12:09:22.355 DEBUG 9653 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.358  INFO 9653 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:45.844  INFO 9653 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 12:09:45.854  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3185fa6b +2023-10-27 12:09:45.855  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d366c9b +2023-10-27 12:09:45.855  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b58ed3c +2023-10-27 12:09:45.856  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24faea88 +2023-10-27 12:09:45.989  INFO 9653 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 12:09:45.993  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@649725e3 +2023-10-27 12:09:45.994  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c0fae6c +2023-10-27 12:09:45.994  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c168660 +2023-10-27 12:09:45.994  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52b56a3e +2023-10-27 12:09:46.024  INFO 9653 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@36b0fcd5 +2023-10-27 12:09:46.059  INFO 9653 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8098 +spring.application.name = SINA +spring.application.description = SINA is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:46.133  INFO 9653 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl +2023-10-27 12:09:50.200  WARN 9653 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:50.377  WARN 9653 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:50.941  WARN 9653 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:51.029  INFO 9653 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:09:58.470  INFO 9653 --- [ main] e.w.q.component.sina.qb.Application  : Started Application in 40.564 seconds (JVM running for 47.577) +2023-10-27 12:09:59.065  WARN 9653 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=SINA, managementUrl=http://0.0.0.0:8098/actuator, healthUrl=http://0.0.0.0:8098/actuator/health, serviceUrl=http://0.0.0.0:8098/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:08.575  INFO 9653 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 0e086d39612b + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +SINA -- SINA is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.4 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 12:15:51.787  INFO 11766 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 11766 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) +2023-10-27 12:15:51.797 DEBUG 11766 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:51.798  INFO 11766 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:25.548  INFO 11766 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 12:16:25.609  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3185fa6b +2023-10-27 12:16:25.612  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d366c9b +2023-10-27 12:16:25.613  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b58ed3c +2023-10-27 12:16:25.615  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24faea88 +2023-10-27 12:16:25.934  INFO 11766 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 12:16:25.937  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c168660 +2023-10-27 12:16:25.937  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52b56a3e +2023-10-27 12:16:25.937  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fd0e5b6 +2023-10-27 12:16:25.942  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4eed46ee +2023-10-27 12:16:25.983  INFO 11766 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@475835b1 +2023-10-27 12:16:26.108  INFO 11766 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8098 +spring.application.name = SINA +spring.application.description = SINA is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:26.375  INFO 11766 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl +2023-10-27 12:16:32.573  WARN 11766 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:32.823  WARN 11766 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:33.773  WARN 11766 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:33.949  INFO 11766 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:16:44.566  WARN 11766 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8098 is already in use +2023-10-27 12:16:44.920 ERROR 11766 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8098 was already in use. + +Action: + +Identify and stop the process that's listening on port 8098 or configure this application to listen on another port. + +2023-10-27 13:37:18.579  WARN 9653 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=SINA, managementUrl=http://0.0.0.0:8098/actuator, healthUrl=http://0.0.0.0:8098/actuator/health, serviceUrl=http://0.0.0.0:8098/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": localhost:8080 failed to respond; nested exception is org.apache.http.NoHttpResponseException: localhost:8080 failed to respond. Further attempts are logged on DEBUG level + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +SINA -- SINA is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.4 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:37:48.086  INFO 28733 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 28733 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) +2023-10-27 13:37:48.129 DEBUG 28733 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:48.143  INFO 28733 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:11.755  INFO 28733 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 13:38:11.778  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63648ee9 +2023-10-27 13:38:11.779  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68d6972f +2023-10-27 13:38:11.780  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45be7cd5 +2023-10-27 13:38:11.780  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7651218e +2023-10-27 13:38:12.423  INFO 28733 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 13:38:12.424  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@743cb8e0 +2023-10-27 13:38:12.425  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c7a975a +2023-10-27 13:38:12.425  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c1b9e4b +2023-10-27 13:38:12.425  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@757d6814 +2023-10-27 13:38:12.434  INFO 28733 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@4c168660 +2023-10-27 13:38:12.575  INFO 28733 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8098 +spring.application.name = SINA +spring.application.description = SINA is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:12.767  INFO 28733 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl +2023-10-27 13:38:17.336  WARN 28733 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:17.554  WARN 28733 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:18.010  WARN 28733 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:18.029  INFO 28733 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:38:26.793  WARN 28733 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8098 is already in use +2023-10-27 13:38:27.347 ERROR 28733 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8098 was already in use. + +Action: + +Identify and stop the process that's listening on port 8098 or configure this application to listen on another port. + + +       .-==--===-:                                                                                             +     :===:  : .-===:                                                                                           +    ====.   .   .-==-                                                                                          +   ====.        .-===:                                                                                         +  -==:         .=====-        ...                     ..              ..                                       +  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. + ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  +  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  + -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   +-====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   +=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    +=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    +.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    + .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     +    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     +            -======.                                                                          .:.  .:::::      +              ....                                                                           .:.   :::::.      +                                                                                             .::..:::::.       +                                                                                               .::::..         + + +SINA -- SINA is a Qanary component +Framework@GitHub: https://github.com/WDAqua/Qanary +Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components +Component Version: 3.2.4 +Spring Boot Version: 2.6.7 +Qanary System endpoint: http://localhost:8080  + +2023-10-27 13:38:54.530  INFO 30124 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 30124 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) +2023-10-27 13:38:54.604 DEBUG 30124 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:54.611  INFO 30124 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:19.818  INFO 30124 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 13:39:19.821  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3185fa6b +2023-10-27 13:39:19.853  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d366c9b +2023-10-27 13:39:19.854  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b58ed3c +2023-10-27 13:39:19.860  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24faea88 +2023-10-27 13:39:20.069  INFO 30124 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar +2023-10-27 13:39:20.070  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@649725e3 +2023-10-27 13:39:20.079  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c0fae6c +2023-10-27 13:39:20.080  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c168660 +2023-10-27 13:39:20.080  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52b56a3e +2023-10-27 13:39:20.086  INFO 30124 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@36b0fcd5 +2023-10-27 13:39:20.127  INFO 30124 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8098 +spring.application.name = SINA +spring.application.description = SINA is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:20.234  INFO 30124 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl +2023-10-27 13:39:25.337  WARN 30124 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:25.540  WARN 30124 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:26.305  WARN 30124 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:26.483  INFO 30124 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:39:35.407  WARN 30124 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8098 is already in use +2023-10-27 13:39:35.594 ERROR 30124 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8098 was already in use. + +Action: + +Identify and stop the process that's listening on port 8098 or configure this application to listen on another port. + +2023-10-27 13:53:12.490  INFO 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:12.510  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:12.601  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:12.723  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@48ca723 +2023-10-27 13:53:12.830  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@548c10df +2023-10-27 13:53:12.846 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:53:13.051  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:13.052  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:53:13.377 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:13.378  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql +2023-10-27 13:53:13.391 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? +2023-10-27 13:53:13.392  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What did the suffragettes stand for? +2023-10-27 13:53:13.392  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5100e830 +2023-10-27 13:53:13.392 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:53:13.397  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:53:13.398  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:53:13.440  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/String_theory start:0 end:4 +2023-10-27 13:53:13.440  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Suffragette start:13 end:25 +2023-10-27 13:53:13.447 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:13.447  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a34f2a6 +2023-10-27 13:53:13.448 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:53:13.453  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:53:13.453  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:53:13.465  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/elevation +2023-10-27 13:53:13.465  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f40a863 +2023-10-27 13:53:13.466 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:53:13.467  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:53:13.468  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:53:13.477  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/String_theory, http://dbpedia.org/resource/Suffragette, http://dbpedia.org/ontology/elevation: 121 +2023-10-27 13:53:13.479  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 +2023-10-27 13:53:13.527  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar18000898087952527291.cxl +2023-10-27 13:53:13.528  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar18000898087952527291.cxl +2023-10-27 13:53:13.528  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar18000898087952527291.cxl +2023-10-27 13:53:13.528  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/String_theory, http://dbpedia.org/resource/Suffragette, http://dbpedia.org/ontology/elevation on /tmp/sina-0.0.1.jar18000898087952527291.cxl +2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} +2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@5dc05312 +2023-10-27 13:54:07.657  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e9bda8e +2023-10-27 13:54:07.657 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:07.659  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:07.660  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:07.667 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 +2023-10-27 13:54:07.667  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql +2023-10-27 13:54:07.669 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? +2023-10-27 13:54:07.669  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Where does the Nutri-Score originate from? +2023-10-27 13:54:07.670  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d249184 +2023-10-27 13:54:07.673 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:54:07.675  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:07.675  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:07.704 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 +2023-10-27 13:54:07.704  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f9274c2 +2023-10-27 13:54:07.704 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:54:07.706  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:07.706  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:07.716  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/engineer +2023-10-27 13:54:07.716  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7095eae1 +2023-10-27 13:54:07.717 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:54:07.718  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:07.719  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:07.728  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/engineer: 36 +2023-10-27 13:54:07.728  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 +2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar16086999062070224217.cxl +2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar16086999062070224217.cxl +2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar16086999062070224217.cxl +2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/engineer on /tmp/sina-0.0.1.jar16086999062070224217.cxl +2023-10-27 13:54:07.978  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar16086999062070224217.cxl +2023-10-27 13:54:07.979 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/engineertype 14 single entity template: select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }template: http://dbpedia.org/ontology/engineer ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }] +2023-10-27 13:54:07.979  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }] +2023-10-27 13:54:07.983  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a7e61dd +2023-10-27 13:54:07.983 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:08.018  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:08.019  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:08.019 DEBUG 9653 --- [nio-8098-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:08.033 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : processing took: 385 ms +2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@fc71604 +2023-10-27 13:54:22.866  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@100e98c +2023-10-27 13:54:22.866 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:22.867  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:22.868  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:22.874 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d +2023-10-27 13:54:22.874  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d found in urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc at http://localhost:8080/sparql +2023-10-27 13:54:22.877 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 13:54:22.878  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many countries have never been members of the UN? +2023-10-27 13:54:22.878  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@53f7d74 +2023-10-27 13:54:22.878 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:54:22.880  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:22.880  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:22.906 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d +2023-10-27 13:54:22.906  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@403de3b7 +2023-10-27 13:54:22.906 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:54:22.908  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:22.908  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:22.917  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/class +2023-10-27 13:54:22.917  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@777dba82 +2023-10-27 13:54:22.917 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:54:22.919  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:22.920  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:22.929  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/class: 33 +2023-10-27 13:54:22.929  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 +2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar6933833029812998901.cxl +2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar6933833029812998901.cxl +2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar6933833029812998901.cxl +2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/class on /tmp/sina-0.0.1.jar6933833029812998901.cxl +2023-10-27 13:54:23.059  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar6933833029812998901.cxl +2023-10-27 13:54:23.060 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/classtype 14 single entity template: select * where { http://dbpedia.org/ontology/class ?p ?v0. }template: http://dbpedia.org/ontology/class ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/class ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/class ?p ?v0. }] +2023-10-27 13:54:23.060  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/class ?p ?v0. }] +2023-10-27 13:54:23.060  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71b76168 +2023-10-27 13:54:23.060 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:54:23.064  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/class ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.064  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/class ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.064 DEBUG 9653 --- [nio-8098-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/class ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:54:23.074 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.component.QanaryServiceController  : processing took: 219 ms +2023-10-27 13:54:33.510  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:33.510  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:33.511  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} +2023-10-27 13:54:33.511  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@783ac3e2 +2023-10-27 13:54:33.564  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c05483d +2023-10-27 13:54:33.565 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:33.566  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:33.567  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:33.573 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c +2023-10-27 13:54:33.573  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql +2023-10-27 13:54:33.575 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:33.575  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Does Bremerhaven's local dialing code start with 4? +2023-10-27 13:54:33.576  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3907c9d9 +2023-10-27 13:54:33.576 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:54:33.577  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:33.578  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:33.610 ERROR 9653 --- [nio-8098-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause + +java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) + at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} +2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@3784edf7 +2023-10-27 13:54:34.976  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39430577 +2023-10-27 13:54:34.977 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:34.978  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.978  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:34.983 DEBUG 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 +2023-10-27 13:54:34.983  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql +2023-10-27 13:54:34.985 DEBUG 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? +2023-10-27 13:54:34.986  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many things are part of the "One Piece" Franchise? +2023-10-27 13:54:34.986  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d7c8687 +2023-10-27 13:54:34.986 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:54:34.987  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:34.987  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:35.011  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/How_2 start:0 end:3 +2023-10-27 13:54:35.011  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/One_Piece start:33 end:42 +2023-10-27 13:54:35.011  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Franchising start:44 end:53 +2023-10-27 13:54:35.016 DEBUG 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 +2023-10-27 13:54:35.017  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@787e0f4c +2023-10-27 13:54:35.017 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:54:35.018  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:35.018  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:35.028  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6805bee1 +2023-10-27 13:54:35.028 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:54:35.029  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:35.030  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:54:35.037  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/How_2, http://dbpedia.org/resource/One_Piece, http://dbpedia.org/resource/Franchising: 113 +2023-10-27 13:54:35.037  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 +2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar14664154595879182775.cxl +2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar14664154595879182775.cxl +2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar14664154595879182775.cxl +2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/How_2, http://dbpedia.org/resource/One_Piece, http://dbpedia.org/resource/Franchising on /tmp/sina-0.0.1.jar14664154595879182775.cxl +2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} +2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@f124715 +2023-10-27 13:55:10.653  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a5f9a4a +2023-10-27 13:55:10.653 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:10.655  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:10.655  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:10.664 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 +2023-10-27 13:55:10.664  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 found in urn:graph:713e7115-51ec-4875-b710-943891a2849a at http://localhost:8080/sparql +2023-10-27 13:55:10.666 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the mother tongue of the author Chimamanda Ngozi Adichie ? +2023-10-27 13:55:10.666  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What is the mother tongue of the author Chimamanda Ngozi Adichie ? +2023-10-27 13:55:10.667  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11ecdb33 +2023-10-27 13:55:10.667 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:55:10.668  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:55:10.668  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:55:10.700 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 +2023-10-27 13:55:10.701  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@586c15fc +2023-10-27 13:55:10.701 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:55:10.703  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:55:10.703  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:55:10.715  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/country +2023-10-27 13:55:10.716  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1432fe3e +2023-10-27 13:55:10.716 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:55:10.718  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:55:10.719  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:55:10.728  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/country: 35 +2023-10-27 13:55:10.728  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 +2023-10-27 13:55:10.770  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar16188425692322727051.cxl +2023-10-27 13:55:10.771  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar16188425692322727051.cxl +2023-10-27 13:55:10.771  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar16188425692322727051.cxl +2023-10-27 13:55:10.771  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/country on /tmp/sina-0.0.1.jar16188425692322727051.cxl +2023-10-27 13:55:11.038  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar16188425692322727051.cxl +2023-10-27 13:55:11.038 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/countrytype 14 single entity template: select * where { http://dbpedia.org/ontology/country ?p ?v0. }template: http://dbpedia.org/ontology/country ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/country ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/country ?p ?v0. }] +2023-10-27 13:55:11.038  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/country ?p ?v0. }] +2023-10-27 13:55:11.038  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37d14fa0 +2023-10-27 13:55:11.038 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:11.041  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/country ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:11.041  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/country ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:11.041 DEBUG 9653 --- [io-8098-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/country ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:11.047 DEBUG 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : processing took: 403 ms +2023-10-27 13:55:38.447  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar18000898087952527291.cxl +2023-10-27 13:55:38.447 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/resource/String_theorytype 10 uri of path http://dbpedia.org/resource/Suffragettetype 10 uri of path http://dbpedia.org/ontology/elevationtype 14log4j:WARN No appenders could be found for logger (org.apache.jena.riot.system.stream.JenaIOEnvironment).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.print iri....http://dbpedia.org/resource/String_theoryprint iri....http://dbpedia.org/resource/Suffragetteprint iri....http://dbpedia.org/ontology/elevationinside connecting function ... p-------retrieved query is: select distinct ?p WHERE { ?p . }-------retrieved query is: select distinct ?p WHERE { ?p . }entity: http://dbpedia.org/resource/Suffragetteentity class type: [http://schema.org/CollegeOrUniversity, http://dbpedia.org/ontology/University, http://dbpedia.org/ontology/CyclingLeague, http://dbpedia.org/ontology/TennisLeague, http://dbpedia.org/ontology/BritishRoyalty, http://dbpedia.org/ontology/Broadcaster, http://dbpedia.org/ontology/NationalSoccerClub, http://dbpedia.org/ontology/MilitaryUnit, http://dbpedia.org/ontology/ComicsCreator, http://dbpedia.org/ontology/Legislature, http://dbpedia.org/ontology/ChessPlayer, http://dbpedia.org/ontology/School, http://dbpedia.org/ontology/MusicalArtist, http://dbpedia.org/ontology/Comedian, http://dbpedia.org/ontology/Referee, http://dbpedia.org/ontology/BasketballTeam, http://dbpedia.org/ontology/ChristianBishop, http://dbpedia.org/ontology/Cricketer, http://dbpedia.org/ontology/OfficeHolder, http://dbpedia.org/ontology/RugbyLeague, http://dbpedia.org/ontology/LawFirm, http://dbpedia.org/ontology/Governor, http://dbpedia.org/ontology/BasketballLeague, http://dbpedia.org/ontology/AmericanFootballLeague, http://dbpedia.org/ontology/RugbyClub, http://dbpedia.org/ontology/SpeedwayLeague, http://dbpedia.org/ontology/Athlete, http://dbpedia.org/ontology/SportsTeamMember, http://dbpedia.org/ontology/SportsTeamSeason, http://dbpedia.org/ontology/AustralianRulesFootballPlayer, http://dbpedia.org/ontology/CricketLeague, http://dbpedia.org/ontology/SoccerPlayer, http://dbpedia.org/ontology/EducationalInstitution, http://dbpedia.org/ontology/Architect, http://dbpedia.org/ontology/SoccerClub, http://dbpedia.org/ontology/Cyclist, http://dbpedia.org/ontology/Journalist, http://dbpedia.org/ontology/Cleric, http://schema.org/EducationalOrganization, http://dbpedia.org/ontology/Chancellor, http://dbpedia.org/ontology/SoccerLeagueSeason, http://dbpedia.org/ontology/LacrosseLeague, http://dbpedia.org/ontology/CanadianFootballPlayer, http://xmlns.com/foaf/0.1/Person, http://dbpedia.org/ontology/SoccerManager, http://dbpedia.org/ontology/Judge, http://dbpedia.org/ontology/TradeUnion, http://dbpedia.org/ontology/BaseballTeam, http://dbpedia.org/ontology/Library, http://dbpedia.org/ontology/Cardinal, http://dbpedia.org/ontology/President, http://dbpedia.org/ontology/MartialArtist, http://dbpedia.org/ontology/Swimmer, http://dbpedia.org/ontology/AustralianFootballLeague, http://dbpedia.org/ontology/SnookerPlayer, http://dbpedia.org/ontology/TeamMember, http://dbpedia.org/ontology/MilitaryPerson, http://dbpedia.org/ontology/PoliticalParty, http://dbpedia.org/ontology/BadmintonPlayer, http://dbpedia.org/ontology/MemberOfParliament, http://dbpedia.org/ontology/MotorcycleRacingLeague, http://dbpedia.org/ontology/PersonFunction, http://dbpedia.org/ontology/Criminal, http://dbpedia.org/ontology/Ambassador, http://dbpedia.org/ontology/RecordLabel, http://dbpedia.org/ontology/Politician, http://dbpedia.org/ontology/Congressman, http://dbpedia.org/ontology/Deputy, http://dbpedia.org/ontology/VoiceActor, http://schema.org/SportsTeam, http://dbpedia.org/ontology/SportsTeam, http://dbpedia.org/ontology/Wrestler, http://dbpedia.org/ontology/PokerPlayer, http://dbpedia.org/ontology/ChristianPatriarch, http://schema.org/Organization, http://dbpedia.org/ontology/Scientist, http://dbpedia.org/ontology/SoftballLeague, http://dbpedia.org/ontology/Senator, http://dbpedia.org/ontology/SnookerChamp, http://dbpedia.org/ontology/OrganisationMember, http://dbpedia.org/ontology/Organisation, http://dbpedia.org/ontology/Pope, http://dbpedia.org/ontology/MixedMartialArtsLeague, http://dbpedia.org/ontology/GridironFootballPlayer, http://dbpedia.org/ontology/GolfLeague, http://dbpedia.org/ontology/SoccerClubSeason, http://dbpedia.org/ontology/SambaSchool, http://schema.org/GovernmentOrganization, http://dbpedia.org/ontology/GovernmentAgency, http://dbpedia.org/ontology/Band, http://dbpedia.org/ontology/VicePrimeMinister, http://dbpedia.org/ontology/SportsLeague, http://dbpedia.org/ontology/Royalty, http://dbpedia.org/ontology/Priest, http://dbpedia.org/ontology/FormulaOneRacer, http://dbpedia.org/ontology/BasketballPlayer, http://dbpedia.org/ontology/AmericanFootballPlayer, http://dbpedia.org/ontology/RadioStation, http://dbpedia.org/ontology/CanadianFootballLeague, http://dbpedia.org/ontology/PrimeMinister, http://dbpedia.org/ontology/GeopoliticalOrganisation, http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete, http://dbpedia.org/ontology/SpeedwayTeam, http://dbpedia.org/ontology/Non-ProfitOrganisation, http://dbpedia.org/ontology/FormulaOneRacing, http://dbpedia.org/ontology/Mayor, http://dbpedia.org/ontology/RadioControlledRacingLeague, http://dbpedia.org/ontology/TelevisionStation, http://dbpedia.org/ontology/Writer, http://dbpedia.org/ontology/FictionalCharacter, http://dbpedia.org/ontology/PlayboyPlaymate, http://dbpedia.org/ontology/Lieutenant, http://schema.org/Person, http://dbpedia.org/ontology/BoxingLeague, http://dbpedia.org/ontology/GaelicGamesPlayer, http://dbpedia.org/ontology/AdultActor, http://dbpedia.org/ontology/IceHockeyLeague, http://dbpedia.org/ontology/BroadcastNetwork, http://dbpedia.org/ontology/Artist, http://dbpedia.org/ontology/Company, http://dbpedia.org/ontology/VicePresident, http://dbpedia.org/ontology/Agent, http://dbpedia.org/ontology/SoccerLeague, http://dbpedia.org/ontology/CurlingLeague, http://dbpedia.org/ontology/Philosopher, http://dbpedia.org/ontology/Boxer, http://dbpedia.org/ontology/PaintballLeague, http://dbpedia.org/ontology/Celebrity, http://schema.org/Library, http://dbpedia.org/ontology/CanadianFootballTeam, http://dbpedia.org/ontology/BaseballLeague, http://dbpedia.org/ontology/IceHockeyPlayer, http://dbpedia.org/ontology/AmericanFootballTeam, http://dbpedia.org/ontology/PolishKing, http://dbpedia.org/ontology/Monarch, http://dbpedia.org/ontology/Astronaut, http://dbpedia.org/ontology/VolleyballPlayer, http://dbpedia.org/ontology/PoloLeague, http://dbpedia.org/ontology/AutoRacingLeague, http://dbpedia.org/ontology/HockeyTeam, http://dbpedia.org/ontology/Actor, http://dbpedia.org/ontology/ComicsCharacter, http://schema.org/School, http://dbpedia.org/ontology/HandballLeague, http://dbpedia.org/ontology/NascarDriver, http://schema.org/RadioStation, http://dbpedia.org/ontology/BullFighter, http://dbpedia.org/ontology/Model, http://dbpedia.org/ontology/Airline, http://dbpedia.org/ontology/VideogamesLeague, http://dbpedia.org/ontology/BowlingLeague, http://dbpedia.org/ontology/Saint, http://dbpedia.org/ontology/BaseballPlayer, http://dbpedia.org/ontology/FieldHockeyLeague, http://dbpedia.org/ontology/CollegeCoach, http://dbpedia.org/ontology/RugbyPlayer, http://schema.org/TelevisionStation, http://dbpedia.org/ontology/Person, http://dbpedia.org/ontology/VolleyballLeague, http://dbpedia.org/ontology/TennisPlayer, http://dbpedia.org/ontology/FigureSkater, http://dbpedia.org/ontology/GolfPlayer, http://dbpedia.org/ontology/College, http://dbpedia.org/ontology/InlineHockeyLeague]entity: http://dbpedia.org/resource/String_theoryentity class type: [http://dbpedia.org/ontology/VideoGame, http://dbpedia.org/ontology/Software]triple: http://dbpedia.org/resource/Suffragette http://dbpedia.org/ontology/elevation ?l0triple: http://dbpedia.org/resource/Suffragette ?p http://dbpedia.org/resource/String_theory PropertySet..... [, , , , , , , , , , , , , , , , , , , , , ]############# printing real Final template ################## entity: http://dbpedia.org/resource/Suffragetteentity class type: [http://schema.org/CollegeOrUniversity, http://dbpedia.org/ontology/University, http://dbpedia.org/ontology/CyclingLeague, http://dbpedia.org/ontology/TennisLeague, http://dbpedia.org/ontology/BritishRoyalty, http://dbpedia.org/ontology/Broadcaster, http://dbpedia.org/ontology/NationalSoccerClub, http://dbpedia.org/ontology/MilitaryUnit, http://dbpedia.org/ontology/ComicsCreator, http://dbpedia.org/ontology/Legislature, http://dbpedia.org/ontology/ChessPlayer, http://dbpedia.org/ontology/School, http://dbpedia.org/ontology/MusicalArtist, http://dbpedia.org/ontology/Comedian, http://dbpedia.org/ontology/Referee, http://dbpedia.org/ontology/BasketballTeam, http://dbpedia.org/ontology/ChristianBishop, http://dbpedia.org/ontology/Cricketer, http://dbpedia.org/ontology/OfficeHolder, http://dbpedia.org/ontology/RugbyLeague, http://dbpedia.org/ontology/LawFirm, http://dbpedia.org/ontology/Governor, http://dbpedia.org/ontology/BasketballLeague, http://dbpedia.org/ontology/AmericanFootballLeague, http://dbpedia.org/ontology/RugbyClub, http://dbpedia.org/ontology/SpeedwayLeague, http://dbpedia.org/ontology/Athlete, http://dbpedia.org/ontology/SportsTeamMember, http://dbpedia.org/ontology/SportsTeamSeason, http://dbpedia.org/ontology/AustralianRulesFootballPlayer, http://dbpedia.org/ontology/CricketLeague, http://dbpedia.org/ontology/SoccerPlayer, http://dbpedia.org/ontology/EducationalInstitution, http://dbpedia.org/ontology/Architect, http://dbpedia.org/ontology/SoccerClub, http://dbpedia.org/ontology/Cyclist, http://dbpedia.org/ontology/Journalist, http://dbpedia.org/ontology/Cleric, http://schema.org/EducationalOrganization, http://dbpedia.org/ontology/Chancellor, http://dbpedia.org/ontology/SoccerLeagueSeason, http://dbpedia.org/ontology/LacrosseLeague, http://dbpedia.org/ontology/CanadianFootballPlayer, http://xmlns.com/foaf/0.1/Person, http://dbpedia.org/ontology/SoccerManager, http://dbpedia.org/ontology/Judge, http://dbpedia.org/ontology/TradeUnion, http://dbpedia.org/ontology/BaseballTeam, http://dbpedia.org/ontology/Library, http://dbpedia.org/ontology/Cardinal, http://dbpedia.org/ontology/President, http://dbpedia.org/ontology/MartialArtist, http://dbpedia.org/ontology/Swimmer, http://dbpedia.org/ontology/AustralianFootballLeague, http://dbpedia.org/ontology/SnookerPlayer, http://dbpedia.org/ontology/TeamMember, http://dbpedia.org/ontology/MilitaryPerson, http://dbpedia.org/ontology/PoliticalParty, http://dbpedia.org/ontology/BadmintonPlayer, http://dbpedia.org/ontology/MemberOfParliament, http://dbpedia.org/ontology/MotorcycleRacingLeague, http://dbpedia.org/ontology/PersonFunction, http://dbpedia.org/ontology/Criminal, http://dbpedia.org/ontology/Ambassador, http://dbpedia.org/ontology/RecordLabel, http://dbpedia.org/ontology/Politician, http://dbpedia.org/ontology/Congressman, http://dbpedia.org/ontology/Deputy, http://dbpedia.org/ontology/VoiceActor, http://schema.org/SportsTeam, http://dbpedia.org/ontology/SportsTeam, http://dbpedia.org/ontology/Wrestler, http://dbpedia.org/ontology/PokerPlayer, http://dbpedia.org/ontology/ChristianPatriarch, http://schema.org/Organization, http://dbpedia.org/ontology/Scientist, http://dbpedia.org/ontology/SoftballLeague, http://dbpedia.org/ontology/Senator, http://dbpedia.org/ontology/SnookerChamp, http://dbpedia.org/ontology/OrganisationMember, http://dbpedia.org/ontology/Organisation, http://dbpedia.org/ontology/Pope, http://dbpedia.org/ontology/MixedMartialArtsLeague, http://dbpedia.org/ontology/GridironFootballPlayer, http://dbpedia.org/ontology/GolfLeague, http://dbpedia.org/ontology/SoccerClubSeason, http://dbpedia.org/ontology/SambaSchool, http://schema.org/GovernmentOrganization, http://dbpedia.org/ontology/GovernmentAgency, http://dbpedia.org/ontology/Band, http://dbpedia.org/ontology/VicePrimeMinister, http://dbpedia.org/ontology/SportsLeague, http://dbpedia.org/ontology/Royalty, http://dbpedia.org/ontology/Priest, http://dbpedia.org/ontology/FormulaOneRacer, http://dbpedia.org/ontology/BasketballPlayer, http://dbpedia.org/ontology/AmericanFootballPlayer, http://dbpedia.org/ontology/RadioStation, http://dbpedia.org/ontology/CanadianFootballLeague, http://dbpedia.org/ontology/PrimeMinister, http://dbpedia.org/ontology/GeopoliticalOrganisation, http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete, http://dbpedia.org/ontology/SpeedwayTeam, http://dbpedia.org/ontology/Non-ProfitOrganisation, http://dbpedia.org/ontology/FormulaOneRacing, http://dbpedia.org/ontology/Mayor, http://dbpedia.org/ontology/RadioControlledRacingLeague, http://dbpedia.org/ontology/TelevisionStation, http://dbpedia.org/ontology/Writer, http://dbpedia.org/ontology/FictionalCharacter, http://dbpedia.org/ontology/PlayboyPlaymate, http://dbpedia.org/ontology/Lieutenant, http://schema.org/Person, http://dbpedia.org/ontology/BoxingLeague, http://dbpedia.org/ontology/GaelicGamesPlayer, http://dbpedia.org/ontology/AdultActor, http://dbpedia.org/ontology/IceHockeyLeague, http://dbpedia.org/ontology/BroadcastNetwork, http://dbpedia.org/ontology/Artist, http://dbpedia.org/ontology/Company, http://dbpedia.org/ontology/VicePresident, http://dbpedia.org/ontology/Agent, http://dbpedia.org/ontology/SoccerLeague, http://dbpedia.org/ontology/CurlingLeague, http://dbpedia.org/ontology/Philosopher, http://dbpedia.org/ontology/Boxer, http://dbpedia.org/ontology/PaintballLeague, http://dbpedia.org/ontology/Celebrity, http://schema.org/Library, http://dbpedia.org/ontology/CanadianFootballTeam, http://dbpedia.org/ontology/BaseballLeague, http://dbpedia.org/ontology/IceHockeyPlayer, http://dbpedia.org/ontology/AmericanFootballTeam, http://dbpedia.org/ontology/PolishKing, http://dbpedia.org/ontology/Monarch, http://dbpedia.org/ontology/Astronaut, http://dbpedia.org/ontology/VolleyballPlayer, http://dbpedia.org/ontology/PoloLeague, http://dbpedia.org/ontology/AutoRacingLeague, http://dbpedia.org/ontology/HockeyTeam, http://dbpedia.org/ontology/Actor, http://dbpedia.org/ontology/ComicsCharacter, http://schema.org/School, http://dbpedia.org/ontology/HandballLeague, http://dbpedia.org/ontology/NascarDriver, http://schema.org/RadioStation, http://dbpedia.org/ontology/BullFighter, http://dbpedia.org/ontology/Model, http://dbpedia.org/ontology/Airline, http://dbpedia.org/ontology/VideogamesLeague, http://dbpedia.org/ontology/BowlingLeague, http://dbpedia.org/ontology/Saint, http://dbpedia.org/ontology/BaseballPlayer, http://dbpedia.org/ontology/FieldHockeyLeague, http://dbpedia.org/ontology/CollegeCoach, http://dbpedia.org/ontology/RugbyPlayer, http://schema.org/TelevisionStation, http://dbpedia.org/ontology/Person, http://dbpedia.org/ontology/VolleyballLeague, http://dbpedia.org/ontology/TennisPlayer, http://dbpedia.org/ontology/FigureSkater, http://dbpedia.org/ontology/GolfPlayer, http://dbpedia.org/ontology/College, http://dbpedia.org/ontology/InlineHockeyLeague]entity: http://dbpedia.org/resource/String_theoryentity class type: [http://dbpedia.org/ontology/VideoGame, http://dbpedia.org/ontology/Software]triple: http://dbpedia.org/resource/Suffragette http://dbpedia.org/ontology/elevation ?l0triple: http://dbpedia.org/resource/Suffragette ?p http://dbpedia.org/resource/String_theory PropertySet..... [, , , , , , , , , , , , , , , , , , , , , ] Connecting step finished size of FinalTemplateList = 1 size of TemporaryTemplateList = 0template: select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }template: Suffragette elevation ?l0 . Suffragette [ --- product --- pictureFormat --- programmeFormat --- campus --- profession --- citizenship --- deathCause --- honours --- nationalAffiliation --- movement --- board --- service --- notableIdea --- significantProject --- significantDesign --- knownFor --- portrayer --- lastAppearance --- field --- industry --- philosophicalSchool --- education] /String_theory . sparql printing list.....select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } } list of final templates: [select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }] +2023-10-27 13:55:38.447  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }] +2023-10-27 13:55:38.448  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ac943c4 +2023-10-27 13:55:38.448 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:55:38.451  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:38.452  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:38.452 DEBUG 9653 --- [nio-8098-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:55:38.465 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : processing took: 145959 ms +2023-10-27 13:56:04.831  INFO 9653 --- [nio-8098-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:04.831  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:04.832  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:04.832  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@f1d66f7 +2023-10-27 13:56:04.840  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20121cf8 +2023-10-27 13:56:04.840 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:56:04.841  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:04.841  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:56:04.849 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:04.849  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql +2023-10-27 13:56:04.852 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:04.852  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:04.853  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aa11bd2 +2023-10-27 13:56:04.853 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:56:04.859  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:56:04.862  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:56:04.893  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/President start:78 end:87 +2023-10-27 13:56:04.894  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/President start:15 end:25 +2023-10-27 13:56:04.905 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:04.905  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70d781cf +2023-10-27 13:56:04.906 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:56:04.910  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:56:04.913  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:56:04.928  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/property/followed +2023-10-27 13:56:04.929  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@14196bfc +2023-10-27 13:56:04.930 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:56:04.932  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:56:04.932  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:56:04.945  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/President, http://dbpedia.org/resource/President, http://dbpedia.org/property/followed: 114 +2023-10-27 13:56:04.946  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 +2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar2559341001971584920.cxl +2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar2559341001971584920.cxl +2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar2559341001971584920.cxl +2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/President, http://dbpedia.org/resource/President, http://dbpedia.org/property/followed on /tmp/sina-0.0.1.jar2559341001971584920.cxl +2023-10-27 13:57:30.792  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:30.793  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:30.793  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} +2023-10-27 13:57:30.793  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@6913c8bf +2023-10-27 13:57:30.893  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50197fdd +2023-10-27 13:57:30.894 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:30.898  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:30.898  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:30.908 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 +2023-10-27 13:57:30.908  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql +2023-10-27 13:57:30.913 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many different colors can water take? +2023-10-27 13:57:30.913  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many different colors can water take? +2023-10-27 13:57:30.914  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d26cacf +2023-10-27 13:57:30.914 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:57:30.916  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:57:30.917  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:57:30.957  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Canned_water start:26 end:35 +2023-10-27 13:57:30.967 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 +2023-10-27 13:57:30.968  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44d2ffba +2023-10-27 13:57:30.968 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:57:30.970  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:57:30.971  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:57:30.989  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/flag +2023-10-27 13:57:30.989  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/areaWater +2023-10-27 13:57:30.990  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33f381af +2023-10-27 13:57:30.990 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:57:30.993  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:57:30.993  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:57:31.009  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Canned_water, http://dbpedia.org/ontology/flag, http://dbpedia.org/ontology/areaWater: 113 +2023-10-27 13:57:31.009  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 +2023-10-27 13:57:31.057  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar404703144728577206.cxl +2023-10-27 13:57:31.057  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar404703144728577206.cxl +2023-10-27 13:57:31.058  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar404703144728577206.cxl +2023-10-27 13:57:31.058  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Canned_water, http://dbpedia.org/ontology/flag, http://dbpedia.org/ontology/areaWater on /tmp/sina-0.0.1.jar404703144728577206.cxl +2023-10-27 13:57:35.607  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar404703144728577206.cxl +2023-10-27 13:57:35.607 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/resource/Canned_watertype 10 uri of path http://dbpedia.org/ontology/flagtype 14 uri of path http://dbpedia.org/ontology/areaWatertype 14log4j:WARN No appenders could be found for logger (org.apache.jena.riot.system.stream.JenaIOEnvironment).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.print iri....http://dbpedia.org/resource/Canned_waterprint iri....http://dbpedia.org/ontology/flagprint iri....http://dbpedia.org/ontology/areaWater Connecting step finished size of FinalTemplateList = 0 size of TemporaryTemplateList = 0 list of final templates: [] +2023-10-27 13:57:35.608  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [] +2023-10-27 13:57:35.608  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@35430e7 +2023-10-27 13:57:35.608 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 13:57:35.610  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:35.611  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:35.612 DEBUG 9653 --- [nio-8098-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 13:57:35.620 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : processing took: 4827 ms +2023-10-27 13:58:02.307  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:02.307  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:02.307  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:02.308  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@1c81a300 +2023-10-27 13:58:02.337  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f0b01e8 +2023-10-27 13:58:02.337 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:02.338  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:02.338  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:02.344 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 +2023-10-27 13:58:02.344  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql +2023-10-27 13:58:02.347 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:58:02.347  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:58:02.347  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72384df5 +2023-10-27 13:58:02.348 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:58:02.349  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:58:02.350  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:58:02.390 ERROR 9653 --- [nio-8098-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause + +java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) + at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:59:04.858  INFO 9653 --- [nio-8098-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.859  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.859  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} +2023-10-27 13:59:04.859  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@446ab625 +2023-10-27 13:59:04.885  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ec12a89 +2023-10-27 13:59:04.885 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:04.887  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:04.887  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:04.895 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f +2023-10-27 13:59:04.895  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql +2023-10-27 13:59:04.897 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? +2023-10-27 13:59:04.897  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: in which language does the united stated have the shortest short name? +2023-10-27 13:59:04.898  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e2fe346 +2023-10-27 13:59:04.898 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:59:04.900  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:59:04.900  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:59:04.925 ERROR 9653 --- [nio-8098-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause + +java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) + at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:59:34.151  INFO 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:34.152  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:34.152  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} +2023-10-27 13:59:34.152  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@549427a0 +2023-10-27 13:59:34.161  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f53a72f +2023-10-27 13:59:34.161 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:34.163  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:34.163  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:34.169 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:34.169  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql +2023-10-27 13:59:34.171 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was the first female chancellor in Germany ever married? +2023-10-27 13:59:34.171  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Was the first female chancellor in Germany ever married? +2023-10-27 13:59:34.171  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f02d7de +2023-10-27 13:59:34.171 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:59:34.172  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:59:34.173  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:59:34.196  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Weibliches_Geschlecht start:14 end:20 +2023-10-27 13:59:34.196  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Germany start:35 end:42 +2023-10-27 13:59:34.201 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 +2023-10-27 13:59:34.202  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f557c99 +2023-10-27 13:59:34.202 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:59:34.203  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:59:34.203  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:59:34.211  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/president +2023-10-27 13:59:34.211  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/spouse +2023-10-27 13:59:34.211  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a09fdf4 +2023-10-27 13:59:34.211 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 13:59:34.213  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:59:34.213  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 13:59:34.222  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Weibliches_Geschlecht, http://dbpedia.org/resource/Germany, http://dbpedia.org/ontology/president, http://dbpedia.org/ontology/spouse: 161 +2023-10-27 13:59:34.223  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 +2023-10-27 13:59:34.223  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/Weibliches_Geschlecht, http://dbpedia.org/resource/Germany, http://dbpedia.org/ontology/president, http://dbpedia.org/ontology/spouse +2023-10-27 13:59:34.223 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : processing took: 71 ms +2023-10-27 14:00:06.211  INFO 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:06.213  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:06.214  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:06.214  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@289fd440 +2023-10-27 14:00:06.224  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26583f23 +2023-10-27 14:00:06.225 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:06.225  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:06.226  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:06.234 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c +2023-10-27 14:00:06.234  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c found in urn:graph:f48704a2-e326-4237-b784-257818c7ed9b at http://localhost:8080/sparql +2023-10-27 14:00:06.236 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second game developed by Piranha Bytes? +2023-10-27 14:00:06.236  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What is the second game developed by Piranha Bytes? +2023-10-27 14:00:06.236  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2267bf30 +2023-10-27 14:00:06.236 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:00:06.242  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:00:06.242  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:00:06.273 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c +2023-10-27 14:00:06.274  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67653518 +2023-10-27 14:00:06.274 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:00:06.276  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:00:06.276  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:00:06.286  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/developer +2023-10-27 14:00:06.287  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@310ed060 +2023-10-27 14:00:06.287 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:00:06.288  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:00:06.288  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:00:06.297  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/developer: 37 +2023-10-27 14:00:06.298  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 +2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar13729802811987816325.cxl +2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar13729802811987816325.cxl +2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar13729802811987816325.cxl +2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/developer on /tmp/sina-0.0.1.jar13729802811987816325.cxl +2023-10-27 14:00:06.609  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar13729802811987816325.cxl +2023-10-27 14:00:06.609 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/developertype 14 single entity template: select * where { http://dbpedia.org/ontology/developer ?p ?v0. }template: http://dbpedia.org/ontology/developer ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/developer ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/developer ?p ?v0. }] +2023-10-27 14:00:06.609  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/developer ?p ?v0. }] +2023-10-27 14:00:06.611  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49c9eb83 +2023-10-27 14:00:06.611 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:00:06.613  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/developer ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:06.614  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/developer ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:06.614 DEBUG 9653 --- [nio-8098-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/developer ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:00:06.623 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : processing took: 410 ms +2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} +2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@50e78c6e +2023-10-27 14:00:29.827  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@53274b42 +2023-10-27 14:00:29.827 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:29.828  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:29.828  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:29.835 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f +2023-10-27 14:00:29.835  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql +2023-10-27 14:00:29.836 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? +2023-10-27 14:00:29.836  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What is the second letter in the Greek alphabet? +2023-10-27 14:00:29.837  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31d90fc5 +2023-10-27 14:00:29.837 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:00:29.838  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:00:29.838  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:00:29.860 ERROR 9653 --- [io-8098-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause + +java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) + at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:01:46.845  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:46.846  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:46.846  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} +2023-10-27 14:01:46.846  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@6e330682 +2023-10-27 14:01:46.856  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19404eed +2023-10-27 14:01:46.856 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:01:46.857  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:46.857  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:01:46.864 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:46.864  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql +2023-10-27 14:01:46.867 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:46.867  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many times did the Italian national soccer team win the Fifa World Cup? +2023-10-27 14:01:46.867  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2927ffd5 +2023-10-27 14:01:46.867 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:01:46.868  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:01:46.868  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:01:46.890  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/FIFA_World_Cup start:60 end:74 +2023-10-27 14:01:46.894 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f +2023-10-27 14:01:46.895  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fa45ca4 +2023-10-27 14:01:46.895 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:01:46.896  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:01:46.897  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/time +2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/property/score +2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/country +2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79555cc4 +2023-10-27 14:01:46.906 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:01:46.907  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:01:46.907  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:01:46.914  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/FIFA_World_Cup, http://dbpedia.org/ontology/time, http://dbpedia.org/property/score, http://dbpedia.org/ontology/country: 148 +2023-10-27 14:01:46.915  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 +2023-10-27 14:01:46.915  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/FIFA_World_Cup, http://dbpedia.org/ontology/time, http://dbpedia.org/property/score, http://dbpedia.org/ontology/country +2023-10-27 14:01:46.915 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 70 ms +2023-10-27 14:02:35.571  INFO 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:35.572  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:35.572  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:35.572  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@60a0930a +2023-10-27 14:02:35.579  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9b4a907 +2023-10-27 14:02:35.580 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:35.581  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:35.582  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:35.588 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:35.588  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql +2023-10-27 14:02:35.589 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded the Worpswede artist colony ? +2023-10-27 14:02:35.589  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Who founded the Worpswede artist colony ? +2023-10-27 14:02:35.590  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@706a38d3 +2023-10-27 14:02:35.590 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:02:35.591  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:02:35.591  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:02:35.613  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Künstlerkolonie_Worpswede start:16 end:39 +2023-10-27 14:02:35.619 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:35.620  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b39ccbd +2023-10-27 14:02:35.620 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:02:35.621  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:02:35.621  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:02:35.629  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/foundingPerson +2023-10-27 14:02:35.629  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fe53013 +2023-10-27 14:02:35.629 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:02:35.631  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:02:35.632  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:02:35.639  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Künstlerkolonie_Worpswede, http://dbpedia.org/ontology/foundingPerson: 97 +2023-10-27 14:02:35.639  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 +2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar7027249137118100867.cxl +2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar7027249137118100867.cxl +2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar7027249137118100867.cxl +2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Künstlerkolonie_Worpswede, http://dbpedia.org/ontology/foundingPerson on /tmp/sina-0.0.1.jar7027249137118100867.cxl +2023-10-27 14:03:43.260  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:43.260  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:43.260  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} +2023-10-27 14:03:43.261  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@62794225 +2023-10-27 14:03:43.270  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@74b6c0e8 +2023-10-27 14:03:43.271 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:43.271  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:43.271  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:43.277 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 +2023-10-27 14:03:43.277  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 found in urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad at http://localhost:8080/sparql +2023-10-27 14:03:43.279 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What percentage of Andorra is covered with water? +2023-10-27 14:03:43.279  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What percentage of Andorra is covered with water? +2023-10-27 14:03:43.279  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@595af3a6 +2023-10-27 14:03:43.279 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:03:43.280  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:03:43.280  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:03:43.312 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 +2023-10-27 14:03:43.312  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a3a2735 +2023-10-27 14:03:43.312 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:03:43.313  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:03:43.313  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:03:43.322  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/percentageOfAreaWater +2023-10-27 14:03:43.325  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/property/cover +2023-10-27 14:03:43.325  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/percentageOfAreaWater +2023-10-27 14:03:43.325  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22fa243d +2023-10-27 14:03:43.326 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:03:43.327  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:03:43.327  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:03:43.336  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/percentageOfAreaWater, http://dbpedia.org/property/cover, http://dbpedia.org/ontology/percentageOfAreaWater: 135 +2023-10-27 14:03:43.336  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 +2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar7567126349652477492.cxl +2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar7567126349652477492.cxl +2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar7567126349652477492.cxl +2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/percentageOfAreaWater, http://dbpedia.org/property/cover, http://dbpedia.org/ontology/percentageOfAreaWater on /tmp/sina-0.0.1.jar7567126349652477492.cxl +2023-10-27 14:03:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar7567126349652477492.cxl +2023-10-27 14:03:46.906 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/percentageOfAreaWatertype 14 uri of path http://dbpedia.org/property/covertype 14 uri of path http://dbpedia.org/ontology/percentageOfAreaWatertype 14print iri....http://dbpedia.org/ontology/percentageOfAreaWaterprint iri....http://dbpedia.org/property/coverprint iri....http://dbpedia.org/ontology/percentageOfAreaWaterlog4j:WARN No appenders could be found for logger (org.apache.jena.riot.system.stream.JenaIOEnvironment).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. Connecting step finished size of FinalTemplateList = 0 size of TemporaryTemplateList = 0 list of final templates: [] +2023-10-27 14:03:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [] +2023-10-27 14:03:46.908  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e40097e +2023-10-27 14:03:46.908 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:03:46.910  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:46.910  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:46.910 DEBUG 9653 --- [nio-8098-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:03:46.919 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 3659 ms +2023-10-27 14:04:13.472  INFO 9653 --- [nio-8098-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:13.473  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:13.473  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} +2023-10-27 14:04:13.473  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@3d02b9b2 +2023-10-27 14:04:13.498  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5da0b4f5 +2023-10-27 14:04:13.500 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:04:13.503  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:13.504  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:04:13.511 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:13.511  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql +2023-10-27 14:04:13.514 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? +2023-10-27 14:04:13.514  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: When was Rumi born? +2023-10-27 14:04:13.514  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48618338 +2023-10-27 14:04:13.514 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:04:13.515  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:04:13.516  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:04:13.541  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Time start:0 end:4 +2023-10-27 14:04:13.541  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Rumi start:9 end:13 +2023-10-27 14:04:13.541  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Childbirth start:14 end:18 +2023-10-27 14:04:13.546 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 +2023-10-27 14:04:13.547  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1612de14 +2023-10-27 14:04:13.547 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:04:13.549  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:04:13.549  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:04:13.557  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/birthPlace +2023-10-27 14:04:13.557  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e752a4d +2023-10-27 14:04:13.557 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:04:13.559  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:04:13.559  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:04:13.567  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Time, http://dbpedia.org/resource/Rumi, http://dbpedia.org/resource/Childbirth, http://dbpedia.org/ontology/birthPlace: 146 +2023-10-27 14:04:13.567  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 +2023-10-27 14:04:13.567  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/Time, http://dbpedia.org/resource/Rumi, http://dbpedia.org/resource/Childbirth, http://dbpedia.org/ontology/birthPlace +2023-10-27 14:04:13.567 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.component.QanaryServiceController  : processing took: 94 ms +2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@28c15945 +2023-10-27 14:06:47.885  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4194c7a4 +2023-10-27 14:06:47.885 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:47.886  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:47.886  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:47.892 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:47.892  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql +2023-10-27 14:06:47.895 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:47.895  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:47.895  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15f1dabb +2023-10-27 14:06:47.895 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:06:47.896  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:06:47.896  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:06:47.917  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Dinosaur start:26 end:35 +2023-10-27 14:06:47.921 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:47.921  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50d263ac +2023-10-27 14:06:47.921 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:06:47.923  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:06:47.923  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:06:47.930  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/creator +2023-10-27 14:06:47.930  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72fb0382 +2023-10-27 14:06:47.931 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:06:47.932  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:06:47.932  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:06:47.938  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Dinosaur, http://dbpedia.org/ontology/creator: 73 +2023-10-27 14:06:47.938  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 +2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar194995180699457799.cxl +2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar194995180699457799.cxl +2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar194995180699457799.cxl +2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Dinosaur, http://dbpedia.org/ontology/creator on /tmp/sina-0.0.1.jar194995180699457799.cxl +2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} +2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@66aa366a +2023-10-27 14:07:52.278  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@229611c4 +2023-10-27 14:07:52.278 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:52.279  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:52.279  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:52.284 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:52.284  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql +2023-10-27 14:07:52.286 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:52.286  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many of Reinhold Messner's brothers still live? +2023-10-27 14:07:52.286  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@227499fc +2023-10-27 14:07:52.286 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:07:52.287  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:07:52.287  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:07:52.308  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Райнхолд_Меснер start:12 end:28 +2023-10-27 14:07:52.308  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Братя_и_сестри start:31 end:39 +2023-10-27 14:07:52.312 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 +2023-10-27 14:07:52.312  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@35c4e8bd +2023-10-27 14:07:52.312 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:07:52.313  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:07:52.314  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:07:52.321  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/residence +2023-10-27 14:07:52.321  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26a9109 +2023-10-27 14:07:52.321 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:07:52.322  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:07:52.322  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:07:52.329  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Райнхолд_Меснер, http://dbpedia.org/resource/Братя_и_сестри, http://dbpedia.org/ontology/residence: 126 +2023-10-27 14:07:52.329  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 +2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar9832152624203163840.cxl +2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar9832152624203163840.cxl +2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar9832152624203163840.cxl +2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Райнхолд_Меснер, http://dbpedia.org/resource/Братя_и_сестри, http://dbpedia.org/ontology/residence on /tmp/sina-0.0.1.jar9832152624203163840.cxl +2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} +2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@50282018 +2023-10-27 14:08:05.519  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ff93d4b +2023-10-27 14:08:05.520 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:05.520  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:05.521  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:05.525 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 +2023-10-27 14:08:05.525  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql +2023-10-27 14:08:05.526 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? +2023-10-27 14:08:05.527  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: is there female main character in hunter x hunter? +2023-10-27 14:08:05.527  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@281d2e10 +2023-10-27 14:08:05.527 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:08:05.528  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:08:05.528  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:08:05.563 ERROR 9653 --- [nio-8098-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause + +java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) + at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@3598880c +2023-10-27 14:08:29.431  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fcae87 +2023-10-27 14:08:29.432 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:29.432  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.432  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:29.440 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:29.440  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql +2023-10-27 14:08:29.441 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? +2023-10-27 14:08:29.442  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many countries have never been members of the UN? +2023-10-27 14:08:29.442  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71558e7c +2023-10-27 14:08:29.442 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:08:29.443  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:08:29.443  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:08:29.470  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/How_(TV_series) start:0 end:3 +2023-10-27 14:08:29.471  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Member_of_parliament start:35 end:42 +2023-10-27 14:08:29.471  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/United_Nations start:50 end:52 +2023-10-27 14:08:29.477 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:29.478  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@336d13e1 +2023-10-27 14:08:29.478 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:08:29.479  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:08:29.480  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:08:29.492  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/class +2023-10-27 14:08:29.492  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@17de4b86 +2023-10-27 14:08:29.492 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:08:29.493  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:08:29.493  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:08:29.505  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/How_(TV_series), http://dbpedia.org/resource/Member_of_parliament, http://dbpedia.org/resource/United_Nations, http://dbpedia.org/ontology/class: 172 +2023-10-27 14:08:29.505  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 +2023-10-27 14:08:29.505  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/How_(TV_series), http://dbpedia.org/resource/Member_of_parliament, http://dbpedia.org/resource/United_Nations, http://dbpedia.org/ontology/class +2023-10-27 14:08:29.505 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 83 ms +2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} +2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@1b553959 +2023-10-27 14:09:01.162  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d705c1d +2023-10-27 14:09:01.162 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:01.163  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:01.164  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:01.177 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf +2023-10-27 14:09:01.177  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql +2023-10-27 14:09:01.179 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? +2023-10-27 14:09:01.179  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What language do they speak in Poland ? +2023-10-27 14:09:01.180  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6cdc8a0d +2023-10-27 14:09:01.180 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:09:01.183  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:01.184  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:01.227 ERROR 9653 --- [nio-8098-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause + +java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) + at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} +2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@60780ff +2023-10-27 14:09:11.222  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@8c06e4f +2023-10-27 14:09:11.222 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:11.223  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:11.223  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:11.228 DEBUG 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 +2023-10-27 14:09:11.228  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql +2023-10-27 14:09:11.229 DEBUG 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:11.229  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Is samurai champloo a piece of original work or an adaptation? +2023-10-27 14:09:11.230  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cffeb8f +2023-10-27 14:09:11.230 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:09:11.231  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:11.231  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:11.256 DEBUG 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 +2023-10-27 14:09:11.257  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49fd6474 +2023-10-27 14:09:11.257 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:09:11.258  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:11.258  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:11.265  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@734715cc +2023-10-27 14:09:11.265 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:09:11.266  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:11.266  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:11.278 ERROR 9653 --- [nio-8098-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0] with root cause + +java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0 + at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:55) ~[na:na] + at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:52) ~[na:na] + at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:213) ~[na:na] + at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:210) ~[na:na] + at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:98) ~[na:na] + at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckFromToIndex(Preconditions.java:112) ~[na:na] + at java.base/jdk.internal.util.Preconditions.checkFromToIndex(Preconditions.java:349) ~[na:na] + at java.base/java.lang.AbstractStringBuilder.substring(AbstractStringBuilder.java:1086) ~[na:na] + at java.base/java.lang.StringBuilder.substring(StringBuilder.java:91) ~[na:na] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:178) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:09:12.108  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:12.108  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:12.109  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} +2023-10-27 14:09:12.109  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@7233476c +2023-10-27 14:09:12.115  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f481138 +2023-10-27 14:09:12.115 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:12.116  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:12.116  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:12.122 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd +2023-10-27 14:09:12.122  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd found in urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b at http://localhost:8080/sparql +2023-10-27 14:09:12.124 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:09:12.124  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:09:12.124  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7461ed2b +2023-10-27 14:09:12.124 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:09:12.125  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:12.125  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:12.147 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd +2023-10-27 14:09:12.148  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11861a5a +2023-10-27 14:09:12.148 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:09:12.149  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:12.149  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:12.158  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79e63721 +2023-10-27 14:09:12.158 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:09:12.159  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:12.160  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:12.167 ERROR 9653 --- [nio-8098-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0] with root cause + +java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0 + at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:55) ~[na:na] + at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:52) ~[na:na] + at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:213) ~[na:na] + at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:210) ~[na:na] + at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:98) ~[na:na] + at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckFromToIndex(Preconditions.java:112) ~[na:na] + at java.base/jdk.internal.util.Preconditions.checkFromToIndex(Preconditions.java:349) ~[na:na] + at java.base/java.lang.AbstractStringBuilder.substring(AbstractStringBuilder.java:1086) ~[na:na] + at java.base/java.lang.StringBuilder.substring(StringBuilder.java:91) ~[na:na] + at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:178) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@337792e9 +2023-10-27 14:09:46.027  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cc8b02e +2023-10-27 14:09:46.028 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:46.029  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:46.029  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:46.040 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:46.040  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql +2023-10-27 14:09:46.042 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:09:46.042  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: After whom is the Riemannian geometry named? +2023-10-27 14:09:46.042  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@14ccdd58 +2023-10-27 14:09:46.044 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:09:46.046  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:46.046  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:46.096  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/AfterMASH start:0 end:5 +2023-10-27 14:09:46.096  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Riemannian_geometry start:18 end:37 +2023-10-27 14:09:46.106 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:46.106  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4223da97 +2023-10-27 14:09:46.107 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:09:46.109  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:46.109  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:46.126  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d4ce8e0 +2023-10-27 14:09:46.126 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:09:46.127  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:46.127  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:09:46.139  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry: 86 +2023-10-27 14:09:46.139  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 +2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar6185721290344951045.cxl +2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar6185721290344951045.cxl +2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar6185721290344951045.cxl +2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry on /tmp/sina-0.0.1.jar6185721290344951045.cxl +2023-10-27 14:10:25.786  INFO 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:25.787  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:25.787  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} +2023-10-27 14:10:25.787  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@74aca57 +2023-10-27 14:10:25.795  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4080870e +2023-10-27 14:10:25.795 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:25.796  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.796  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:25.801 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 +2023-10-27 14:10:25.801  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 found in urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96 at http://localhost:8080/sparql +2023-10-27 14:10:25.803 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? +2023-10-27 14:10:25.803  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Which universities have more than 200000 students? +2023-10-27 14:10:25.803  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@54de2d23 +2023-10-27 14:10:25.803 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:10:25.804  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:10:25.804  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:10:25.862 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 +2023-10-27 14:10:25.863  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52cd41c8 +2023-10-27 14:10:25.863 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:10:25.864  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:25.864  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:25.875  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/school +2023-10-27 14:10:25.875  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30431b4 +2023-10-27 14:10:25.875 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:10:25.876  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:25.876  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:25.890  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/school: 34 +2023-10-27 14:10:25.890  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 +2023-10-27 14:10:25.920  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar2078375058284375993.cxl +2023-10-27 14:10:25.921  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar2078375058284375993.cxl +2023-10-27 14:10:25.921  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar2078375058284375993.cxl +2023-10-27 14:10:25.921  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/school on /tmp/sina-0.0.1.jar2078375058284375993.cxl +2023-10-27 14:10:26.069  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar2078375058284375993.cxl +2023-10-27 14:10:26.070 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/schooltype 14 single entity template: select * where { http://dbpedia.org/ontology/school ?p ?v0. }template: http://dbpedia.org/ontology/school ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/school ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/school ?p ?v0. }] +2023-10-27 14:10:26.070  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/school ?p ?v0. }] +2023-10-27 14:10:26.086  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@626ae4d4 +2023-10-27 14:10:26.086 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:10:26.089  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/school ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:26.089  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/school ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:26.089 DEBUG 9653 --- [nio-8098-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/school ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:10:26.096 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : processing took: 309 ms +2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@179283da +2023-10-27 14:10:27.885  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50c076c3 +2023-10-27 14:10:27.885 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:27.886  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:27.886  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:27.892 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:27.892  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql +2023-10-27 14:10:27.893 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:10:27.893  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: After whom is the Riemannian geometry named? +2023-10-27 14:10:27.893  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21848a4e +2023-10-27 14:10:27.894 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:10:27.894  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:10:27.895  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:10:27.916  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/AfterMASH start:0 end:5 +2023-10-27 14:10:27.916  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Riemannian_geometry start:18 end:37 +2023-10-27 14:10:27.922 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:27.922  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61296542 +2023-10-27 14:10:27.922 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:10:27.923  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:27.923  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:27.931  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6226b6ee +2023-10-27 14:10:27.931 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:10:27.932  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:27.932  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:10:27.940  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry: 86 +2023-10-27 14:10:27.940  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 +2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar11839560171279478588.cxl +2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar11839560171279478588.cxl +2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar11839560171279478588.cxl +2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry on /tmp/sina-0.0.1.jar11839560171279478588.cxl +2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} +2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@4cce0494 +2023-10-27 14:13:48.567  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d97d13 +2023-10-27 14:13:48.567 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:13:48.568  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:48.568  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:13:48.575 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d +2023-10-27 14:13:48.575  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d found in urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8 at http://localhost:8080/sparql +2023-10-27 14:13:48.577 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? +2023-10-27 14:13:48.577  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: When was Adidas established? +2023-10-27 14:13:48.577  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@53816af4 +2023-10-27 14:13:48.577 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:13:48.578  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:13:48.578  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:13:48.603 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d +2023-10-27 14:13:48.604  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@111e7464 +2023-10-27 14:13:48.604 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?relationurl +FROM ?graph +WHERE { + ?a a qa:AnnotationOfRelation . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?relationurl ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:13:48.605  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:13:48.605  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?relationurl +FROM +WHERE + { ?a a qa:AnnotationOfRelation ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?relationurl ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:13:48.612  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/established +2023-10-27 14:13:48.613  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49907a79 +2023-10-27 14:13:48.613 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT ?uri +FROM ?graph +WHERE { + ?a a qa:AnnotationOfClass . + ?a oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?targetQuestion; + ] ; + oa:hasBody ?uri ; + oa:annotatedAt ?time +} +ORDER BY ?start +2023-10-27 14:13:48.614  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:13:48.614  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?a a qa:AnnotationOfClass ; + oa:hasTarget _:b0 . + _:b0 a oa:SpecificResource ; + oa:hasSource . + ?a oa:hasBody ?uri ; + oa:annotatedAt ?time + } +ORDER BY ?start + +2023-10-27 14:13:48.621  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/established: 39 +2023-10-27 14:13:48.621  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 +2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar4666683110950526033.cxl +2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar4666683110950526033.cxl +2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar4666683110950526033.cxl +2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/established on /tmp/sina-0.0.1.jar4666683110950526033.cxl +2023-10-27 14:13:48.942  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar4666683110950526033.cxl +2023-10-27 14:13:48.942 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/establishedtype 14 single entity template: select * where { http://dbpedia.org/ontology/established ?p ?v0. }template: http://dbpedia.org/ontology/established ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/established ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/established ?p ?v0. }] +2023-10-27 14:13:48.942  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/established ?p ?v0. }] +2023-10-27 14:13:48.942  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@47dbd758 +2023-10-27 14:13:48.942 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +INSERT { + GRAPH ?graph { + ?a a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget ?targetQuestion . + ?a oa:hasBody ?body ; + oa:annotatedBy ?application ; + oa:annotatedAt ?time ; + qa:hasScore ?score . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?a) . + BIND (now() as ?time) . +} +2023-10-27 14:13:48.944  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/established ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.944  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/established ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.944 DEBUG 9653 --- [nio-8098-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX xsd: +PREFIX oa: + +INSERT { + GRAPH { + ?a qa:AnnotationOfAnswerSPARQL . + ?a oa:hasTarget . + ?a oa:hasBody "select * where { http://dbpedia.org/ontology/established ?p ?v0. }" . + ?a oa:annotatedBy . + ?a oa:annotatedAt ?time . + ?a qa:hasScore "10"^^xsd:float . + } +} +WHERE + { BIND(IRI(str(rand())) AS ?a) + BIND(now() AS ?time) + } + +2023-10-27 14:13:48.949 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 390 ms diff --git a/qanary-component-QBE-QAnswer/nohup.out b/qanary-component-QBE-QAnswer/nohup.out new file mode 100644 index 000000000..531bb6169 --- /dev/null +++ b/qanary-component-QBE-QAnswer/nohup.out @@ -0,0 +1,20758 @@ + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: QAnswerQueryBuilderAndExecutor  +Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.3.0  +Spring Boot Version: 2.7.0  +Java Version: 21  + +2023-10-27 12:09:22.523  INFO 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 9655 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) +2023-10-27 12:09:22.561 DEBUG 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 +2023-10-27 12:09:22.576  INFO 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:50.001  INFO 9655 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 11022 +spring.application.name = QAnswerQueryBuilderAndExecutor +spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:50.614  WARN 9655 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:51.335  WARN 9655 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:52.211  INFO 9655 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fac80 +2023-10-27 12:09:52.212  INFO 9655 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@726386ed +2023-10-27 12:09:52.237 DEBUG 9655 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@30c31dd7 +2023-10-27 12:09:52.326  INFO 9655 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs +2023-10-27 12:09:52.327  INFO 9655 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html +2023-10-27 12:09:52.370  INFO 9655 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@600b0b7 +2023-10-27 12:09:52.392  INFO 9655 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl +2023-10-27 12:09:56.181  WARN 9655 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:56.314  INFO 9655 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s +2023-10-27 12:10:02.280  INFO 9655 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 12:10:02.389  INFO 9655 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 12:10:02.390  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 12:10:02.391  INFO 9655 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@73437222 +2023-10-27 12:10:02.709  INFO 9655 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now +2023-10-27 12:10:02.711  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. +2023-10-27 12:10:02.765  INFO 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : Started Application in 44.641 seconds (JVM running for 51.876) +2023-10-27 12:10:02.970  WARN 9655 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=QAnswerQueryBuilderAndExecutor, managementUrl=http://localhost:11022/actuator, healthUrl=http://localhost:11022/actuator/health, serviceUrl=http://localhost:11022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:12.804  INFO 9655 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as df1465fa7ea6 + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: QAnswerQueryBuilderAndExecutor  +Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.3.0  +Spring Boot Version: 2.7.0  +Java Version: 21  + +2023-10-27 12:15:53.016  INFO 11768 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 11768 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) +2023-10-27 12:15:53.066 DEBUG 11768 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 +2023-10-27 12:15:53.084  INFO 11768 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:31.416  INFO 11768 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 11022 +spring.application.name = QAnswerQueryBuilderAndExecutor +spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:31.966  WARN 11768 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:32.883  WARN 11768 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:34.245  INFO 11768 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29ad44e3 +2023-10-27 12:16:34.252  INFO 11768 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15bcf458 +2023-10-27 12:16:34.262 DEBUG 11768 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@57f791c6 +2023-10-27 12:16:34.350  INFO 11768 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs +2023-10-27 12:16:34.350  INFO 11768 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html +2023-10-27 12:16:34.395  INFO 11768 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@3aacf32a +2023-10-27 12:16:34.453  INFO 11768 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl +2023-10-27 12:16:39.113  WARN 11768 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:39.234  INFO 11768 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s +2023-10-27 12:16:47.341  INFO 11768 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 12:16:47.414  INFO 11768 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 12:16:47.414  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 12:16:47.418  INFO 11768 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 12:16:47.419  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 12:16:47.419  INFO 11768 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 12:16:47.420  INFO 11768 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 12:16:47.420  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1c6c6f24 +2023-10-27 12:16:47.937  WARN 11768 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 11022 is already in use +2023-10-27 12:16:47.938  INFO 11768 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 12:16:47.938  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 12:16:47.942  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 12:16:47.952  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 12:16:48.205 ERROR 11768 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 11022 was already in use. + +Action: + +Identify and stop the process that's listening on port 11022 or configure this application to listen on another port. + +2023-10-27 13:37:22.802  WARN 9655 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=QAnswerQueryBuilderAndExecutor, managementUrl=http://localhost:11022/actuator, healthUrl=http://localhost:11022/actuator/health, serviceUrl=http://localhost:11022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: QAnswerQueryBuilderAndExecutor  +Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.3.0  +Spring Boot Version: 2.7.0  +Java Version: 21  + +2023-10-27 13:37:49.642  INFO 28735 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 28735 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) +2023-10-27 13:37:49.704 DEBUG 28735 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 +2023-10-27 13:37:49.724  INFO 28735 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:14.777  INFO 28735 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 11022 +spring.application.name = QAnswerQueryBuilderAndExecutor +spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:15.430  WARN 28735 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:16.128  WARN 28735 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:17.534  INFO 28735 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fac80 +2023-10-27 13:38:17.535  INFO 28735 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@726386ed +2023-10-27 13:38:17.575 DEBUG 28735 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@30c31dd7 +2023-10-27 13:38:17.706  INFO 28735 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs +2023-10-27 13:38:17.706  INFO 28735 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html +2023-10-27 13:38:17.749  INFO 28735 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@600b0b7 +2023-10-27 13:38:17.804  INFO 28735 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl +2023-10-27 13:38:23.277  WARN 28735 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:23.451  INFO 28735 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s +2023-10-27 13:38:31.888  INFO 28735 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:38:32.064  INFO 28735 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:38:32.064  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:38:32.065  INFO 28735 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@73437222 +2023-10-27 13:38:32.843  WARN 28735 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 11022 is already in use +2023-10-27 13:38:32.844  INFO 28735 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 13:38:32.844  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 13:38:32.844  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:38:32.845  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 13:38:33.246 ERROR 28735 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 11022 was already in use. + +Action: + +Identify and stop the process that's listening on port 11022 or configure this application to listen on another port. + + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: QAnswerQueryBuilderAndExecutor  +Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.3.0  +Spring Boot Version: 2.7.0  +Java Version: 21  + +2023-10-27 13:38:50.741  INFO 30126 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 30126 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) +2023-10-27 13:38:50.752 DEBUG 30126 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 +2023-10-27 13:38:50.756  INFO 30126 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:20.229  INFO 30126 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 11022 +spring.application.name = QAnswerQueryBuilderAndExecutor +spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:21.457  WARN 30126 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:21.908  WARN 30126 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:23.576  INFO 30126 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51650883 +2023-10-27 13:39:23.577  INFO 30126 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c4f9535 +2023-10-27 13:39:23.633 DEBUG 30126 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@615f972 +2023-10-27 13:39:23.725  INFO 30126 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs +2023-10-27 13:39:23.725  INFO 30126 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html +2023-10-27 13:39:23.772  INFO 30126 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@402f80f5 +2023-10-27 13:39:23.841  INFO 30126 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl +2023-10-27 13:39:28.471  WARN 30126 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:28.553  INFO 30126 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s +2023-10-27 13:39:36.321  INFO 30126 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor +2023-10-27 13:39:36.504  INFO 30126 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl +2023-10-27 13:39:36.505  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. +2023-10-27 13:39:36.506  INFO 30126 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. +2023-10-27 13:39:36.509  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' + Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. + NOT STARTED. + Currently in standby mode. + Number of jobs executed: 0 + Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. + Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. + +2023-10-27 13:39:36.509  INFO 30126 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. +2023-10-27 13:39:36.509  INFO 30126 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 +2023-10-27 13:39:36.510  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4088741b +2023-10-27 13:39:36.802  WARN 30126 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 11022 is already in use +2023-10-27 13:39:36.803  INFO 30126 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler +2023-10-27 13:39:36.803  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. +2023-10-27 13:39:36.803  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. +2023-10-27 13:39:36.804  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. +2023-10-27 13:39:36.992 ERROR 30126 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 11022 was already in use. + +Action: + +Identify and stop the process that's listening on port 11022 or configure this application to listen on another port. + +2023-10-27 13:54:02.295  INFO 9655 --- [io-11022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:54:02.309  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:54:02.373  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:54:02.460  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@d1abfe0 +2023-10-27 13:54:02.502  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5053db6a +2023-10-27 13:54:02.515 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:02.692  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:02.695  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:02.876 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 +2023-10-27 13:54:02.877  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 found in urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e at http://localhost:8080/sparql +2023-10-27 13:54:02.898 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? +2023-10-27 13:54:02.899  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3add2ff1 +2023-10-27 13:54:02.900 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:54:02.908  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:03.017 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? +2023-10-27 13:54:03.017  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "How many casualties were a result of the Troubles?". +2023-10-27 13:54:03.087 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? +2023-10-27 13:54:03.087  WARN 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'How many casualties were a result of the Troubles?' +2023-10-27 13:54:03.087  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: How many casualties were a result of the Troubles? +2023-10-27 13:54:03.087  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : How many casualties were a result of the Troubles? +2023-10-27 13:54:03.094  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 13:54:03.094  WARN 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[How many casualties were a result of the Troubles?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 13:54:03.103 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 13:54:03.138 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:54:03.138 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[How many casualties were a result of the Troubles?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 13:54:03.184  INFO 9655 --- [io-11022-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-814474233 +2023-10-27 13:54:03.552 DEBUG 9655 --- [io-11022-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@73f5a1ee +2023-10-27 13:54:05.967 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:05.968 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:54:05.973  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'How many casualties were a result of the Troubles?': [{question={answers={ + "head" : { + "vars" : [ + "count" + ] + }, + "results" : { + "bindings" : [ + { + "count" : { + "datatype" : "http://www.w3.org/2001/XMLSchema#integer", + "type" : "literal", + "value" : "0" + } + } + ] + } +}, language=[{SPARQL=SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000, confidence=0.01}]}}] +2023-10-27 13:54:05.990  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http:\/\/www.w3.org\/2001\/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]}}]} +2023-10-27 13:54:05.994 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]} +2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} +2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} +2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count +2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] +2023-10-27 13:54:05.995  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 +2023-10-27 13:54:05.995  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals +2023-10-27 13:54:05.997  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (http://www.w3.org/2001/XMLSchema#integer). +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]} +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] +2023-10-27 13:54:05.997  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 +2023-10-27 13:54:05.997  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]} +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}] +2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01} +2023-10-27 13:54:05.998 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000 +2023-10-27 13:54:05.998 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.01 +2023-10-27 13:54:06.003 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 +2023-10-27 13:54:06.008  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 13:54:06.009 DEBUG 9655 --- [io-11022-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 "0"^^ ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.01"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("How many casualties were a result of the Troubles?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"count\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"count\\\" : { \\\"datatype\\\" : \\\"http://www.w3.org/2001/XMLSchema#integer\\\", \\\"type\\\" : \\\"literal\\\", \\\"value\\\" : \\\"0\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000\",\"confidence\":0.01}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 13:54:06.058 DEBUG 9655 --- [io-11022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 3752 ms +2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@55396b3a +2023-10-27 13:54:28.605  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5bfe9fed +2023-10-27 13:54:28.605 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:54:28.606  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:28.607  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:54:28.615 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:28.615  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql +2023-10-27 13:54:28.618 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:28.618  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fc1004a +2023-10-27 13:54:28.618 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:54:28.620  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:54:28.663  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(0,4) (score=0.9163943>=0.5) ignored=false +2023-10-27 13:54:28.663  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(13,25) (score=1.0>=0.5) ignored=false +2023-10-27 13:54:28.664  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(29,49) (score=0.9987039>=0.5) ignored=false +2023-10-27 13:54:28.680 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:28.680  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (3 items) of getNamedEntitiesOfQuestion for question "What are the German names of academic disciplines containing “linguistik”?". +2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/String_theory at (0,4) with score 0.9163943 +2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/German_name at (13,25) with score 1.0 +2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Outline_of_academic_disciplines at (29,49) with score 0.9987039 +2023-10-27 13:54:28.682 DEBUG 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'academic disciplines' at (29,49) results in: What are the German names of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?, first:|What are the German names of |, second:| containing “linguistik”?| +2023-10-27 13:54:28.682 DEBUG 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'German names' at (13,25) results in: What are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?, first:|What are the |, second:| of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?| +2023-10-27 13:54:28.682 DEBUG 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 2. replace of 'What' at (0,4) results in: http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?, first:||, second:| are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?| +2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”? +2023-10-27 13:54:28.683  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 13:54:28.683  WARN 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 13:54:28.683 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 13:54:28.683 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:54:28.683 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 13:54:28.683  INFO 9655 --- [o-11022-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=519785586 +2023-10-27 13:54:28.770 DEBUG 9655 --- [o-11022-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67630886 +2023-10-27 13:54:30.666 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:54:30.798 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:54:30.805  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?': [{question={answers={ + "head" : { + "vars" : [ + "s1" + ] + }, + "results" : { + "bindings" : [ + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1000247" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1000754" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100144455" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100144534" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100144680" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100144747" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100145678" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100145777" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100145971" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100146260" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100146844" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100147501" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100151385" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100152629" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100152630" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100152930" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100153068" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100153102" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100153189" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100153982" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100153990" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100154035" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100154202" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100154295" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100154441" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100154951" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100155200" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100155250" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100155318" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100155778" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100156203" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100156231" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100156248" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100195598" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100195938" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100196247" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100196594" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100196940" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100197315" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100197689" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100198447" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100198817" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100199144" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100199473" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100199830" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100200238" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100217115" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100230388" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100230390" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100230938" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100233380" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100249778" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100250595" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251109" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251215" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251224" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251256" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251329" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251442" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251673" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100254362" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100255539" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256400" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1002567" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100262375" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100268229" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100268935" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100268938" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100269136" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100272509" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100273231" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1002735" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1002754" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100277382" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100279065" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1002872" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1002954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299026" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299077" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299083" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299090" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299217" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299298" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299313" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299380" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299388" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299406" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299417" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299423" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299587" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299863" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299947" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299953" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299958" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299966" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100299982" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300045" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300049" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300054" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300060" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300065" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300071" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300099" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300103" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300109" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300148" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300177" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300191" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100300199" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301121" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301129" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301278" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301339" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301356" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301385" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301399" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301408" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301414" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301425" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301742" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301758" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100301991" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302005" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302015" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302021" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302029" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302036" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302043" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302048" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302053" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302058" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302064" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302070" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302086" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302101" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302113" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302133" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302160" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302176" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302194" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302207" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302219" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302225" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302231" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302236" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302241" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302246" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302252" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302259" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302265" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302270" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302276" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302292" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302308" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302322" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302340" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302363" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302379" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302778" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302801" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302816" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302830" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302888" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302893" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302899" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302904" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302909" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302920" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302935" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302948" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100302963" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303010" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303023" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303066" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303077" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303086" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303091" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303097" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303102" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303106" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303110" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303116" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303122" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303129" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303141" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303158" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303338" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303344" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303350" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303356" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303361" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303366" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303379" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303396" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303410" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303425" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303453" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303473" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303516" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303533" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303539" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303544" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303788" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100303995" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304381" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304387" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304392" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304397" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304404" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304409" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304414" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304420" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304426" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304431" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100304437" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305144" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305161" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305174" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305189" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305344" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305360" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305416" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305750" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305773" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100305982" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306100" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306306" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306498" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306517" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306524" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306529" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306627" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306725" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306866" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307210" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307697" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307712" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307728" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307748" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307770" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307789" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307804" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307854" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307865" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307876" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100307883" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100308100" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100308125" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100308558" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100308806" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100308823" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309092" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309158" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309235" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309261" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309289" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309314" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309326" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309339" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309353" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309359" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309363" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309369" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309376" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309382" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309387" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309395" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309429" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309455" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309480" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309508" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309541" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309559" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309572" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309587" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309615" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309631" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309638" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309654" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309689" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309700" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309746" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309768" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309824" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309837" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100309853" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310240" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310255" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310285" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310292" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310304" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310318" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310324" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310335" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310622" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310628" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310640" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310664" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310687" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310702" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310717" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310735" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310750" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310762" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310769" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310776" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310802" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310809" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310936" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310950" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310969" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310977" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100310991" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311004" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311010" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311021" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311038" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311049" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311076" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311092" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311106" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311117" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311123" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311128" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311134" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311140" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311153" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311166" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311184" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311190" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311195" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311209" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311224" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311240" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311283" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311483" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311536" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311665" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100311953" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312032" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312037" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312050" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312056" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312062" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312069" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312080" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312086" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312092" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312097" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312110" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312127" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312142" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312154" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312165" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312180" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312202" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312214" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312221" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312227" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312234" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312239" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312244" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312250" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312257" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312264" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312272" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312278" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312305" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312320" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312336" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312353" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312366" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312377" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312383" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312389" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312396" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312402" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312844" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312860" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312963" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312973" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100312995" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313083" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313095" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313182" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313193" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313206" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313221" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313232" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313237" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313244" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313250" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313256" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313261" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313267" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313272" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313279" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313285" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313292" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313298" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313347" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313363" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313380" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313393" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313408" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313412" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313417" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313424" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313431" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313435" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313442" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313449" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313458" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313466" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313472" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313478" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313486" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313491" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313499" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313516" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313530" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313544" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313555" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313569" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313581" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313586" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313591" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313597" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313603" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313608" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313613" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313615" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313620" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313625" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313656" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313905" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313911" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313917" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313928" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313941" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313948" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313959" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313970" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100313977" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100314172" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100314427" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315180" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315765" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315775" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315781" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315787" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315799" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315807" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315813" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315819" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315830" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100315862" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316001" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316008" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316015" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316020" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316027" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316030" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316032" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316044" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316050" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316063" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316069" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316076" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316081" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316087" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316094" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316100" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100316999" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100317042" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100317068" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100317247" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100318807" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100320054" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100320076" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100324295" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100326023" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100326425" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100327037" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328577" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328864" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328872" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328906" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328918" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328935" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328944" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328946" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328947" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328948" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328953" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328971" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100328974" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329092" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329093" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329107" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329734" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329735" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329737" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329739" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329740" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329741" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329743" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329745" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329746" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329749" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100329750" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330235" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330265" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330279" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330299" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330300" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330303" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330310" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330311" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330313" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330314" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330315" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330317" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330320" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330321" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330323" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330324" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330325" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330327" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330328" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330329" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330334" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330339" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330346" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330348" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330363" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330364" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330371" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330373" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330374" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330375" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330376" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330377" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330379" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330380" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330381" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330382" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330383" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330384" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330385" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330387" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330389" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330390" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330391" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330392" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330393" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330394" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330395" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330397" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330399" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330400" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330402" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330404" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330405" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330406" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330412" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330414" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330417" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330418" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330419" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330420" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330421" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330422" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330431" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330435" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330508" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330509" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330510" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330511" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330512" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330516" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330648" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330652" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330656" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330661" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330665" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330669" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330673" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330675" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330679" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330688" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330694" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330698" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330700" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330701" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330705" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330706" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330707" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330708" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330710" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330714" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330719" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330723" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330724" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330727" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330729" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330734" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330742" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330748" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330749" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330753" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330756" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330766" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330771" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330775" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330785" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330788" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330791" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330792" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330793" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330798" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330811" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330821" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330824" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330826" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330829" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330831" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330834" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330835" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330836" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330837" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330838" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330840" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330844" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330847" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330851" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330854" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330857" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330860" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330861" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330865" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330866" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330870" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330874" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330876" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330886" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330915" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330916" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330917" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330918" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330919" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330920" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330921" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330922" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330928" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330963" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330982" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330989" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100330998" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100331031" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100334054" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100336530" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100337757" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100337780" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100337811" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100337852" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100337866" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100337879" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100337892" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100338157" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100338973" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339047" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339071" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339124" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339159" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339167" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339210" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339218" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339228" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339236" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339243" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339265" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339272" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339284" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339292" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339299" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339306" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339313" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339351" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339360" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339366" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339374" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339383" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339392" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339399" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339407" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339413" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339420" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339428" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339441" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339453" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339462" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339469" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339477" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339483" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339490" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339498" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339509" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339516" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339525" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339533" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339542" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339570" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339578" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339607" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339616" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339624" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339634" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339641" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339647" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339654" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339840" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339841" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100339996" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100340191" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100340192" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348444" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348445" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348446" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348447" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348448" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348449" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348450" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348451" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348453" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348455" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348521" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348522" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348523" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348524" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348526" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348528" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348530" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348531" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348532" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348539" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348549" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348558" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348567" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348577" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348584" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348586" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348588" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348589" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348591" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348593" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348594" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348597" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348601" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348602" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348603" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348604" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348605" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348607" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348608" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348609" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348610" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348612" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348614" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348617" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348618" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348619" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348621" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348622" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348624" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348627" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348628" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348721" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348727" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348728" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348732" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348733" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348735" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348741" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348757" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348761" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348764" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348765" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348768" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348770" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348779" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100348780" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350655" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350657" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350659" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350664" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350666" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350670" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350673" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100351325" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100351628" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352354" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352368" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352377" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352384" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352392" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352402" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352413" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352422" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352433" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352443" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352453" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352463" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352470" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352487" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352498" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352506" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352517" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352527" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352537" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352551" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352563" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352578" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352592" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352606" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352664" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352675" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352682" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352702" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100352914" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353194" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353207" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353219" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353230" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353330" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353371" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353392" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353401" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353407" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353414" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353422" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353431" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353437" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353456" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353463" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353469" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353476" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353487" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353502" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353517" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353535" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353546" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353558" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353562" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353564" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353565" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353570" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353571" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353574" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353576" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353578" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353579" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353580" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353582" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353583" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353594" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353617" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353641" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353642" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353643" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353646" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353651" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353652" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353654" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353656" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353660" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100353968" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100354043" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100354045" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100354423" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100354947" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100354956" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355013" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355141" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355149" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355216" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355279" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355287" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355304" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355485" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355495" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355511" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355809" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355818" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355880" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355950" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355968" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100355976" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100356058" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100357497" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100357511" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359368" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359370" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359441" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359499" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359508" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359515" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359933" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359943" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359953" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359964" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359973" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359983" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100359993" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360003" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360012" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360024" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360032" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360042" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360054" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360065" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360074" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100360084" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100361805" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100361980" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100362504" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100362514" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100362517" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100363225" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100364543" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100364546" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100364762" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100364763" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100364766" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100364768" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100374668" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100374735" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100375062" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100376019" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100377532" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100391149" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100392179" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100416944" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100417179" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100417231" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100417283" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100417338" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100418335" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100424745" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100431458" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100431555" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100432345" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100436796" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100437195" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100448532" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100453142" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100479486" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100489695" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100500386" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100501561" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100507690" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100547484" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100550094" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100550186" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100550401" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100551359" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100551645" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100552014" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100552370" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1005582" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100564168" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100565605" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100566057" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100588404" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100624882" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100700466" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100700585" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100700626" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100700704" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100700750" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100706477" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100708447" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100708484" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100708505" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100708629" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100709404" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100709416" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100709466" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100710221" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100715995" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100715996" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100716003" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100716094" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100716194" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100716197" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100716203" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100716212" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100716357" + } + } + ] + } +}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000, confidence=0.08}]}}] +2023-10-27 13:54:30.816  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]}}]} +2023-10-27 13:54:30.824 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 13:54:30.836 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]}} +2023-10-27 13:54:30.836 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]} +2023-10-27 13:54:30.838 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 13:54:30.839 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}] +2023-10-27 13:54:30.840  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q1000247 +2023-10-27 13:54:30.841  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. +2023-10-27 13:54:30.841 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 13:54:30.847 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]}} +2023-10-27 13:54:30.847 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]} +2023-10-27 13:54:30.849 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 13:54:30.849 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}] +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q1000247 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000754 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100144455 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100144534 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100144680 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144747 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100145678 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100145777 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100145971 +2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100146260 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100146844 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100147501 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100151385 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100152629 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100152630 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100152930 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100153068 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100153102 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100153189 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100153982 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q100153990 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100154035 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100154202 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100154295 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100154441 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100154951 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100155200 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100155250 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100155318 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100155778 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100156203 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100156231 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100156248 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100195598 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100195938 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100196247 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100196594 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100196940 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100197315 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100197689 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100198447 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100198817 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100199144 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100199473 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100199830 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100200238 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100217115 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q100230388 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100230390 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q100230938 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100233380 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100249778 +2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100250595 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100251109 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100251215 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100251224 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100251256 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100251329 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100251442 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100251673 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q100254362 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100255539 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100256400 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q1002567 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100262375 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100268229 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100268935 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100268938 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100269136 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100272509 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100273231 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q1002735 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1002754 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100277382 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100279065 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q1002872 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q1002954 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100299026 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100299077 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100299083 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100299090 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100299217 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100299298 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100299313 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100299380 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100299388 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100299406 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100299417 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100299423 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100299587 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100299863 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100299947 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100299953 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100299958 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100299966 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100299982 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100300045 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100300049 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100300054 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100300060 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100300065 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100300071 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100300099 +2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100300103 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100300109 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100300148 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100300177 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100300191 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100300199 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100301121 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100301129 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100301278 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100301339 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100301356 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100301385 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100301399 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100301408 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100301414 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100301425 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100301742 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100301758 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100301991 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100302005 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100302015 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100302021 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100302029 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100302036 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100302043 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100302048 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100302053 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100302058 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100302064 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100302070 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100302086 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100302101 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100302113 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100302133 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q100302160 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q100302176 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q100302194 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q100302207 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q100302219 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q100302225 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q100302231 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q100302236 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q100302241 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q100302246 +2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q100302252 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q100302259 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q100302265 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q100302270 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q100302276 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q100302292 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q100302308 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q100302322 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q100302340 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q100302363 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q100302379 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q100302778 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q100302801 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q100302816 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q100302830 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q100302888 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q100302893 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q100302899 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q100302904 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q100302909 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q100302920 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q100302935 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q100302948 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q100302963 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q100303010 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q100303023 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q100303066 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q100303077 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q100303086 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q100303091 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q100303097 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q100303102 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q100303106 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q100303110 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q100303116 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q100303122 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q100303129 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q100303141 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q100303158 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q100303338 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q100303344 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q100303350 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q100303356 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q100303361 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q100303366 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q100303379 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q100303396 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q100303410 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q100303425 +2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q100303453 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q100303473 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q100303516 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q100303533 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q100303539 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q100303544 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q100303788 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q100303995 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q100304381 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q100304387 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q100304392 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q100304397 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q100304404 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q100304409 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q100304414 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q100304420 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q100304426 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q100304431 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q100304437 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q100305144 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q100305161 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q100305174 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q100305189 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q100305344 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q100305360 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q100305416 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q100305750 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q100305773 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q100305982 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q100306100 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q100306306 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q100306498 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q100306517 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q100306524 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q100306529 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q100306627 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q100306725 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q100306866 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q100307210 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q100307697 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q100307712 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q100307728 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q100307748 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q100307770 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q100307789 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q100307804 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q100307854 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q100307865 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q100307876 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q100307883 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q100308100 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q100308125 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q100308558 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q100308806 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q100308823 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q100309092 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q100309158 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q100309235 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q100309261 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q100309289 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q100309314 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q100309326 +2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q100309339 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q100309353 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q100309359 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q100309363 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q100309369 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q100309376 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q100309382 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q100309387 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q100309395 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q100309429 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q100309455 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q100309480 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q100309508 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q100309541 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q100309559 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q100309572 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q100309587 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q100309615 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q100309631 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q100309638 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q100309654 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q100309689 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q100309700 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q100309746 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q100309768 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q100309824 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q100309837 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q100309853 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q100310240 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q100310255 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q100310285 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q100310292 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q100310304 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q100310318 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q100310324 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q100310335 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q100310622 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q100310628 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q100310640 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q100310664 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q100310687 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q100310702 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q100310717 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q100310735 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q100310750 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q100310762 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q100310769 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q100310776 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q100310802 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q100310809 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q100310936 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q100310950 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q100310969 +2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q100310977 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q100310991 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q100311004 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q100311010 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q100311021 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q100311038 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q100311049 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q100311076 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q100311092 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q100311106 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q100311117 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q100311123 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q100311128 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q100311134 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q100311140 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q100311153 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q100311166 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q100311184 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q100311190 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q100311195 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q100311209 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q100311224 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q100311240 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q100311283 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q100311483 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q100311536 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q100311665 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q100311953 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q100312032 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q100312037 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q100312050 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q100312056 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q100312062 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q100312069 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q100312080 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q100312086 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q100312092 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q100312097 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q100312110 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q100312127 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q100312142 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q100312154 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q100312165 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q100312180 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q100312202 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q100312214 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q100312221 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q100312227 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q100312234 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q100312239 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q100312244 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q100312250 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q100312257 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q100312264 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q100312272 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q100312278 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q100312305 +2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q100312320 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q100312336 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q100312353 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q100312366 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q100312377 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q100312383 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q100312389 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q100312396 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q100312402 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q100312844 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q100312860 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q100312963 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q100312973 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q100312995 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q100313083 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q100313095 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q100313182 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q100313193 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q100313206 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q100313221 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q100313232 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q100313237 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q100313244 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q100313250 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q100313256 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q100313261 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q100313267 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q100313272 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q100313279 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q100313285 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q100313292 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q100313298 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q100313347 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q100313363 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q100313380 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q100313393 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q100313408 +2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q100313412 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q100313417 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q100313424 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q100313431 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q100313435 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q100313442 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q100313449 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q100313458 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q100313466 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q100313472 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q100313478 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q100313486 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q100313491 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q100313499 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q100313516 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q100313530 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q100313544 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q100313555 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q100313569 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q100313581 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q100313586 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q100313591 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q100313597 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q100313603 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q100313608 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q100313613 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q100313615 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q100313620 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q100313625 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q100313656 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q100313905 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q100313911 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q100313917 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q100313928 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q100313941 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q100313948 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q100313954 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q100313959 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q100313970 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q100313977 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q100314172 +2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q100314427 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q100315180 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q100315765 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q100315775 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q100315781 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q100315787 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q100315799 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q100315807 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q100315813 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q100315819 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q100315830 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q100315862 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q100316001 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q100316008 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q100316015 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q100316020 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q100316027 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q100316030 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q100316032 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q100316044 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q100316050 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q100316063 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q100316069 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q100316076 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q100316081 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q100316087 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q100316094 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q100316100 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q100316999 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q100317042 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q100317068 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q100317247 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q100318807 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q100320054 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q100320076 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q100324295 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q100326023 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q100326425 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q100327037 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q100328577 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q100328864 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q100328872 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q100328906 +2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q100328918 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q100328935 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q100328944 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q100328946 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q100328947 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q100328948 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q100328953 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q100328954 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q100328971 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q100328974 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q100329092 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q100329093 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q100329107 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q100329734 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q100329735 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q100329737 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q100329739 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q100329740 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q100329741 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q100329743 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q100329745 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q100329746 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q100329749 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q100329750 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q100330235 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q100330265 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q100330279 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q100330299 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q100330300 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q100330303 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q100330310 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q100330311 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q100330313 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q100330314 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q100330315 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q100330317 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q100330320 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q100330321 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q100330323 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q100330324 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q100330325 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q100330327 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q100330328 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q100330329 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q100330334 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q100330339 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q100330346 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q100330348 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q100330363 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q100330364 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q100330371 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q100330373 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q100330374 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q100330375 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q100330376 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q100330377 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q100330379 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q100330380 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q100330381 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q100330382 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q100330383 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q100330384 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q100330385 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q100330387 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q100330389 +2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q100330390 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q100330391 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q100330392 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q100330393 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q100330394 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q100330395 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q100330397 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q100330399 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q100330400 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q100330402 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q100330404 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q100330405 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q100330406 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q100330412 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q100330414 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q100330417 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q100330418 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q100330419 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q100330420 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q100330421 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q100330422 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q100330431 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q100330435 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q100330508 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q100330509 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q100330510 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q100330511 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q100330512 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q100330516 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q100330648 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q100330652 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q100330656 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q100330661 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q100330665 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q100330669 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q100330673 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q100330675 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q100330679 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q100330688 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q100330694 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q100330698 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q100330700 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q100330701 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q100330705 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q100330706 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q100330707 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q100330708 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q100330710 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q100330714 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q100330719 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q100330723 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q100330724 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q100330727 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q100330729 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q100330734 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q100330742 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q100330748 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q100330749 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q100330753 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q100330756 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q100330766 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q100330771 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q100330775 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q100330785 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q100330788 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q100330791 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q100330792 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q100330793 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q100330798 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q100330811 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q100330821 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q100330824 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q100330826 +2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q100330829 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q100330831 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q100330834 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q100330835 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q100330836 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q100330837 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q100330838 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q100330840 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q100330844 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q100330847 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q100330851 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q100330854 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q100330857 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q100330860 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q100330861 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q100330865 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q100330866 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q100330870 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q100330874 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q100330876 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q100330886 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q100330915 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q100330916 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q100330917 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q100330918 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q100330919 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q100330920 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q100330921 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q100330922 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q100330928 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q100330963 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q100330982 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q100330989 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q100330998 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q100331031 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q100334054 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q100336530 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q100337757 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q100337780 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q100337811 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q100337852 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q100337866 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q100337879 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q100337892 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q100338157 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q100338973 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q100339047 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q100339071 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q100339124 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q100339159 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q100339167 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q100339210 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q100339218 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q100339228 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q100339236 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q100339243 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q100339265 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q100339272 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q100339284 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q100339292 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q100339299 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q100339306 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q100339313 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q100339351 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q100339360 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q100339366 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q100339374 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q100339383 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q100339392 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q100339399 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q100339407 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q100339413 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q100339420 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q100339428 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q100339441 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q100339453 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q100339462 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q100339469 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q100339477 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q100339483 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q100339490 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q100339498 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q100339509 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q100339516 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q100339525 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q100339533 +2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q100339542 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q100339570 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q100339578 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q100339607 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q100339616 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q100339624 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q100339634 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q100339641 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q100339647 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q100339654 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q100339840 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q100339841 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q100339996 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q100340191 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q100340192 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q100348444 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q100348445 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q100348446 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q100348447 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q100348448 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q100348449 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q100348450 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q100348451 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q100348453 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q100348455 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q100348521 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q100348522 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q100348523 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q100348524 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q100348526 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q100348528 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q100348530 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q100348531 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q100348532 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q100348539 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q100348549 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q100348558 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q100348567 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q100348577 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q100348584 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q100348586 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q100348588 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q100348589 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q100348591 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q100348593 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q100348594 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q100348597 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q100348601 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q100348602 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q100348603 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q100348604 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q100348605 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q100348607 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q100348608 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q100348609 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q100348610 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q100348612 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q100348614 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q100348617 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q100348618 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q100348619 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q100348621 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q100348622 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q100348624 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q100348627 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q100348628 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q100348721 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q100348727 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q100348728 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q100348732 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q100348733 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q100348735 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q100348741 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q100348757 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q100348761 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q100348764 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q100348765 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q100348768 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q100348770 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q100348779 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q100348780 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q100350655 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q100350657 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q100350659 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q100350664 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q100350666 +2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q100350670 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q100350673 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q100351325 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q100351628 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q100352354 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q100352368 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q100352377 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q100352384 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q100352392 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q100352402 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q100352413 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q100352422 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q100352433 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q100352443 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q100352453 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q100352463 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q100352470 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q100352487 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q100352498 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q100352506 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q100352517 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q100352527 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q100352537 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q100352551 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q100352563 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q100352578 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q100352592 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q100352606 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q100352664 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q100352675 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q100352682 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q100352702 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q100352914 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q100353194 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q100353207 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q100353219 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q100353230 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q100353330 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q100353371 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q100353392 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q100353401 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q100353407 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q100353414 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q100353422 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q100353431 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q100353437 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q100353456 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q100353463 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q100353469 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q100353476 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q100353487 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q100353502 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q100353517 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q100353535 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q100353546 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q100353558 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q100353562 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q100353564 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q100353565 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q100353570 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q100353571 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q100353574 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q100353576 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q100353578 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q100353579 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q100353580 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q100353582 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q100353583 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q100353594 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q100353617 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q100353641 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q100353642 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q100353643 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q100353646 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q100353651 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q100353652 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q100353654 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q100353656 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q100353660 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q100353968 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q100354043 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q100354045 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q100354423 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q100354947 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q100354956 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q100355013 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q100355141 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q100355149 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q100355216 +2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q100355279 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q100355287 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q100355304 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q100355485 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q100355495 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q100355511 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q100355809 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q100355818 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q100355880 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q100355950 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q100355968 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q100355976 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q100356058 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q100357497 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q100357511 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q100359368 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q100359370 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q100359441 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q100359499 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q100359508 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q100359515 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q100359933 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q100359943 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q100359953 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q100359964 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q100359973 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q100359983 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q100359993 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q100360003 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q100360012 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q100360024 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q100360032 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q100360042 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q100360054 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q100360065 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q100360074 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q100360084 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q100361805 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q100361980 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q100362504 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q100362514 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q100362517 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q100363225 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q100364543 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q100364546 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q100364762 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q100364763 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q100364766 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q100364768 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q100374668 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q100374735 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q100375062 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q100376019 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q100377532 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q100391149 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q100392179 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q100416944 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q100417179 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q100417231 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q100417283 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q100417338 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q100418335 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q100424745 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q100431458 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q100431555 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q100432345 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q100436796 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q100437195 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q100448532 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q100453142 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q100479486 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q100489695 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q100500386 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q100501561 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q100507690 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q100547484 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q100550094 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q100550186 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q100550401 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q100551359 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q100551645 +2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q100552014 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q100552370 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q1005582 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q100564168 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q100565605 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q100566057 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q100588404 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q100624882 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q100700466 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q100700585 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q100700626 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q100700704 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q100700750 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q100706477 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q100708447 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q100708484 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q100708505 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q100708629 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q100709404 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q100709416 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q100709466 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q100710221 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q100715995 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q100715996 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q100716003 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q100716094 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q100716194 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q100716197 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q100716203 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q100716212 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q100716357 +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources +2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. +2023-10-27 13:54:30.867 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 13:54:30.872 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]}} +2023-10-27 13:54:30.872 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]} +2023-10-27 13:54:30.874 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 13:54:30.874 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}] +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q1000247 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000754 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100144455 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100144534 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100144680 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144747 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100145678 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100145777 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100145971 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100146260 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100146844 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100147501 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100151385 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100152629 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100152630 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100152930 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100153068 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100153102 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100153189 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100153982 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q100153990 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100154035 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100154202 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100154295 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100154441 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100154951 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100155200 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100155250 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100155318 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100155778 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100156203 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100156231 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100156248 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100195598 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100195938 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100196247 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100196594 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100196940 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100197315 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100197689 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100198447 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100198817 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100199144 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100199473 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100199830 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100200238 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100217115 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q100230388 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100230390 +2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q100230938 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100233380 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100249778 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100250595 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100251109 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100251215 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100251224 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100251256 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100251329 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100251442 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100251673 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q100254362 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100255539 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100256400 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q1002567 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100262375 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100268229 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100268935 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100268938 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100269136 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100272509 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100273231 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q1002735 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1002754 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100277382 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100279065 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q1002872 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q1002954 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100299026 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100299077 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100299083 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100299090 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100299217 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100299298 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100299313 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100299380 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100299388 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100299406 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100299417 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100299423 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100299587 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100299863 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100299947 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100299953 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100299958 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100299966 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100299982 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100300045 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100300049 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100300054 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100300060 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100300065 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100300071 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100300099 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100300103 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100300109 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100300148 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100300177 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100300191 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100300199 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100301121 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100301129 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100301278 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100301339 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100301356 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100301385 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100301399 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100301408 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100301414 +2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100301425 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100301742 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100301758 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100301991 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100302005 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100302015 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100302021 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100302029 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100302036 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100302043 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100302048 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100302053 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100302058 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100302064 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100302070 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100302086 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100302101 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100302113 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100302133 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q100302160 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q100302176 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q100302194 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q100302207 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q100302219 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q100302225 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q100302231 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q100302236 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q100302241 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q100302246 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q100302252 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q100302259 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q100302265 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q100302270 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q100302276 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q100302292 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q100302308 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q100302322 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q100302340 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q100302363 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q100302379 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q100302778 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q100302801 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q100302816 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q100302830 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q100302888 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q100302893 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q100302899 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q100302904 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q100302909 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q100302920 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q100302935 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q100302948 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q100302963 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q100303010 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q100303023 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q100303066 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q100303077 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q100303086 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q100303091 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q100303097 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q100303102 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q100303106 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q100303110 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q100303116 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q100303122 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q100303129 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q100303141 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q100303158 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q100303338 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q100303344 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q100303350 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q100303356 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q100303361 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q100303366 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q100303379 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q100303396 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q100303410 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q100303425 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q100303453 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q100303473 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q100303516 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q100303533 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q100303539 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q100303544 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q100303788 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q100303995 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q100304381 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q100304387 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q100304392 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q100304397 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q100304404 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q100304409 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q100304414 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q100304420 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q100304426 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q100304431 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q100304437 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q100305144 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q100305161 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q100305174 +2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q100305189 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q100305344 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q100305360 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q100305416 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q100305750 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q100305773 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q100305982 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q100306100 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q100306306 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q100306498 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q100306517 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q100306524 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q100306529 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q100306627 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q100306725 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q100306866 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q100307210 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q100307697 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q100307712 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q100307728 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q100307748 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q100307770 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q100307789 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q100307804 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q100307854 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q100307865 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q100307876 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q100307883 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q100308100 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q100308125 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q100308558 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q100308806 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q100308823 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q100309092 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q100309158 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q100309235 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q100309261 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q100309289 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q100309314 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q100309326 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q100309339 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q100309353 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q100309359 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q100309363 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q100309369 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q100309376 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q100309382 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q100309387 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q100309395 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q100309429 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q100309455 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q100309480 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q100309508 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q100309541 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q100309559 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q100309572 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q100309587 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q100309615 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q100309631 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q100309638 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q100309654 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q100309689 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q100309700 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q100309746 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q100309768 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q100309824 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q100309837 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q100309853 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q100310240 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q100310255 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q100310285 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q100310292 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q100310304 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q100310318 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q100310324 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q100310335 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q100310622 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q100310628 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q100310640 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q100310664 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q100310687 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q100310702 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q100310717 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q100310735 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q100310750 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q100310762 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q100310769 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q100310776 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q100310802 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q100310809 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q100310936 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q100310950 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q100310969 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q100310977 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q100310991 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q100311004 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q100311010 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q100311021 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q100311038 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q100311049 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q100311076 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q100311092 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q100311106 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q100311117 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q100311123 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q100311128 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q100311134 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q100311140 +2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q100311153 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q100311166 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q100311184 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q100311190 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q100311195 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q100311209 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q100311224 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q100311240 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q100311283 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q100311483 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q100311536 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q100311665 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q100311953 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q100312032 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q100312037 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q100312050 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q100312056 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q100312062 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q100312069 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q100312080 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q100312086 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q100312092 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q100312097 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q100312110 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q100312127 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q100312142 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q100312154 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q100312165 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q100312180 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q100312202 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q100312214 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q100312221 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q100312227 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q100312234 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q100312239 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q100312244 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q100312250 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q100312257 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q100312264 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q100312272 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q100312278 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q100312305 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q100312320 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q100312336 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q100312353 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q100312366 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q100312377 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q100312383 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q100312389 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q100312396 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q100312402 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q100312844 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q100312860 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q100312963 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q100312973 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q100312995 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q100313083 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q100313095 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q100313182 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q100313193 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q100313206 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q100313221 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q100313232 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q100313237 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q100313244 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q100313250 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q100313256 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q100313261 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q100313267 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q100313272 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q100313279 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q100313285 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q100313292 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q100313298 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q100313347 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q100313363 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q100313380 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q100313393 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q100313408 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q100313412 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q100313417 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q100313424 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q100313431 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q100313435 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q100313442 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q100313449 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q100313458 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q100313466 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q100313472 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q100313478 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q100313486 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q100313491 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q100313499 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q100313516 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q100313530 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q100313544 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q100313555 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q100313569 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q100313581 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q100313586 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q100313591 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q100313597 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q100313603 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q100313608 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q100313613 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q100313615 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q100313620 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q100313625 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q100313656 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q100313905 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q100313911 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q100313917 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q100313928 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q100313941 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q100313948 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q100313954 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q100313959 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q100313970 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q100313977 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q100314172 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q100314427 +2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q100315180 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q100315765 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q100315775 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q100315781 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q100315787 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q100315799 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q100315807 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q100315813 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q100315819 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q100315830 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q100315862 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q100316001 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q100316008 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q100316015 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q100316020 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q100316027 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q100316030 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q100316032 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q100316044 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q100316050 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q100316063 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q100316069 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q100316076 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q100316081 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q100316087 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q100316094 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q100316100 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q100316999 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q100317042 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q100317068 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q100317247 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q100318807 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q100320054 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q100320076 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q100324295 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q100326023 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q100326425 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q100327037 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q100328577 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q100328864 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q100328872 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q100328906 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q100328918 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q100328935 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q100328944 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q100328946 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q100328947 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q100328948 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q100328953 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q100328954 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q100328971 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q100328974 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q100329092 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q100329093 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q100329107 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q100329734 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q100329735 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q100329737 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q100329739 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q100329740 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q100329741 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q100329743 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q100329745 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q100329746 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q100329749 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q100329750 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q100330235 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q100330265 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q100330279 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q100330299 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q100330300 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q100330303 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q100330310 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q100330311 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q100330313 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q100330314 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q100330315 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q100330317 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q100330320 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q100330321 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q100330323 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q100330324 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q100330325 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q100330327 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q100330328 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q100330329 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q100330334 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q100330339 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q100330346 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q100330348 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q100330363 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q100330364 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q100330371 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q100330373 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q100330374 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q100330375 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q100330376 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q100330377 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q100330379 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q100330380 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q100330381 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q100330382 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q100330383 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q100330384 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q100330385 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q100330387 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q100330389 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q100330390 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q100330391 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q100330392 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q100330393 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q100330394 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q100330395 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q100330397 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q100330399 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q100330400 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q100330402 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q100330404 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q100330405 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q100330406 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q100330412 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q100330414 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q100330417 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q100330418 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q100330419 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q100330420 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q100330421 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q100330422 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q100330431 +2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q100330435 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q100330508 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q100330509 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q100330510 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q100330511 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q100330512 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q100330516 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q100330648 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q100330652 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q100330656 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q100330661 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q100330665 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q100330669 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q100330673 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q100330675 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q100330679 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q100330688 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q100330694 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q100330698 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q100330700 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q100330701 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q100330705 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q100330706 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q100330707 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q100330708 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q100330710 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q100330714 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q100330719 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q100330723 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q100330724 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q100330727 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q100330729 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q100330734 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q100330742 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q100330748 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q100330749 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q100330753 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q100330756 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q100330766 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q100330771 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q100330775 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q100330785 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q100330788 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q100330791 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q100330792 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q100330793 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q100330798 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q100330811 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q100330821 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q100330824 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q100330826 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q100330829 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q100330831 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q100330834 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q100330835 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q100330836 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q100330837 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q100330838 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q100330840 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q100330844 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q100330847 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q100330851 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q100330854 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q100330857 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q100330860 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q100330861 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q100330865 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q100330866 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q100330870 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q100330874 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q100330876 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q100330886 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q100330915 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q100330916 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q100330917 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q100330918 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q100330919 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q100330920 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q100330921 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q100330922 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q100330928 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q100330963 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q100330982 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q100330989 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q100330998 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q100331031 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q100334054 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q100336530 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q100337757 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q100337780 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q100337811 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q100337852 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q100337866 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q100337879 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q100337892 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q100338157 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q100338973 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q100339047 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q100339071 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q100339124 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q100339159 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q100339167 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q100339210 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q100339218 +2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q100339228 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q100339236 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q100339243 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q100339265 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q100339272 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q100339284 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q100339292 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q100339299 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q100339306 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q100339313 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q100339351 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q100339360 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q100339366 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q100339374 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q100339383 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q100339392 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q100339399 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q100339407 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q100339413 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q100339420 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q100339428 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q100339441 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q100339453 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q100339462 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q100339469 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q100339477 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q100339483 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q100339490 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q100339498 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q100339509 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q100339516 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q100339525 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q100339533 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q100339542 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q100339570 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q100339578 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q100339607 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q100339616 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q100339624 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q100339634 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q100339641 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q100339647 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q100339654 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q100339840 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q100339841 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q100339996 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q100340191 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q100340192 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q100348444 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q100348445 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q100348446 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q100348447 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q100348448 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q100348449 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q100348450 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q100348451 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q100348453 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q100348455 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q100348521 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q100348522 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q100348523 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q100348524 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q100348526 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q100348528 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q100348530 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q100348531 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q100348532 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q100348539 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q100348549 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q100348558 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q100348567 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q100348577 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q100348584 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q100348586 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q100348588 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q100348589 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q100348591 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q100348593 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q100348594 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q100348597 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q100348601 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q100348602 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q100348603 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q100348604 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q100348605 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q100348607 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q100348608 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q100348609 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q100348610 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q100348612 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q100348614 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q100348617 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q100348618 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q100348619 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q100348621 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q100348622 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q100348624 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q100348627 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q100348628 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q100348721 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q100348727 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q100348728 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q100348732 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q100348733 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q100348735 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q100348741 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q100348757 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q100348761 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q100348764 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q100348765 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q100348768 +2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q100348770 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q100348779 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q100348780 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q100350655 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q100350657 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q100350659 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q100350664 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q100350666 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q100350670 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q100350673 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q100351325 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q100351628 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q100352354 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q100352368 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q100352377 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q100352384 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q100352392 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q100352402 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q100352413 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q100352422 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q100352433 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q100352443 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q100352453 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q100352463 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q100352470 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q100352487 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q100352498 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q100352506 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q100352517 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q100352527 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q100352537 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q100352551 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q100352563 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q100352578 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q100352592 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q100352606 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q100352664 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q100352675 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q100352682 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q100352702 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q100352914 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q100353194 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q100353207 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q100353219 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q100353230 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q100353330 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q100353371 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q100353392 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q100353401 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q100353407 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q100353414 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q100353422 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q100353431 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q100353437 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q100353456 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q100353463 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q100353469 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q100353476 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q100353487 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q100353502 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q100353517 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q100353535 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q100353546 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q100353558 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q100353562 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q100353564 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q100353565 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q100353570 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q100353571 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q100353574 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q100353576 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q100353578 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q100353579 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q100353580 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q100353582 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q100353583 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q100353594 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q100353617 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q100353641 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q100353642 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q100353643 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q100353646 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q100353651 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q100353652 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q100353654 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q100353656 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q100353660 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q100353968 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q100354043 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q100354045 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q100354423 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q100354947 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q100354956 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q100355013 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q100355141 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q100355149 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q100355216 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q100355279 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q100355287 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q100355304 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q100355485 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q100355495 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q100355511 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q100355809 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q100355818 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q100355880 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q100355950 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q100355968 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q100355976 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q100356058 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q100357497 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q100357511 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q100359368 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q100359370 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q100359441 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q100359499 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q100359508 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q100359515 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q100359933 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q100359943 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q100359953 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q100359964 +2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q100359973 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q100359983 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q100359993 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q100360003 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q100360012 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q100360024 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q100360032 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q100360042 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q100360054 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q100360065 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q100360074 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q100360084 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q100361805 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q100361980 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q100362504 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q100362514 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q100362517 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q100363225 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q100364543 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q100364546 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q100364762 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q100364763 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q100364766 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q100364768 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q100374668 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q100374735 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q100375062 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q100376019 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q100377532 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q100391149 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q100392179 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q100416944 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q100417179 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q100417231 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q100417283 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q100417338 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q100418335 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q100424745 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q100431458 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q100431555 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q100432345 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q100436796 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q100437195 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q100448532 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q100453142 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q100479486 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q100489695 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q100500386 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q100501561 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q100507690 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q100547484 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q100550094 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q100550186 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q100550401 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q100551359 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q100551645 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q100552014 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q100552370 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q1005582 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q100564168 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q100565605 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q100566057 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q100588404 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q100624882 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q100700466 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q100700585 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q100700626 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q100700704 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q100700750 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q100706477 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q100708447 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q100708484 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q100708505 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q100708629 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q100709404 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q100709416 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q100709466 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q100710221 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q100715995 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q100715996 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q100716003 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q100716094 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q100716194 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q100716197 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q100716203 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q100716212 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q100716357 +2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources +2023-10-27 13:54:30.885 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}] +2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08} +2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000 +2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.08 +2023-10-27 13:54:30.910 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:30.916  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 13:54:30.916 DEBUG 9655 --- [o-11022-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ; rdf:_3 ; rdf:_4 ; rdf:_5 ; rdf:_6 ; rdf:_7 ; rdf:_8 ; rdf:_9 ; rdf:_10 ; rdf:_11 ; rdf:_12 ; rdf:_13 ; rdf:_14 ; rdf:_15 ; rdf:_16 ; rdf:_17 ; rdf:_18 ; rdf:_19 ; rdf:_20 ; rdf:_21 ; rdf:_22 ; rdf:_23 ; rdf:_24 ; rdf:_25 ; rdf:_26 ; rdf:_27 ; rdf:_28 ; rdf:_29 ; rdf:_30 ; rdf:_31 ; rdf:_32 ; rdf:_33 ; rdf:_34 ; rdf:_35 ; rdf:_36 ; rdf:_37 ; rdf:_38 ; rdf:_39 ; rdf:_40 ; rdf:_41 ; rdf:_42 ; rdf:_43 ; rdf:_44 ; rdf:_45 ; rdf:_46 ; rdf:_47 ; rdf:_48 ; rdf:_49 ; rdf:_50 ; rdf:_51 ; rdf:_52 ; rdf:_53 ; rdf:_54 ; rdf:_55 ; rdf:_56 ; rdf:_57 ; rdf:_58 ; rdf:_59 ; rdf:_60 ; rdf:_61 ; rdf:_62 ; rdf:_63 ; rdf:_64 ; rdf:_65 ; rdf:_66 ; rdf:_67 ; rdf:_68 ; rdf:_69 ; rdf:_70 ; rdf:_71 ; rdf:_72 ; rdf:_73 ; rdf:_74 ; rdf:_75 ; rdf:_76 ; rdf:_77 ; rdf:_78 ; rdf:_79 ; rdf:_80 ; rdf:_81 ; rdf:_82 ; rdf:_83 ; rdf:_84 ; rdf:_85 ; rdf:_86 ; rdf:_87 ; rdf:_88 ; rdf:_89 ; rdf:_90 ; rdf:_91 ; rdf:_92 ; rdf:_93 ; rdf:_94 ; rdf:_95 ; rdf:_96 ; rdf:_97 ; rdf:_98 ; rdf:_99 ; rdf:_100 ; rdf:_101 ; rdf:_102 ; rdf:_103 ; rdf:_104 ; rdf:_105 ; rdf:_106 ; rdf:_107 ; rdf:_108 ; rdf:_109 ; rdf:_110 ; rdf:_111 ; rdf:_112 ; rdf:_113 ; rdf:_114 ; rdf:_115 ; rdf:_116 ; rdf:_117 ; rdf:_118 ; rdf:_119 ; rdf:_120 ; rdf:_121 ; rdf:_122 ; rdf:_123 ; rdf:_124 ; rdf:_125 ; rdf:_126 ; rdf:_127 ; rdf:_128 ; rdf:_129 ; rdf:_130 ; rdf:_131 ; rdf:_132 ; rdf:_133 ; rdf:_134 ; rdf:_135 ; rdf:_136 ; rdf:_137 ; rdf:_138 ; rdf:_139 ; rdf:_140 ; rdf:_141 ; rdf:_142 ; rdf:_143 ; rdf:_144 ; rdf:_145 ; rdf:_146 ; rdf:_147 ; rdf:_148 ; rdf:_149 ; rdf:_150 ; rdf:_151 ; rdf:_152 ; rdf:_153 ; rdf:_154 ; rdf:_155 ; rdf:_156 ; rdf:_157 ; rdf:_158 ; rdf:_159 ; rdf:_160 ; rdf:_161 ; rdf:_162 ; rdf:_163 ; rdf:_164 ; rdf:_165 ; rdf:_166 ; rdf:_167 ; rdf:_168 ; rdf:_169 ; rdf:_170 ; rdf:_171 ; rdf:_172 ; rdf:_173 ; rdf:_174 ; rdf:_175 ; rdf:_176 ; rdf:_177 ; rdf:_178 ; rdf:_179 ; rdf:_180 ; rdf:_181 ; rdf:_182 ; rdf:_183 ; rdf:_184 ; rdf:_185 ; rdf:_186 ; rdf:_187 ; rdf:_188 ; rdf:_189 ; rdf:_190 ; rdf:_191 ; rdf:_192 ; rdf:_193 ; rdf:_194 ; rdf:_195 ; rdf:_196 ; rdf:_197 ; rdf:_198 ; rdf:_199 ; rdf:_200 ; rdf:_201 ; rdf:_202 ; rdf:_203 ; rdf:_204 ; rdf:_205 ; rdf:_206 ; rdf:_207 ; rdf:_208 ; rdf:_209 ; rdf:_210 ; rdf:_211 ; rdf:_212 ; rdf:_213 ; rdf:_214 ; rdf:_215 ; rdf:_216 ; rdf:_217 ; rdf:_218 ; rdf:_219 ; rdf:_220 ; rdf:_221 ; rdf:_222 ; rdf:_223 ; rdf:_224 ; rdf:_225 ; rdf:_226 ; rdf:_227 ; rdf:_228 ; rdf:_229 ; rdf:_230 ; rdf:_231 ; rdf:_232 ; rdf:_233 ; rdf:_234 ; rdf:_235 ; rdf:_236 ; rdf:_237 ; rdf:_238 ; rdf:_239 ; rdf:_240 ; rdf:_241 ; rdf:_242 ; rdf:_243 ; rdf:_244 ; rdf:_245 ; rdf:_246 ; rdf:_247 ; rdf:_248 ; rdf:_249 ; rdf:_250 ; rdf:_251 ; rdf:_252 ; rdf:_253 ; rdf:_254 ; rdf:_255 ; rdf:_256 ; rdf:_257 ; rdf:_258 ; rdf:_259 ; rdf:_260 ; rdf:_261 ; rdf:_262 ; rdf:_263 ; rdf:_264 ; rdf:_265 ; rdf:_266 ; rdf:_267 ; rdf:_268 ; rdf:_269 ; rdf:_270 ; rdf:_271 ; rdf:_272 ; rdf:_273 ; rdf:_274 ; rdf:_275 ; rdf:_276 ; rdf:_277 ; rdf:_278 ; rdf:_279 ; rdf:_280 ; rdf:_281 ; rdf:_282 ; rdf:_283 ; rdf:_284 ; rdf:_285 ; rdf:_286 ; rdf:_287 ; rdf:_288 ; rdf:_289 ; rdf:_290 ; rdf:_291 ; rdf:_292 ; rdf:_293 ; rdf:_294 ; rdf:_295 ; rdf:_296 ; rdf:_297 ; rdf:_298 ; rdf:_299 ; rdf:_300 ; rdf:_301 ; rdf:_302 ; rdf:_303 ; rdf:_304 ; rdf:_305 ; rdf:_306 ; rdf:_307 ; rdf:_308 ; rdf:_309 ; rdf:_310 ; rdf:_311 ; rdf:_312 ; rdf:_313 ; rdf:_314 ; rdf:_315 ; rdf:_316 ; rdf:_317 ; rdf:_318 ; rdf:_319 ; rdf:_320 ; rdf:_321 ; rdf:_322 ; rdf:_323 ; rdf:_324 ; rdf:_325 ; rdf:_326 ; rdf:_327 ; rdf:_328 ; rdf:_329 ; rdf:_330 ; rdf:_331 ; rdf:_332 ; rdf:_333 ; rdf:_334 ; rdf:_335 ; rdf:_336 ; rdf:_337 ; rdf:_338 ; rdf:_339 ; rdf:_340 ; rdf:_341 ; rdf:_342 ; rdf:_343 ; rdf:_344 ; rdf:_345 ; rdf:_346 ; rdf:_347 ; rdf:_348 ; rdf:_349 ; rdf:_350 ; rdf:_351 ; rdf:_352 ; rdf:_353 ; rdf:_354 ; rdf:_355 ; rdf:_356 ; rdf:_357 ; rdf:_358 ; rdf:_359 ; rdf:_360 ; rdf:_361 ; rdf:_362 ; rdf:_363 ; rdf:_364 ; rdf:_365 ; rdf:_366 ; rdf:_367 ; rdf:_368 ; rdf:_369 ; rdf:_370 ; rdf:_371 ; rdf:_372 ; rdf:_373 ; rdf:_374 ; rdf:_375 ; rdf:_376 ; rdf:_377 ; rdf:_378 ; rdf:_379 ; rdf:_380 ; rdf:_381 ; rdf:_382 ; rdf:_383 ; rdf:_384 ; rdf:_385 ; rdf:_386 ; rdf:_387 ; rdf:_388 ; rdf:_389 ; rdf:_390 ; rdf:_391 ; rdf:_392 ; rdf:_393 ; rdf:_394 ; rdf:_395 ; rdf:_396 ; rdf:_397 ; rdf:_398 ; rdf:_399 ; rdf:_400 ; rdf:_401 ; rdf:_402 ; rdf:_403 ; rdf:_404 ; rdf:_405 ; rdf:_406 ; rdf:_407 ; rdf:_408 ; rdf:_409 ; rdf:_410 ; rdf:_411 ; rdf:_412 ; rdf:_413 ; rdf:_414 ; rdf:_415 ; rdf:_416 ; rdf:_417 ; rdf:_418 ; rdf:_419 ; rdf:_420 ; rdf:_421 ; rdf:_422 ; rdf:_423 ; rdf:_424 ; rdf:_425 ; rdf:_426 ; rdf:_427 ; rdf:_428 ; rdf:_429 ; rdf:_430 ; rdf:_431 ; rdf:_432 ; rdf:_433 ; rdf:_434 ; rdf:_435 ; rdf:_436 ; rdf:_437 ; rdf:_438 ; rdf:_439 ; rdf:_440 ; rdf:_441 ; rdf:_442 ; rdf:_443 ; rdf:_444 ; rdf:_445 ; rdf:_446 ; rdf:_447 ; rdf:_448 ; rdf:_449 ; rdf:_450 ; rdf:_451 ; rdf:_452 ; rdf:_453 ; rdf:_454 ; rdf:_455 ; rdf:_456 ; rdf:_457 ; rdf:_458 ; rdf:_459 ; rdf:_460 ; rdf:_461 ; rdf:_462 ; rdf:_463 ; rdf:_464 ; rdf:_465 ; rdf:_466 ; rdf:_467 ; rdf:_468 ; rdf:_469 ; rdf:_470 ; rdf:_471 ; rdf:_472 ; rdf:_473 ; rdf:_474 ; rdf:_475 ; rdf:_476 ; rdf:_477 ; rdf:_478 ; rdf:_479 ; rdf:_480 ; rdf:_481 ; rdf:_482 ; rdf:_483 ; rdf:_484 ; rdf:_485 ; rdf:_486 ; rdf:_487 ; rdf:_488 ; rdf:_489 ; rdf:_490 ; rdf:_491 ; rdf:_492 ; rdf:_493 ; rdf:_494 ; rdf:_495 ; rdf:_496 ; rdf:_497 ; rdf:_498 ; rdf:_499 ; rdf:_500 ; rdf:_501 ; rdf:_502 ; rdf:_503 ; rdf:_504 ; rdf:_505 ; rdf:_506 ; rdf:_507 ; rdf:_508 ; rdf:_509 ; rdf:_510 ; rdf:_511 ; rdf:_512 ; rdf:_513 ; rdf:_514 ; rdf:_515 ; rdf:_516 ; rdf:_517 ; rdf:_518 ; rdf:_519 ; rdf:_520 ; rdf:_521 ; rdf:_522 ; rdf:_523 ; rdf:_524 ; rdf:_525 ; rdf:_526 ; rdf:_527 ; rdf:_528 ; rdf:_529 ; rdf:_530 ; rdf:_531 ; rdf:_532 ; rdf:_533 ; rdf:_534 ; rdf:_535 ; rdf:_536 ; rdf:_537 ; rdf:_538 ; rdf:_539 ; rdf:_540 ; rdf:_541 ; rdf:_542 ; rdf:_543 ; rdf:_544 ; rdf:_545 ; rdf:_546 ; rdf:_547 ; rdf:_548 ; rdf:_549 ; rdf:_550 ; rdf:_551 ; rdf:_552 ; rdf:_553 ; rdf:_554 ; rdf:_555 ; rdf:_556 ; rdf:_557 ; rdf:_558 ; rdf:_559 ; rdf:_560 ; rdf:_561 ; rdf:_562 ; rdf:_563 ; rdf:_564 ; rdf:_565 ; rdf:_566 ; rdf:_567 ; rdf:_568 ; rdf:_569 ; rdf:_570 ; rdf:_571 ; rdf:_572 ; rdf:_573 ; rdf:_574 ; rdf:_575 ; rdf:_576 ; rdf:_577 ; rdf:_578 ; rdf:_579 ; rdf:_580 ; rdf:_581 ; rdf:_582 ; rdf:_583 ; rdf:_584 ; rdf:_585 ; rdf:_586 ; rdf:_587 ; rdf:_588 ; rdf:_589 ; rdf:_590 ; rdf:_591 ; rdf:_592 ; rdf:_593 ; rdf:_594 ; rdf:_595 ; rdf:_596 ; rdf:_597 ; rdf:_598 ; rdf:_599 ; rdf:_600 ; rdf:_601 ; rdf:_602 ; rdf:_603 ; rdf:_604 ; rdf:_605 ; rdf:_606 ; rdf:_607 ; rdf:_608 ; rdf:_609 ; rdf:_610 ; rdf:_611 ; rdf:_612 ; rdf:_613 ; rdf:_614 ; rdf:_615 ; rdf:_616 ; rdf:_617 ; rdf:_618 ; rdf:_619 ; rdf:_620 ; rdf:_621 ; rdf:_622 ; rdf:_623 ; rdf:_624 ; rdf:_625 ; rdf:_626 ; rdf:_627 ; rdf:_628 ; rdf:_629 ; rdf:_630 ; rdf:_631 ; rdf:_632 ; rdf:_633 ; rdf:_634 ; rdf:_635 ; rdf:_636 ; rdf:_637 ; rdf:_638 ; rdf:_639 ; rdf:_640 ; rdf:_641 ; rdf:_642 ; rdf:_643 ; rdf:_644 ; rdf:_645 ; rdf:_646 ; rdf:_647 ; rdf:_648 ; rdf:_649 ; rdf:_650 ; rdf:_651 ; rdf:_652 ; rdf:_653 ; rdf:_654 ; rdf:_655 ; rdf:_656 ; rdf:_657 ; rdf:_658 ; rdf:_659 ; rdf:_660 ; rdf:_661 ; rdf:_662 ; rdf:_663 ; rdf:_664 ; rdf:_665 ; rdf:_666 ; rdf:_667 ; rdf:_668 ; rdf:_669 ; rdf:_670 ; rdf:_671 ; rdf:_672 ; rdf:_673 ; rdf:_674 ; rdf:_675 ; rdf:_676 ; rdf:_677 ; rdf:_678 ; rdf:_679 ; rdf:_680 ; rdf:_681 ; rdf:_682 ; rdf:_683 ; rdf:_684 ; rdf:_685 ; rdf:_686 ; rdf:_687 ; rdf:_688 ; rdf:_689 ; rdf:_690 ; rdf:_691 ; rdf:_692 ; rdf:_693 ; rdf:_694 ; rdf:_695 ; rdf:_696 ; rdf:_697 ; rdf:_698 ; rdf:_699 ; rdf:_700 ; rdf:_701 ; rdf:_702 ; rdf:_703 ; rdf:_704 ; rdf:_705 ; rdf:_706 ; rdf:_707 ; rdf:_708 ; rdf:_709 ; rdf:_710 ; rdf:_711 ; rdf:_712 ; rdf:_713 ; rdf:_714 ; rdf:_715 ; rdf:_716 ; rdf:_717 ; rdf:_718 ; rdf:_719 ; rdf:_720 ; rdf:_721 ; rdf:_722 ; rdf:_723 ; rdf:_724 ; rdf:_725 ; rdf:_726 ; rdf:_727 ; rdf:_728 ; rdf:_729 ; rdf:_730 ; rdf:_731 ; rdf:_732 ; rdf:_733 ; rdf:_734 ; rdf:_735 ; rdf:_736 ; rdf:_737 ; rdf:_738 ; rdf:_739 ; rdf:_740 ; rdf:_741 ; rdf:_742 ; rdf:_743 ; rdf:_744 ; rdf:_745 ; rdf:_746 ; rdf:_747 ; rdf:_748 ; rdf:_749 ; rdf:_750 ; rdf:_751 ; rdf:_752 ; rdf:_753 ; rdf:_754 ; rdf:_755 ; rdf:_756 ; rdf:_757 ; rdf:_758 ; rdf:_759 ; rdf:_760 ; rdf:_761 ; rdf:_762 ; rdf:_763 ; rdf:_764 ; rdf:_765 ; rdf:_766 ; rdf:_767 ; rdf:_768 ; rdf:_769 ; rdf:_770 ; rdf:_771 ; rdf:_772 ; rdf:_773 ; rdf:_774 ; rdf:_775 ; rdf:_776 ; rdf:_777 ; rdf:_778 ; rdf:_779 ; rdf:_780 ; rdf:_781 ; rdf:_782 ; rdf:_783 ; rdf:_784 ; rdf:_785 ; rdf:_786 ; rdf:_787 ; rdf:_788 ; rdf:_789 ; rdf:_790 ; rdf:_791 ; rdf:_792 ; rdf:_793 ; rdf:_794 ; rdf:_795 ; rdf:_796 ; rdf:_797 ; rdf:_798 ; rdf:_799 ; rdf:_800 ; rdf:_801 ; rdf:_802 ; rdf:_803 ; rdf:_804 ; rdf:_805 ; rdf:_806 ; rdf:_807 ; rdf:_808 ; rdf:_809 ; rdf:_810 ; rdf:_811 ; rdf:_812 ; rdf:_813 ; rdf:_814 ; rdf:_815 ; rdf:_816 ; rdf:_817 ; rdf:_818 ; rdf:_819 ; rdf:_820 ; rdf:_821 ; rdf:_822 ; rdf:_823 ; rdf:_824 ; rdf:_825 ; rdf:_826 ; rdf:_827 ; rdf:_828 ; rdf:_829 ; rdf:_830 ; rdf:_831 ; rdf:_832 ; rdf:_833 ; rdf:_834 ; rdf:_835 ; rdf:_836 ; rdf:_837 ; rdf:_838 ; rdf:_839 ; rdf:_840 ; rdf:_841 ; rdf:_842 ; rdf:_843 ; rdf:_844 ; rdf:_845 ; rdf:_846 ; rdf:_847 ; rdf:_848 ; rdf:_849 ; rdf:_850 ; rdf:_851 ; rdf:_852 ; rdf:_853 ; rdf:_854 ; rdf:_855 ; rdf:_856 ; rdf:_857 ; rdf:_858 ; rdf:_859 ; rdf:_860 ; rdf:_861 ; rdf:_862 ; rdf:_863 ; rdf:_864 ; rdf:_865 ; rdf:_866 ; rdf:_867 ; rdf:_868 ; rdf:_869 ; rdf:_870 ; rdf:_871 ; rdf:_872 ; rdf:_873 ; rdf:_874 ; rdf:_875 ; rdf:_876 ; rdf:_877 ; rdf:_878 ; rdf:_879 ; rdf:_880 ; rdf:_881 ; rdf:_882 ; rdf:_883 ; rdf:_884 ; rdf:_885 ; rdf:_886 ; rdf:_887 ; rdf:_888 ; rdf:_889 ; rdf:_890 ; rdf:_891 ; rdf:_892 ; rdf:_893 ; rdf:_894 ; rdf:_895 ; rdf:_896 ; rdf:_897 ; rdf:_898 ; rdf:_899 ; rdf:_900 ; rdf:_901 ; rdf:_902 ; rdf:_903 ; rdf:_904 ; rdf:_905 ; rdf:_906 ; rdf:_907 ; rdf:_908 ; rdf:_909 ; rdf:_910 ; rdf:_911 ; rdf:_912 ; rdf:_913 ; rdf:_914 ; rdf:_915 ; rdf:_916 ; rdf:_917 ; rdf:_918 ; rdf:_919 ; rdf:_920 ; rdf:_921 ; rdf:_922 ; rdf:_923 ; rdf:_924 ; rdf:_925 ; rdf:_926 ; rdf:_927 ; rdf:_928 ; rdf:_929 ; rdf:_930 ; rdf:_931 ; rdf:_932 ; rdf:_933 ; rdf:_934 ; rdf:_935 ; rdf:_936 ; rdf:_937 ; rdf:_938 ; rdf:_939 ; rdf:_940 ; rdf:_941 ; rdf:_942 ; rdf:_943 ; rdf:_944 ; rdf:_945 ; rdf:_946 ; rdf:_947 ; rdf:_948 ; rdf:_949 ; rdf:_950 ; rdf:_951 ; rdf:_952 ; rdf:_953 ; rdf:_954 ; rdf:_955 ; rdf:_956 ; rdf:_957 ; rdf:_958 ; rdf:_959 ; rdf:_960 ; rdf:_961 ; rdf:_962 ; rdf:_963 ; rdf:_964 ; rdf:_965 ; rdf:_966 ; rdf:_967 ; rdf:_968 ; rdf:_969 ; rdf:_970 ; rdf:_971 ; rdf:_972 ; rdf:_973 ; rdf:_974 ; rdf:_975 ; rdf:_976 ; rdf:_977 ; rdf:_978 ; rdf:_979 ; rdf:_980 ; rdf:_981 ; rdf:_982 ; rdf:_983 ; rdf:_984 ; rdf:_985 ; rdf:_986 ; rdf:_987 ; rdf:_988 ; rdf:_989 ; rdf:_990 ; rdf:_991 ; rdf:_992 ; rdf:_993 ; rdf:_994 ; rdf:_995 ; rdf:_996 ; rdf:_997 ; rdf:_998 ; rdf:_999 ; rdf:_1000 ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.08"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1000247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1000754\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144680\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144747\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100145678\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100145777\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100145971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146260\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100147501\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100151385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100152629\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100152630\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100152930\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153102\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153189\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153990\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154035\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154202\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154295\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154951\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155200\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155318\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156203\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156248\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100195598\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100195938\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100196247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100196594\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100196940\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100197315\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100197689\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100198447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100198817\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100199144\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100199473\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100199830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100200238\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100217115\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230388\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230390\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230938\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100233380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100249778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100250595\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251215\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251224\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251256\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251442\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100254362\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100262375\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268229\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268935\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268938\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100269136\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100272509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100273231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002754\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100277382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100279065\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002872\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299026\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299077\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299083\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299090\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299217\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299298\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299313\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299388\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299406\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299417\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299587\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299863\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299958\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299966\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300045\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300049\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300060\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300065\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300071\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300099\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300103\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300148\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300177\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300191\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300199\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301121\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301129\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301278\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301339\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301399\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301408\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301758\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301991\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302005\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302015\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302021\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302036\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302048\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302053\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302058\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302064\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302070\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302101\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302113\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302133\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302160\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302176\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302194\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302207\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302219\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302225\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302236\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302241\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302246\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302252\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302259\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302265\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302270\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302276\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302308\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302322\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302340\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302379\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302801\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302816\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302893\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302899\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302904\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302909\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302935\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303010\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303023\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303066\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303077\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303091\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303097\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303102\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303110\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303116\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303122\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303129\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303141\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303158\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303338\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303344\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303350\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303361\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303379\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303396\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303410\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303473\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303533\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303544\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303788\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304381\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304387\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304409\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304420\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304426\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304437\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305144\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305161\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305174\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305189\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305344\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305360\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305416\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305773\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306100\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306306\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306498\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306529\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306627\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306725\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307210\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307728\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307748\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307789\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307804\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307865\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307876\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307883\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308100\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308125\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308558\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308806\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308823\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309158\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309235\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309261\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309289\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309314\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309326\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309339\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309353\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309359\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309369\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309376\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309387\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309395\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309429\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309480\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309541\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309559\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309572\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309587\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309615\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309631\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309638\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309689\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309700\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309746\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309824\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309853\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310240\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310255\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310304\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310318\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310324\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310335\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310622\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310628\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310640\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310687\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310702\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310717\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310762\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310769\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310776\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310802\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310809\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310936\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310950\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310969\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310977\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310991\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311004\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311010\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311021\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311038\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311049\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311076\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311117\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311123\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311128\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311134\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311140\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311153\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311166\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311184\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311190\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311195\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311209\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311224\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311240\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311283\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311483\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312037\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312050\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312056\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312062\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312069\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312080\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312097\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312110\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312127\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312142\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312154\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312165\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312180\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312202\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312214\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312227\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312234\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312239\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312244\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312264\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312272\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312278\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312305\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312320\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312336\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312353\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312389\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312396\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312402\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312860\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313083\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313095\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313182\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313193\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313206\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313232\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313237\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313244\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313256\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313261\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313267\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313272\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313279\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313298\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313347\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313393\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313408\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313412\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313417\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313424\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313435\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313442\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313458\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313472\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313478\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313486\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313491\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313499\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313544\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313555\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313569\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313581\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313586\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313591\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313597\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313603\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313608\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313613\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313615\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313620\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313625\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313656\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313905\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313911\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313941\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313959\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313970\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313977\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100314172\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100314427\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315180\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315765\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315775\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315781\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315787\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315799\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315819\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316001\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316008\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316015\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316020\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316027\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316030\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316044\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316050\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316063\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316069\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316076\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316081\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316087\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316100\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316999\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100317042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100317068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100317247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100318807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100320054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100320076\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100324295\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100326023\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100326425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100327037\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328864\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328872\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328906\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328918\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328935\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328946\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328974\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329093\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329107\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329737\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329739\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329740\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329741\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329743\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329746\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330235\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330265\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330279\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330299\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330300\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330303\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330310\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330311\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330313\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330314\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330315\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330317\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330320\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330321\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330323\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330324\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330325\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330327\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330328\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330334\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330339\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330346\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330348\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330364\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330371\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330373\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330375\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330376\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330379\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330381\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330384\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330387\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330389\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330390\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330391\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330393\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330394\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330395\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330399\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330402\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330405\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330406\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330412\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330417\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330418\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330419\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330420\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330421\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330422\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330435\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330510\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330511\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330512\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330648\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330656\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330661\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330669\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330675\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330679\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330688\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330694\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330700\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330705\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330706\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330707\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330714\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330719\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330723\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330724\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330729\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330748\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330766\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330771\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330775\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330785\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330788\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330791\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330793\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330798\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330821\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330824\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330829\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330831\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330834\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330835\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330836\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330838\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330847\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330851\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330860\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330861\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330865\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330870\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330876\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330886\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330915\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330916\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330918\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330921\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330922\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330989\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330998\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100331031\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100334054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100336530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337757\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337780\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337852\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337879\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337892\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100338157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100338973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339047\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339071\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339124\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339159\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339167\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339210\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339218\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339228\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339236\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339243\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339265\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339272\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339284\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339299\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339306\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339313\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339351\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339360\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339399\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339420\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339428\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339462\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339469\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339477\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339483\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339490\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339498\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339525\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339533\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339542\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339578\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339607\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339616\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339624\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339634\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339641\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339647\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339841\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339996\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100340191\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100340192\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348444\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348445\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348448\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348450\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348451\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348522\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348523\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348528\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348531\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348549\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348558\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348584\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348586\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348588\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348589\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348591\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348593\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348594\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348597\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348602\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348603\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348604\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348605\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348607\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348608\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348609\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348610\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348612\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348614\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348617\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348618\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348619\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348621\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348622\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348624\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348627\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348628\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348721\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348728\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348732\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348741\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348757\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348761\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348764\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348765\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348779\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348780\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350655\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350657\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350659\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350666\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350670\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100351325\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100351628\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352354\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352368\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352384\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352402\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352422\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352433\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352443\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352470\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352487\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352498\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352506\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352527\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352563\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352578\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352592\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352606\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352675\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352682\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352702\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353194\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353207\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353219\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353230\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353330\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353371\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353422\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353437\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353456\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353469\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353476\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353487\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353502\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353535\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353546\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353558\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353562\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353564\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353565\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353571\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353574\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353576\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353578\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353579\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353580\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353582\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353583\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353594\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353617\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353641\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353642\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353643\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353646\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353651\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353656\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353660\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353968\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354045\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354956\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355013\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355141\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355149\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355216\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355279\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355287\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355304\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355485\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355495\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355511\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355809\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355818\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355880\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355950\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355968\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355976\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100356058\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100357497\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100357511\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359368\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359370\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359499\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359515\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359933\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359943\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359964\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359983\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359993\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360003\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360012\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360024\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360065\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360074\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360084\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100361805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100361980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100362504\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100362514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100362517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100363225\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364546\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364762\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364763\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364766\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100374668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100374735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100375062\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100376019\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100377532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100391149\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100392179\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100416944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417179\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417283\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417338\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100418335\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100424745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100431458\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100431555\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100432345\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100436796\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100437195\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100448532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100453142\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100479486\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100489695\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100500386\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100501561\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100507690\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100547484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100550094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100550186\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100550401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100551359\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100551645\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100552014\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100552370\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1005582\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100564168\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100565605\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100566057\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100588404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100624882\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700585\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700626\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700704\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100706477\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708505\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708629\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709416\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100710221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100715995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100715996\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716003\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716194\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716197\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716203\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716212\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716357\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000\",\"confidence\":0.08}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 13:54:31.802 DEBUG 9655 --- [o-11022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 3205 ms +2023-10-27 13:55:29.381  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:29.381  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:29.381  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} +2023-10-27 13:55:29.382  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@71d4248b +2023-10-27 13:55:29.396  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@35aae2b9 +2023-10-27 13:55:29.397 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:55:29.399  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:29.400  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:55:29.408 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 +2023-10-27 13:55:29.408  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql +2023-10-27 13:55:29.413 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:29.413  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1dd024eb +2023-10-27 13:55:29.414 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:55:29.415  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:55:29.441  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(23,26) (score=null>=0.5) ignored=false +2023-10-27 13:55:29.441  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(30,47) (score=null>=0.5) ignored=false +2023-10-27 13:55:29.441  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(12,19) (score=null>=0.5) ignored=false +2023-10-27 13:55:29.453 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? +2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (3 items) of getNamedEntitiesOfQuestion for question "What is the website of NPR's “Tiny Desk Concert”?". +2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/NPR at (23,26) with score null +2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Tiny_Desk_Concerts at (30,47) with score null +2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Уебсайт at (12,19) with score null +2023-10-27 13:55:29.465 ERROR 9655 --- [io-11022-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause + +java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:57:28.118  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:28.120  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:28.120  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:28.121  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@5e3a1078 +2023-10-27 13:57:28.154  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16ff97d6 +2023-10-27 13:57:28.155 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:28.157  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:28.157  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:28.181 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:28.182  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql +2023-10-27 13:57:28.186 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? +2023-10-27 13:57:28.186  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4411b789 +2023-10-27 13:57:28.187 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:57:28.189  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:57:28.243  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(20,24) (score=null>=0.5) ignored=false +2023-10-27 13:57:28.244  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(12,19) (score=null>=0.5) ignored=false +2023-10-27 13:57:28.265 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? +2023-10-27 13:57:28.265  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "What is the twitter name of Running Wild?". +2023-10-27 13:57:28.265  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Име at (20,24) with score null +2023-10-27 13:57:28.265  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Туитър at (12,19) with score null +2023-10-27 13:57:28.267 ERROR 9655 --- [io-11022-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause + +java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@3144cdff +2023-10-27 13:57:45.820  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f8335a7 +2023-10-27 13:57:45.820 DEBUG 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:57:45.821  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:45.821  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:57:45.827 DEBUG 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:45.827  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql +2023-10-27 13:57:45.830 DEBUG 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? +2023-10-27 13:57:45.830  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3bbca68f +2023-10-27 13:57:45.830 DEBUG 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:57:45.832  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:57:45.854 ERROR 9655 --- [io-11022-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Great_Leap_Forward"] with root cause + +org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Great_Leap_Forward" + at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:58:12.881  INFO 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:12.881  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:12.882  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} +2023-10-27 13:58:12.882  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@51c22386 +2023-10-27 13:58:12.889  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5f05d7ce +2023-10-27 13:58:12.889 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:58:12.890  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:12.890  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:58:12.897 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:12.897  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql +2023-10-27 13:58:12.899 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:12.899  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b3a48f6 +2023-10-27 13:58:12.899 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:58:12.900  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:58:12.924  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(0,3) (score=0.9794783>=0.5) ignored=false +2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(18,22) (score=0.5942743>=0.5) ignored=false +2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(23,29) (score=0.86473304>=0.5) ignored=false +2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(37,44) (score=1.0>=0.5) ignored=false +2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(51,60) (score=1.0>=0.5) ignored=false +2023-10-27 13:58:12.935 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:12.935  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (5 items) of getNamedEntitiesOfQuestion for question "Who is the oldest cast member of the Netflix show “Queer Eye” ?". +2023-10-27 13:58:12.935  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/The_Who at (0,3) with score 0.9794783 +2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Casting at (18,22) with score 0.5942743 +2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Member_of_parliament at (23,29) with score 0.86473304 +2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Netflix at (37,44) with score 1.0 +2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Queer_Eye at (51,60) with score 1.0 +2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'Queer Eye' at (51,60) results in: Who is the oldest cast member of the Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest cast member of the Netflix show “|, second:|” ?| +2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'Netflix' at (37,44) results in: Who is the oldest cast member of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest cast member of the |, second:| show “http://dbpedia.org/resource/Queer_Eye ” ?| +2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 2. replace of 'member' at (23,29) results in: Who is the oldest cast http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest cast |, second:| of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?| +2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 3. replace of 'cast' at (18,22) results in: Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest |, second:| http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?| +2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 4. replace of 'Who' at (0,3) results in: http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:||, second:| is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?| +2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Who is the oldest cast member of the Netflix show “Queer Eye” ? +2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ? +2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 13:58:12.936  WARN 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 13:58:12.937 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 13:58:12.937 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:58:12.937 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 13:58:12.937  INFO 9655 --- [io-11022-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-193667574 +2023-10-27 13:58:13.047 DEBUG 9655 --- [io-11022-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@454989fe +2023-10-27 13:58:13.122 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:58:13.122 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:58:13.123  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?': [{question={answers={ + "head" : { + "vars" : [ + "x1" + ] + }, + "results" : { + "bindings" : [ ] + } +}, language=[{SPARQL=SELECT ?x1 WHERE { }, confidence=0.0}]}}] +2023-10-27 13:58:13.123  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]}}]} +2023-10-27 13:58:13.123 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 13:58:13.124  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 13:58:13.124  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 13:58:13.124  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}] +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0} +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT ?x1 WHERE { } +2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.0 +2023-10-27 13:58:13.134 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db +2023-10-27 13:58:13.134  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 13:58:13.134 DEBUG 9655 --- [io-11022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.0"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT ?x1 WHERE { }"^^xsd:string AS ?sparqlQueryString ) . + BIND ("http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"x1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT ?x1 WHERE { }\",\"confidence\":0.0}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 13:58:13.168 DEBUG 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 286 ms +2023-10-27 13:59:03.297  INFO 9655 --- [io-11022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:59:03.298  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:59:03.299  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:59:03.299  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@2c91ba42 +2023-10-27 13:59:03.307  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@225651a0 +2023-10-27 13:59:03.307 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:03.308  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:03.309  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:03.317 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:59:03.317  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql +2023-10-27 13:59:03.319 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? +2023-10-27 13:59:03.319  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2669d132 +2023-10-27 13:59:03.319 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:59:03.320  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:59:03.344 ERROR 9655 --- [io-11022-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/C_major"] with root cause + +org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/C_major" + at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 13:59:36.921  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.921  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.922  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} +2023-10-27 13:59:36.922  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@31806114 +2023-10-27 13:59:36.934  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5bab11d5 +2023-10-27 13:59:36.934 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 13:59:36.935  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:36.935  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 13:59:36.942 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 +2023-10-27 13:59:36.942  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql +2023-10-27 13:59:36.944 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:36.945  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@124f58d6 +2023-10-27 13:59:36.945 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 13:59:36.948  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 13:59:36.989 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:36.989  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Who are the actresses in Portrait of a Lady on Fire?". +2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:37.000  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Who are the actresses in Portrait of a Lady on Fire?' +2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Who are the actresses in Portrait of a Lady on Fire? +2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 13:59:37.000  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Who are the actresses in Portrait of a Lady on Fire?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Who are the actresses in Portrait of a Lady on Fire?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1697422773 +2023-10-27 13:59:37.088 DEBUG 9655 --- [io-11022-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67e93f74 +2023-10-27 13:59:46.006 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 13:59:46.006 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 13:59:46.006  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Who are the actresses in Portrait of a Lady on Fire?': [{question={answers={ + "head" : { + "vars" : [ + "o1" + ] + }, + "results" : { + "bindings" : [ + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q230710" + } + }, + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q31353" + } + }, + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q3345735" + } + }, + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q65043586" + } + }, + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q65468168" + } + } + ] + } +}, language=[{SPARQL=SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000, confidence=0.84}]}}] +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]}}]} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]}} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}] +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q230710 +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]}} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}] +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q230710 +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q31353 +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q3345735 +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q65043586 +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q65468168 +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5 resources +2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]}} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]} +2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}] +2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q230710 +2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q31353 +2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q3345735 +2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q65043586 +2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q65468168 +2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5 resources +2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} +2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}] +2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84} +2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000 +2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.84 +2023-10-27 13:59:46.023 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 +2023-10-27 13:59:46.023  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 13:59:46.023 DEBUG 9655 --- [io-11022-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ; rdf:_3 ; rdf:_4 ; rdf:_5 ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.84"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("Who are the actresses in Portrait of a Lady on Fire?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"o1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q230710\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q31353\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q3345735\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q65043586\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q65468168\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000\",\"confidence\":0.84}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 13:59:46.049 DEBUG 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 9128 ms +2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@713ac2c8 +2023-10-27 14:00:10.473  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76a6b82f +2023-10-27 14:00:10.473 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:10.475  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:10.478  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:10.494 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 +2023-10-27 14:00:10.494  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql +2023-10-27 14:00:10.499 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? +2023-10-27 14:00:10.500  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@654173fd +2023-10-27 14:00:10.500 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:00:10.502  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:00:10.558 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? +2023-10-27 14:00:10.558  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Which egyptian pyramid is the tallest?". +2023-10-27 14:00:10.578 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? +2023-10-27 14:00:10.579  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Which egyptian pyramid is the tallest?' +2023-10-27 14:00:10.579  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Which egyptian pyramid is the tallest? +2023-10-27 14:00:10.579  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Which egyptian pyramid is the tallest? +2023-10-27 14:00:10.579  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:00:10.579  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Which egyptian pyramid is the tallest?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:00:10.579 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:00:10.580 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:00:10.580 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Which egyptian pyramid is the tallest?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:00:10.581  INFO 9655 --- [io-11022-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1678079023 +2023-10-27 14:00:10.667 DEBUG 9655 --- [io-11022-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3a429b92 +2023-10-27 14:00:11.972 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:11.972 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Which egyptian pyramid is the tallest?': [{question={answers={ + "head" : { + "vars" : [ + "s1" + ] + }, + "results" : { + "bindings" : [ + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q2380546" + } + } + ] + } +}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000, confidence=0.14}]}}] +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]}}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]}} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}] +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2380546 +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]}} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}] +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2380546 +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]}} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}] +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2380546 +2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}] +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14} +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000 +2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.14 +2023-10-27 14:00:11.984 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 +2023-10-27 14:00:11.985  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:00:11.985 DEBUG 9655 --- [io-11022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.14"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("Which egyptian pyramid is the tallest?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q2380546\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000\",\"confidence\":0.14}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:00:12.051 DEBUG 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 1598 ms +2023-10-27 14:00:21.816  INFO 9655 --- [io-11022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:21.817  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:21.817  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} +2023-10-27 14:00:21.817  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@7521ccbf +2023-10-27 14:00:21.829  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7be63c6b +2023-10-27 14:00:21.830 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:21.831  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:21.831  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:21.838 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 +2023-10-27 14:00:21.838  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql +2023-10-27 14:00:21.839 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? +2023-10-27 14:00:21.840  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fd9a7cf +2023-10-27 14:00:21.840 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:00:21.841  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:00:21.862  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(33,39) (score=null>=0.5) ignored=false +2023-10-27 14:00:21.862  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(14,23) (score=null>=0.5) ignored=false +2023-10-27 14:00:21.872 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? +2023-10-27 14:00:21.872  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "Through which countries does the Danube go?". +2023-10-27 14:00:21.872  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Danube at (33,39) with score null +2023-10-27 14:00:21.872  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Страна at (14,23) with score null +2023-10-27 14:00:21.873 ERROR 9655 --- [io-11022-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause + +java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:00:35.444  INFO 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:35.445  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:35.445  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:35.446  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@66546ec9 +2023-10-27 14:00:35.453  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68939c73 +2023-10-27 14:00:35.454 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:00:35.455  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:35.456  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:00:35.461 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:35.461  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql +2023-10-27 14:00:35.464 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? +2023-10-27 14:00:35.465  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c498792 +2023-10-27 14:00:35.465 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:00:35.466  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:00:35.498 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? +2023-10-27 14:00:35.498  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Which of the dragons in Game of Thrones died?". +2023-10-27 14:00:35.513 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? +2023-10-27 14:00:35.513  WARN 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Which of the dragons in Game of Thrones died?' +2023-10-27 14:00:35.513  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Which of the dragons in Game of Thrones died? +2023-10-27 14:00:35.513  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Which of the dragons in Game of Thrones died? +2023-10-27 14:00:35.513  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:00:35.514  WARN 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Which of the dragons in Game of Thrones died?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:00:35.514 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:00:35.514 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:00:35.514 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Which of the dragons in Game of Thrones died?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:00:35.514  INFO 9655 --- [io-11022-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1815978476 +2023-10-27 14:00:35.658 DEBUG 9655 --- [io-11022-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@773a2b3d +2023-10-27 14:00:39.808 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:00:39.808 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Which of the dragons in Game of Thrones died?': [{question={answers={ + "head" : { + "vars" : [ + "s1" + ] + }, + "results" : { + "bindings" : [ ] + } +}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000, confidence=0.02}]}}] +2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]}}]} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}] +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02} +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000 +2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.02 +2023-10-27 14:00:39.817 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:39.817  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:00:39.817 DEBUG 9655 --- [io-11022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.02"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("Which of the dragons in Game of Thrones died?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000\",\"confidence\":0.02}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:00:39.845 DEBUG 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 4400 ms +2023-10-27 14:02:29.109  INFO 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:29.110  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:29.110  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} +2023-10-27 14:02:29.110  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@3672fec6 +2023-10-27 14:02:29.127  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45e0a6ea +2023-10-27 14:02:29.127 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:02:29.128  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:29.129  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:02:29.140 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d +2023-10-27 14:02:29.140  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql +2023-10-27 14:02:29.143 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:02:29.143  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2b5c9a9e +2023-10-27 14:02:29.143 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:02:29.145  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:02:29.172 ERROR 9655 --- [io-11022-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Impressionism"] with root cause + +org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Impressionism" + at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@6b428cdb +2023-10-27 14:03:07.007  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f71f2d2 +2023-10-27 14:03:07.007 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:03:07.008  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:07.008  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:03:07.013 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:07.013  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql +2023-10-27 14:03:07.018 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:07.018  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@493e4697 +2023-10-27 14:03:07.018 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:03:07.019  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(8,11) (score=0.9871425>=0.5) ignored=false +2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(17,20) (score=0.9982751>=0.5) ignored=false +2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(29,43) (score=0.99999815>=0.5) ignored=false +2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(47,51) (score=0.9988245>=0.5) ignored=false +2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(52,56) (score=0.9513692>=0.5) ignored=false +2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(57,63) (score=0.9999998>=0.5) ignored=false +2023-10-27 14:03:07.051 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (6 items) of getNamedEntitiesOfQuestion for question "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?". +2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/South_Korean_won at (8,11) with score 0.9871425 +2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/National_Basketball_Association at (17,20) with score 0.9982751 +2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Michael_Jordan at (29,43) with score 0.99999815 +2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Kobe_Bryant at (47,51) with score 0.9988245 +2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Bean at (52,56) with score 0.9513692 +2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Kobe_Bryant at (57,63) with score 0.9999998 +2023-10-27 14:03:07.051 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'Bryant' at (57,63) results in: who has won more NBA awards, Michael Jordan or Kobe Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, Michael Jordan or Kobe Bean |, second:|?| +2023-10-27 14:03:07.051 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'Bean' at (52,56) results in: who has won more NBA awards, Michael Jordan or Kobe http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, Michael Jordan or Kobe |, second:| http://dbpedia.org/resource/Kobe_Bryant ?| +2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 2. replace of 'Kobe' at (47,51) results in: who has won more NBA awards, Michael Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, Michael Jordan or |, second:| http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| +2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 3. replace of 'Michael Jordan' at (29,43) results in: who has won more NBA awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, |, second:| or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| +2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 4. replace of 'NBA' at (17,20) results in: who has won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more |, second:| awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| +2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 5. replace of 'won' at (8,11) results in: who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has |, second:| more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| +2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ? +2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:03:07.052  WARN 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1251280899 +2023-10-27 14:03:07.134 DEBUG 9655 --- [io-11022-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@20068a60 +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?': [{question={answers={ + "head" : { + "vars" : [ + "x1" + ] + }, + "results" : { + "bindings" : [ ] + } +}, language=[{SPARQL=SELECT ?x1 WHERE { }, confidence=0.0}]}}] +2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]}}]} +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} +2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}] +2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0} +2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT ?x1 WHERE { } +2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.0 +2023-10-27 14:03:07.205 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:07.205  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:03:07.205 DEBUG 9655 --- [io-11022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.0"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT ?x1 WHERE { }"^^xsd:string AS ?sparqlQueryString ) . + BIND ("who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"x1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT ?x1 WHERE { }\",\"confidence\":0.0}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:03:07.226 DEBUG 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 226 ms +2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@39fe11c6 +2023-10-27 14:05:00.129  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5af4c91f +2023-10-27 14:05:00.129 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:05:00.130  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:00.130  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:05:00.135 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:05:00.135  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql +2023-10-27 14:05:00.137 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? +2023-10-27 14:05:00.137  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@397ffb90 +2023-10-27 14:05:00.137 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:05:00.138  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:05:00.162 ERROR 9655 --- [io-11022-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Madrid"] with root cause + +org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Madrid" + at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:06:34.207  INFO 9655 --- [io-11022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:34.207  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:34.208  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:34.208  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@2ab7d93b +2023-10-27 14:06:34.221  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ed3bf07 +2023-10-27 14:06:34.221 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:06:34.222  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:34.223  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:06:34.231 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 +2023-10-27 14:06:34.231  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 found in urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 at http://localhost:8080/sparql +2023-10-27 14:06:34.233 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? +2023-10-27 14:06:34.233  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@528879cf +2023-10-27 14:06:34.234 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:06:34.235  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:06:34.280 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? +2023-10-27 14:06:34.280  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Is Dr. Pepper named after its inventor?". +2023-10-27 14:06:34.297 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? +2023-10-27 14:06:34.297  WARN 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Is Dr. Pepper named after its inventor?' +2023-10-27 14:06:34.297  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Is Dr. Pepper named after its inventor? +2023-10-27 14:06:34.297  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Is Dr. Pepper named after its inventor? +2023-10-27 14:06:34.298  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:06:34.298  WARN 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Is Dr. Pepper named after its inventor?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:06:34.298 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:06:34.298 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:06:34.298 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Is Dr. Pepper named after its inventor?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:06:34.298  INFO 9655 --- [io-11022-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1460739267 +2023-10-27 14:06:34.388 DEBUG 9655 --- [io-11022-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@40c8ac76 +2023-10-27 14:06:39.585 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:06:39.585 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:06:39.585  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Is Dr. Pepper named after its inventor?': [{question={answers={ + "head" : { + "vars" : [ + "o1" + ] + }, + "results" : { + "bindings" : [ + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q2868" + } + }, + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q34820" + } + } + ] + } +}, language=[{SPARQL=SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000, confidence=0.45}]}}] +2023-10-27 14:06:39.585  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]}}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]}} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}] +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2868 +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]}} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}] +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2868 +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q34820 +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2 resources +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]}} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}] +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2868 +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q34820 +2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2 resources +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}] +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45} +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000 +2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.45 +2023-10-27 14:06:39.591 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 +2023-10-27 14:06:39.591  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:06:39.591 DEBUG 9655 --- [io-11022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.45"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("Is Dr. Pepper named after its inventor?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"o1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q2868\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q34820\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000\",\"confidence\":0.45}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:06:39.612 DEBUG 9655 --- [io-11022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 5405 ms +2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@20647a85 +2023-10-27 14:07:14.928  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4eff7d2d +2023-10-27 14:07:14.929 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:14.929  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:14.930  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:14.935 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:14.935  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql +2023-10-27 14:07:14.937 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? +2023-10-27 14:07:14.937  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2467193c +2023-10-27 14:07:14.937 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:07:14.938  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:07:14.961 ERROR 9655 --- [io-11022-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Don%27t_Starve"] with root cause + +org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Don%27t_Starve" + at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} +2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@22fa7e33 +2023-10-27 14:07:34.097  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5ebaf742 +2023-10-27 14:07:34.098 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:07:34.098  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:34.099  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:07:34.105 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 +2023-10-27 14:07:34.105  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql +2023-10-27 14:07:34.107 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:34.107  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@185f347e +2023-10-27 14:07:34.107 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:07:34.108  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:07:34.133  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(18,25) (score=null>=0.5) ignored=false +2023-10-27 14:07:34.133  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(4,14) (score=null>=0.5) ignored=false +2023-10-27 14:07:34.146 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? +2023-10-27 14:07:34.146  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "has population of Isfahan increased at any point after 2006?". +2023-10-27 14:07:34.146  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Isfahan at (18,25) with score null +2023-10-27 14:07:34.146  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Population at (4,14) with score null +2023-10-27 14:07:34.147 ERROR 9655 --- [io-11022-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause + +java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:08:23.705  INFO 9655 --- [o-11022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:23.707  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:23.707  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} +2023-10-27 14:08:23.707  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@16ec29d7 +2023-10-27 14:08:23.721  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@211d13f2 +2023-10-27 14:08:23.722 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:23.723  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:23.723  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:23.731 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 +2023-10-27 14:08:23.731  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql +2023-10-27 14:08:23.732 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? +2023-10-27 14:08:23.732  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1b340182 +2023-10-27 14:08:23.733 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:08:23.734  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:08:23.768  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(10,28) (score=null>=0.5) ignored=false +2023-10-27 14:08:23.780 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? +2023-10-27 14:08:23.780  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (1 items) of getNamedEntitiesOfQuestion for question "Where was Roland Corporation founded?". +2023-10-27 14:08:23.781  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Roland_(Unternehmen) at (10,28) with score null +2023-10-27 14:08:23.782 ERROR 9655 --- [o-11022-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause + +java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} +2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@314a6871 +2023-10-27 14:08:25.264  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38b3fa5d +2023-10-27 14:08:25.264 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:08:25.264  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:25.264  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:08:25.270 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c +2023-10-27 14:08:25.270  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql +2023-10-27 14:08:25.272 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? +2023-10-27 14:08:25.272  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6cbdf4b1 +2023-10-27 14:08:25.272 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:08:25.273  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:08:25.295 ERROR 9655 --- [io-11022-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Naomi_Novik"] with root cause + +org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Naomi_Novik" + at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] + at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] + at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] + at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] + at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] + at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] + +2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@9646ba4 +2023-10-27 14:09:07.730  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3cc779b0 +2023-10-27 14:09:07.730 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:09:07.731  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:07.731  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:09:07.738 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be +2023-10-27 14:09:07.738  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be found in urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 at http://localhost:8080/sparql +2023-10-27 14:09:07.739 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? +2023-10-27 14:09:07.740  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20f529ed +2023-10-27 14:09:07.740 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:09:07.741  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:09:07.771 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? +2023-10-27 14:09:07.771  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "In which country is Oberirrach ?". +2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? +2023-10-27 14:09:07.779  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'In which country is Oberirrach ?' +2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: In which country is Oberirrach ? +2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : In which country is Oberirrach ? +2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:09:07.779  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[In which country is Oberirrach ?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[In which country is Oberirrach ?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1591091684 +2023-10-27 14:09:07.941 DEBUG 9655 --- [io-11022-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@12222e7d +2023-10-27 14:09:09.518 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:09:09.518 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'In which country is Oberirrach ?': [{question={answers={ + "head" : { + "vars" : [ + "o1" + ] + }, + "results" : { + "bindings" : [ + { + "o1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q40" + } + } + ] + } +}, language=[{SPARQL=SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000, confidence=0.25}]}}] +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]}}]} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]}} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}] +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q40 +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]}} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}] +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q40 +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]}} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]} +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}] +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q40 +2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources +2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} +2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}] +2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25} +2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000 +2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.25 +2023-10-27 14:09:09.527 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be +2023-10-27 14:09:09.527  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:09:09.527 DEBUG 9655 --- [io-11022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.25"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("In which country is Oberirrach ?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"o1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q40\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000\",\"confidence\":0.25}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:09:09.549 DEBUG 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 1835 ms +2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} +2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@4209be1e +2023-10-27 14:10:14.030  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52423cae +2023-10-27 14:10:14.030 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:14.031  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:14.031  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:14.038 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e +2023-10-27 14:10:14.039  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e found in urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224 at http://localhost:8080/sparql +2023-10-27 14:10:14.040 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:14.040  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aca8795 +2023-10-27 14:10:14.040 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:10:14.041  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:10:14.075 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:14.076  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "How many Oscars did all the movies directed by Hayao Miyazaki combined win?". +2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:14.084  WARN 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?' +2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : How many Oscars did all the movies directed by Hayao Miyazaki combined win? +2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:10:14.084  WARN 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[How many Oscars did all the movies directed by Hayao Miyazaki combined win?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[How many Oscars did all the movies directed by Hayao Miyazaki combined win?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=391741153 +2023-10-27 14:10:14.176 DEBUG 9655 --- [io-11022-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6a5509df +2023-10-27 14:10:22.939 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:10:22.940 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:10:22.940  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?': [{question={answers={ + "head" : { + "vars" : [ + "count" + ] + }, + "results" : { + "bindings" : [ + { + "count" : { + "datatype" : "http://www.w3.org/2001/XMLSchema#integer", + "type" : "literal", + "value" : "0" + } + } + ] + } +}, language=[{SPARQL=SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000, confidence=0.12}]}}] +2023-10-27 14:10:22.940  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http:\/\/www.w3.org\/2001\/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]}}]} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] +2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 +2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals +2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (http://www.w3.org/2001/XMLSchema#integer). +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] +2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 +2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}] +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12} +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000 +2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.12 +2023-10-27 14:10:22.947 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e +2023-10-27 14:10:22.948  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:10:22.948 DEBUG 9655 --- [io-11022-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 "0"^^ ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.12"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("How many Oscars did all the movies directed by Hayao Miyazaki combined win?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"count\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"count\\\" : { \\\"datatype\\\" : \\\"http://www.w3.org/2001/XMLSchema#integer\\\", \\\"type\\\" : \\\"literal\\\", \\\"value\\\" : \\\"0\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000\",\"confidence\":0.12}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:10:22.975 DEBUG 9655 --- [io-11022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 8952 ms +2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@206a950c +2023-10-27 14:10:31.764  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ace24e +2023-10-27 14:10:31.765 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:10:31.765  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:31.766  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:10:31.773 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb +2023-10-27 14:10:31.773  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql +2023-10-27 14:10:31.775 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? +2023-10-27 14:10:31.775  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b79676 +2023-10-27 14:10:31.775 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:10:31.776  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:10:31.822 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? +2023-10-27 14:10:31.822  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Which creator of The OA also acted in it?". +2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? +2023-10-27 14:10:31.832  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Which creator of The OA also acted in it?' +2023-10-27 14:10:31.832  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Which creator of The OA also acted in it? +2023-10-27 14:10:31.832  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Which creator of The OA also acted in it? +2023-10-27 14:10:31.832  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:10:31.832  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Which creator of The OA also acted in it?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Which creator of The OA also acted in it?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:10:31.833  INFO 9655 --- [io-11022-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-368850252 +2023-10-27 14:10:31.928 DEBUG 9655 --- [io-11022-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30a90a43 +2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:10:38.499  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Which creator of The OA also acted in it?': [{question={answers={ + "head" : { + "vars" : [ + "s1" + ] + }, + "results" : { + "bindings" : [ ] + } +}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000, confidence=0.0}]}}] +2023-10-27 14:10:38.499  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]}}]} +2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]} +2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} +2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 14:10:38.500  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 14:10:38.500  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]} +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] +2023-10-27 14:10:38.500  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]} +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}] +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0} +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000 +2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.0 +2023-10-27 14:10:38.508 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb +2023-10-27 14:10:38.508  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:10:38.508 DEBUG 9655 --- [io-11022-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.0"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("Which creator of The OA also acted in it?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000\",\"confidence\":0.0}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:10:38.530 DEBUG 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 6774 ms +2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@3f6ae30 +2023-10-27 14:11:19.066  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43e19f52 +2023-10-27 14:11:19.066 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +SELECT ?uri +FROM ?graph { + ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation . + ?a oa:hasTarget ?q . + ?a oa:hasBody ?uri . +} +2023-10-27 14:11:19.067  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:19.067  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: +PREFIX oa: + +SELECT ?uri +FROM +WHERE + { ?q a qa:Question . + ?a a qa:AnnotationOfTextRepresentation ; + oa:hasTarget ?q ; + oa:hasBody ?uri + } + +2023-10-27 14:11:19.072 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:19.072  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql +2023-10-27 14:11:19.073 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:19.074  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c2675da +2023-10-27 14:11:19.074 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: +PREFIX oa: +PREFIX qa: + +SELECT * +FROM ?graph +WHERE { + ?annotationId rdf:type qa:AnnotationOfInstance . + ?annotationId oa:hasTarget [ + a oa:SpecificResource; + oa:hasSource ?hasSource; + oa:hasSelector [ + a oa:TextPositionSelector; + oa:start ?start; + oa:end ?end + ] + ]. + ?annotationId oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + OPTIONAL { + ?annotationId qa:score ?score . + } +} +2023-10-27 14:11:19.075  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX rdf: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score + } + } + +2023-10-27 14:11:19.096  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(0,5) (score=0.5118103>=0.5) ignored=false +2023-10-27 14:11:19.096  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(18,37) (score=1.0>=0.5) ignored=false +2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? +2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "After whom is the Riemannian geometry named?". +2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/AfterMASH at (0,5) with score 0.5118103 +2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Riemannian_geometry at (18,37) with score 1.0 +2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'Riemannian geometry' at (18,37) results in: After whom is the http://dbpedia.org/resource/Riemannian_geometry named?, first:|After whom is the |, second:| named?| +2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'After' at (0,5) results in: http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?, first:||, second:| whom is the http://dbpedia.org/resource/Riemannian_geometry named?| +2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: After whom is the Riemannian geometry named? +2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named? +2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} +2023-10-27 14:11:19.104  WARN 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?], lang=[en], kb=[wikidata], user=[open]} +2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil +2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] +2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" +2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1242772544 +2023-10-27 14:11:19.191 DEBUG 9655 --- [io-11022-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7aed0d51 +2023-10-27 14:11:21.490 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK +2023-10-27 14:11:21.607 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] +2023-10-27 14:11:21.609  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?': [{question={answers={ + "head" : { + "vars" : [ + "s1" + ] + }, + "results" : { + "bindings" : [ + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/P97" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1000303" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100042862" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100138352" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100138547" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100144644" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100146345" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100146669" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100149091" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100149151" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100153085" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100154345" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100156282" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100158068" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100166497" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100200203" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100226840" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100230981" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100233550" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100235719" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1002465" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100247710" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100251476" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100255524" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100255571" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100255652" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100255673" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256033" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256260" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256336" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256365" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256384" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256423" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100256441" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100268330" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100268917" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100270821" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100271385" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100272277" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100272467" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100277657" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100290884" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100296857" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100296919" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100296954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100306163" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100323660" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10032888" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100336041" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1003491" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350697" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100350712" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100363472" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100363753" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100368900" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100369837" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100375843" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100377193" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100387742" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100397017" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1004124" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100416234" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100429444" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100437710" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100476322" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100497722" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100533874" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100534096" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100545431" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100567305" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100585173" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100588445" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1005902" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100600664" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100605702" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100683537" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100686728" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100690942" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100701460" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100707410" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100707432" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100707450" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100707560" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100707570" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100707579" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100707582" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100708568" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100708814" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100708828" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100709397" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100709407" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100709508" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100722474" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100726808" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100733133" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100740654" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100742710" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100744452" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100744910" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100750442" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100752647" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100766665" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100767188" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100768033" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100770629" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100771043" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100771094" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100777516" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100789929" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100791998" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100799377" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100853469" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100869791" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100872433" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100877419" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100880026" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100890188" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100890633" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100908749" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100916130" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100927753" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100935224" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100935227" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100938271" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100939770" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100945066" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100945285" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100945637" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100978462" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100979333" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100982849" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100982861" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100983365" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100997212" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100997306" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100997397" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q100998590" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101010922" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101013250" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101032352" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101054473" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063207" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063233" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063240" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063248" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063295" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063323" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063350" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063362" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101063364" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101065644" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101071928" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101075720" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101079308" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101094792" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101096138" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101113247" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101115774" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101116447" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101116604" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101130750" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101137443" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1011446" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101160132" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101173400" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101199215" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101205665" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101205681" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101205732" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101205779" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101209733" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101223763" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101228463" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101238280" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101243257" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101247428" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101247484" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101247489" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101247519" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101247540" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101247567" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101248074" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101267136" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101324254" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101333514" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101334319" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101343924" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101349536" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101349712" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101356218" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101402616" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101418327" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101418887" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101419071" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101419751" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101422799" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101423783" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101427897" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101427898" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101428516" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101429521" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101436914" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101438997" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101441954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101444705" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101445621" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101445676" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101445883" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101445913" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101453383" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101459115" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101484096" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101486501" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101495425" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101497289" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101497449" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101497643" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101497866" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101498264" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101498470" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101498584" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101500281" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101500907" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101504200" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101522111" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101524075" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101528994" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101535940" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101538319" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101538374" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101538434" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101538703" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101538826" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101539018" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101539047" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101541410" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101542180" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101542257" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101552911" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101554049" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101566501" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101566783" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101579769" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101583472" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101627797" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1016407" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101668466" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1016801" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101695457" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101697785" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101702521" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1017046" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1017086" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1017332" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101753497" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101754733" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101754990" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101758330" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101788376" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101795434" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101797745" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1018087" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101833802" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1018465" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101913232" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101953096" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q101971567" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102039658" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102045857" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102045965" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102046013" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102047781" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102048093" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102048138" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102048612" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102048854" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102049697" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102049796" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102049844" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102049925" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102050005" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102050517" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102050884" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102076291" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102083" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102083439" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102083767" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102104632" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102120106" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102150752" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102158574" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102158749" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102162072" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102162094" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102165489" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102177201" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102180882" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102187356" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102187912" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102201050" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102204875" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102204893" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102204905" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102208413" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102210482" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102210838" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102211352" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102211649" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102212673" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102213098" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102216056" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102216237" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102216486" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102216808" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102217141" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102226106" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102226212" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102239874" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1022483" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102251036" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102252101" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102252119" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102254530" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102260583" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102261737" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102276173" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102276807" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102278041" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102278043" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102278045" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102278048" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102278424" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1022791" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102281601" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102281677" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102290356" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102291484" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102291875" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102294569" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102297519" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102298581" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102299711" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102310627" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102310701" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102312294" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102313297" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102315377" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1023161" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102316221" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102317157" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102317554" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102324008" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102328716" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102329273" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102336299" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102336787" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102336810" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102337773" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338301" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338310" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338312" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338315" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338318" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338436" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338439" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338694" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338699" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338704" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338706" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338801" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338805" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338807" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338810" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338811" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102338813" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102350347" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102352778" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102354463" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102361119" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102362004" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102362324" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1023727" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102379157" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102388622" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102396650" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102400530" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102418503" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102420543" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102431966" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102452206" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102454460" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102455933" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102457871" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1025106" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1025118" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1025121" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102528897" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1025919" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10259887" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10260424" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10260577" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102616336" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10263636" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10264107" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10266053" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1026612" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10267059" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10267060" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10267766" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10268756" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10268937" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10269109" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10269524" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10269526" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10269529" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10270319" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10270984" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10271017" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10271175" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10272701" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1027366" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10274024" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10274868" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102797423" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10282109" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10282783" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102829543" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1028297" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10284285" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102849713" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10286148" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10286251" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10286510" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10286661" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10286972" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q102885027" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10288525" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10289329" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10290705" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10290892" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1029135" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10291411" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10291443" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10293585" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10293927" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10294040" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10294484" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10294550" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10295954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10295993" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10296131" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10296770" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10297919" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10299026" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10301351" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10301981" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10302268" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10303514" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10303515" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10303537" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10303540" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10303978" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103042012" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103049401" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10305017" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10305246" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10307972" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10313048" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10313385" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10313613" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10313703" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10313889" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10314198" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10314768" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10314975" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10315455" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103163" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103179432" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1031816" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10318606" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10319052" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10320043" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103222362" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10322521" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10323221" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10325569" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326696" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326697" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326698" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326700" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326701" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326703" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326704" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326708" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326712" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326713" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326714" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326715" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326722" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326724" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326725" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326726" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326727" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326729" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326730" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326731" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326733" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326734" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326736" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326737" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326739" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326742" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326744" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326745" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326746" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326751" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326753" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326754" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10326756" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10329206" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10329657" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10329673" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103304064" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10330721" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10331068" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103318185" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10331823" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10333980" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1033408" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10334176" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1033460" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10335304" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103375029" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103375635" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10337647" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10337956" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10338655" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1033877" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10340551" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10340971" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103409942" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10341016" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1034117" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10341264" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10341401" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103432988" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103449792" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10346072" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103479666" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10348576" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10349213" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10349216" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103492756" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103498067" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10349975" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103501493" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10350954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1035129" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10351538" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1035157" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10351611" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10354482" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10355035" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10355042" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10355178" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1035611" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10356616" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10356912" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103582989" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10359188" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1036025" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1036027" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1036039" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103619797" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10364748" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103649446" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10366548" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103676187" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103684222" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10368807" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1036944" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10369482" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10370031" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10370032" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103705570" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103715454" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10371973" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10372354" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10372428" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10372429" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10372430" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10373104" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10373382" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10373392" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10373394" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10373395" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10373954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103754677" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10375920" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10377711" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10377712" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10377714" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10377715" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10377717" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10378137" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10379103" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10379249" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10379369" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103798029" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10380168" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103819965" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103820839" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103821030" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10382162" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10382537" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103826228" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10383257" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103837374" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103837460" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1038377" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103838847" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103847517" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103848331" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103848601" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103850890" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10385407" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10385708" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10386185" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10387054" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10387060" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10387760" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10387761" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10388661" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10388793" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103888328" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103888331" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103888641" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10389579" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10389914" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103911669" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391797" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391798" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391799" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391800" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391802" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391803" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391807" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391808" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391809" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391810" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391811" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391812" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391813" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391814" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391815" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391816" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391817" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391818" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391819" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391821" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391822" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391823" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391825" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391826" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391827" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391828" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391829" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391830" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391831" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391832" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391833" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391834" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391835" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391837" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391839" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391840" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391841" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391842" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391843" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391845" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391846" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391847" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391850" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391851" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391853" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391854" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391855" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391857" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391859" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391860" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391862" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391863" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391864" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391866" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391867" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391868" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391869" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391870" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391873" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391874" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391875" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391876" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391877" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391878" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391880" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391881" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391882" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391884" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391886" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391888" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391889" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391890" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391891" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391892" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391893" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391894" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391896" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391897" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391899" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391900" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391901" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391902" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391903" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391905" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391906" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391907" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391908" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391909" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391910" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391911" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391912" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391914" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391915" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391916" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391917" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391919" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391920" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391921" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391923" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391925" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391926" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391927" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391928" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391929" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391930" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391931" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391932" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391933" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391934" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391936" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391939" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391940" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391941" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391942" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391943" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391944" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391945" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391947" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391948" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391949" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391950" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391951" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391953" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391954" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391955" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391956" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391957" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391958" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391959" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391960" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391961" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391962" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391963" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391965" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391966" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391967" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391969" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391970" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391971" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391972" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391973" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391974" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391977" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391979" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391980" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391981" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391982" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391983" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391985" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391986" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10391987" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10392149" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103924317" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103924462" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10392664" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10392733" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10392775" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10393218" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10393219" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10393220" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10393551" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10394046" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1039432" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10394995" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10394997" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10395155" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103958059" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103958350" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103959782" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10396329" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103980526" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103982686" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103985237" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10398667" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10398706" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10398707" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1039908" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10399113" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103991413" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q103993134" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10400698" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104007577" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10400866" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10401140" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10401509" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104022211" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104022342" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10402660" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104028711" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104029581" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104029584" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104033750" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104034668" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104042609" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104043752" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104047679" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10404777" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104049534" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104051165" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104051980" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104054163" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1040543" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104054601" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104057038" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1040603" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104062828" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10406715" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1040689" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104072067" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10407258" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1040761" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1040806" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104082897" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104084793" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10408556" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104086600" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104088310" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104092899" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104093156" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104093542" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104097697" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104097708" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104097772" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104097803" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104098872" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10410183" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104107856" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1041144" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411663" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411862" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411863" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411864" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411865" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411866" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411867" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411868" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10411888" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104119755" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104119777" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104127079" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104128067" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104128400" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10413668" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104145349" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104151609" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104151652" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104151655" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104152731" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104153418" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104154385" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104154414" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104156356" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104156983" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104157029" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104157721" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10415972" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104160135" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104161269" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104163111" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104165632" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1041668" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104170787" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104170805" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104170815" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104170826" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104170838" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104170845" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104176270" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104176717" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10417798" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104179196" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104179526" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10418059" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104182012" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104187784" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104188332" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104188943" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104189007" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104190216" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104192449" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104192625" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104205792" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10420805" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10420835" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104211534" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104211551" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104211601" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104212495" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104213523" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104213637" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104213909" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104214025" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104214213" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104217454" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104223698" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104223759" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104223964" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104234421" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104234446" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10423734" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104241536" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104243375" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104246069" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104247017" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104247355" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104250289" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104251914" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10425586" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10426590" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1042670" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104269190" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10428456" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10428811" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10429813" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10430832" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10430859" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104315503" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10432404" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104329352" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433030" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433040" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433041" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433042" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433043" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433044" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q1043341" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433512" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433513" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433514" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433515" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433516" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433517" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433518" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433519" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433520" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433521" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433522" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433523" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433524" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433525" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433526" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433527" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433528" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433529" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433530" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433531" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433532" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433533" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433534" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433536" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433537" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433538" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433539" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433540" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10433541" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10434744" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10435984" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q10436549" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104368133" + } + }, + { + "s1" : { + "type" : "uri", + "value" : "http://www.wikidata.org/entity/Q104372944" + } + } + ] + } +}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000, confidence=0.08}]}}] +2023-10-27 14:11:21.610  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]}}]} +2023-10-27 14:11:21.611 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 14:11:21.614 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]}} +2023-10-27 14:11:21.614 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]} +2023-10-27 14:11:21.615 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:11:21.615 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}] +2023-10-27 14:11:21.615  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/P97 +2023-10-27 14:11:21.615  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. +2023-10-27 14:11:21.615 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]}} +2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]} +2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}] +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/P97 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000303 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100042862 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100138352 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100138547 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144644 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100146345 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100146669 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100149091 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100149151 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100153085 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100154345 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100156282 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100158068 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100166497 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100200203 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100226840 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100230981 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100233550 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100235719 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q1002465 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100247710 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100251476 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100255524 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100255571 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100255652 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100255673 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100256033 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100256260 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100256336 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100256365 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100256384 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100256423 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100256441 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100268330 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100268917 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100270821 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100271385 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100272277 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100272467 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100277657 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100290884 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100296857 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100296919 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100296954 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100306163 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100323660 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q10032888 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100336041 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q1003491 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100350697 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100350712 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100363472 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100363753 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100368900 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100369837 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100375843 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100377193 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100387742 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100397017 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q1004124 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100416234 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100429444 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q100437710 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100476322 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100497722 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100533874 +2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100534096 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100545431 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100567305 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100585173 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q100588445 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1005902 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100600664 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100605702 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q100683537 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q100686728 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100690942 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100701460 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100707410 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100707432 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100707450 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100707560 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100707570 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100707579 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100707582 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100708568 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100708814 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100708828 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100709397 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100709407 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100709508 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100722474 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100726808 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100733133 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100740654 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100742710 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100744452 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100744910 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100750442 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100752647 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100766665 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100767188 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100768033 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100770629 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100771043 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100771094 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100777516 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100789929 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100791998 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100799377 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100853469 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100869791 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100872433 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100877419 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100880026 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100890188 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100890633 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100908749 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100916130 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100927753 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100935224 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100935227 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100938271 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100939770 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100945066 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100945285 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100945637 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100978462 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100979333 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100982849 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100982861 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100983365 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100997212 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100997306 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100997397 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100998590 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q101010922 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q101013250 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q101032352 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q101054473 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q101063207 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q101063233 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q101063240 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q101063248 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q101063295 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q101063323 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q101063350 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q101063362 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q101063364 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q101065644 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q101071928 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q101075720 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q101079308 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q101094792 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q101096138 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q101113247 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q101115774 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q101116447 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q101116604 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q101130750 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q101137443 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q1011446 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q101160132 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q101173400 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q101199215 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q101205665 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q101205681 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q101205732 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q101205779 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q101209733 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q101223763 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q101228463 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q101238280 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q101243257 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q101247428 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q101247484 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q101247489 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q101247519 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q101247540 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q101247567 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q101248074 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q101267136 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q101324254 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q101333514 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q101334319 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q101343924 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q101349536 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q101349712 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q101356218 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q101402616 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q101418327 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q101418887 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q101419071 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q101419751 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q101422799 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q101423783 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q101427897 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q101427898 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q101428516 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q101429521 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q101436914 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q101438997 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q101441954 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q101444705 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q101445621 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q101445676 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q101445883 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q101445913 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q101453383 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q101459115 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q101484096 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q101486501 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q101495425 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q101497289 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q101497449 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q101497643 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q101497866 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q101498264 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q101498470 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q101498584 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q101500281 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q101500907 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q101504200 +2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q101522111 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q101524075 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q101528994 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q101535940 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q101538319 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q101538374 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q101538434 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q101538703 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q101538826 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q101539018 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q101539047 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q101541410 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q101542180 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q101542257 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q101552911 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q101554049 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q101566501 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q101566783 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q101579769 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q101583472 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q101627797 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q1016407 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q101668466 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q1016801 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q101695457 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q101697785 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q101702521 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q1017046 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q1017086 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q1017332 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q101753497 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q101754733 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q101754990 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q101758330 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q101788376 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q101795434 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q101797745 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q1018087 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q101833802 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q1018465 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q101913232 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q101953096 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q101971567 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q102039658 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q102045857 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q102045965 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q102046013 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q102047781 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q102048093 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q102048138 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q102048612 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q102048854 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q102049697 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q102049796 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q102049844 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q102049925 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q102050005 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q102050517 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q102050884 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q102076291 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q102083 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q102083439 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q102083767 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q102104632 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q102120106 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q102150752 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q102158574 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q102158749 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q102162072 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q102162094 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q102165489 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q102177201 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q102180882 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q102187356 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q102187912 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q102201050 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q102204875 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q102204893 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q102204905 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q102208413 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q102210482 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q102210838 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q102211352 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q102211649 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q102212673 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q102213098 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q102216056 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q102216237 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q102216486 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q102216808 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q102217141 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q102226106 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q102226212 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q102239874 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q1022483 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q102251036 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q102252101 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q102252119 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q102254530 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q102260583 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q102261737 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q102276173 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q102276807 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q102278041 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q102278043 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q102278045 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q102278048 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q102278424 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q1022791 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q102281601 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q102281677 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q102290356 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q102291484 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q102291875 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q102294569 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q102297519 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q102298581 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q102299711 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q102310627 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q102310701 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q102312294 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q102313297 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q102315377 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q1023161 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q102316221 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q102317157 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q102317554 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q102324008 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q102328716 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q102329273 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q102336299 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q102336787 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q102336810 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q102337773 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q102338301 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q102338310 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q102338312 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q102338315 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q102338318 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q102338436 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q102338439 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q102338694 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q102338699 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q102338704 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q102338706 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q102338801 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q102338805 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q102338807 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q102338810 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q102338811 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q102338813 +2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q102350347 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q102352778 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q102354463 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q102361119 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q102362004 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q102362324 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q1023727 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q102379157 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q102388622 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q102396650 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q102400530 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q102418503 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q102420543 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q102431966 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q102452206 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q102454460 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q102455933 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q102457871 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q1025106 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q1025118 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q1025121 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q102528897 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q1025919 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q10259887 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q10260424 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q10260577 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q102616336 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q10263636 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q10264107 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q10266053 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q1026612 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q10267059 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q10267060 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q10267766 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q10268756 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q10268937 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q10269109 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q10269524 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q10269526 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q10269529 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q10270319 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q10270984 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q10271017 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q10271175 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q10272701 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q1027366 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q10274024 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q10274868 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q102797423 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q10282109 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q10282783 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q102829543 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q1028297 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q10284285 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q102849713 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q10286148 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q10286251 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q10286510 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q10286661 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q10286972 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q102885027 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q10288525 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q10289329 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q10290705 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q10290892 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q1029135 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q10291411 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q10291443 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q10293585 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q10293927 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q10294040 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q10294484 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q10294550 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q10295954 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q10295993 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q10296131 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q10296770 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q10297919 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q10299026 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q10301351 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q10301981 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q10302268 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q10303514 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q10303515 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q10303537 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q10303540 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q10303978 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q103042012 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q103049401 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q10305017 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q10305246 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q10307972 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q10313048 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q10313385 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q10313613 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q10313703 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q10313889 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q10314198 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q10314768 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q10314975 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q10315455 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q103163 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q103179432 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q1031816 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q10318606 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q10319052 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q10320043 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q103222362 +2023-10-27 14:11:21.622  INFO [35m9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q10322521 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q10323221 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q10325569 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q10326696 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q10326697 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q10326698 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q10326700 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q10326701 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q10326703 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q10326704 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q10326708 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q10326712 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q10326713 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q10326714 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q10326715 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q10326722 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q10326724 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q10326725 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q10326726 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q10326727 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q10326729 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q10326730 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q10326731 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q10326733 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q10326734 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q10326736 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q10326737 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q10326739 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q10326742 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q10326744 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q10326745 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q10326746 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q10326751 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q10326753 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q10326754 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q10326756 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q10329206 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q10329657 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q10329673 +2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q103304064 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q10330721 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q10331068 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q103318185 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q10331823 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q10333980 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q1033408 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q10334176 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q1033460 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q10335304 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q103375029 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q103375635 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q10337647 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q10337956 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q10338655 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q1033877 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q10340551 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q10340971 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q103409942 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q10341016 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q1034117 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q10341264 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q10341401 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q103432988 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q103449792 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q10346072 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q103479666 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q10348576 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q10349213 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q10349216 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q103492756 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q103498067 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q10349975 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q103501493 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q10350954 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q1035129 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q10351538 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q1035157 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q10351611 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q10354482 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q10355035 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q10355042 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q10355178 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q1035611 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q10356616 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q10356912 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q103582989 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q10359188 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q1036025 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q1036027 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q1036039 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q103619797 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q10364748 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q103649446 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q10366548 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q103676187 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q103684222 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q10368807 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q1036944 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q10369482 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q10370031 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q10370032 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q103705570 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q103715454 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q10371973 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q10372354 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q10372428 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q10372429 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q10372430 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q10373104 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q10373382 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q10373392 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q10373394 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q10373395 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q10373954 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q103754677 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q10375920 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q10377711 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q10377712 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q10377714 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q10377715 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q10377717 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q10378137 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q10379103 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q10379249 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q10379369 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q103798029 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q10380168 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q103819965 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q103820839 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q103821030 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q10382162 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q10382537 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q103826228 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q10383257 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q103837374 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q103837460 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q1038377 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q103838847 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q103847517 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q103848331 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q103848601 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q103850890 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q10385407 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q10385708 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q10386185 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q10387054 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q10387060 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q10387760 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q10387761 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q10388661 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q10388793 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q103888328 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q103888331 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q103888641 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q10389579 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q10389914 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q103911669 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q10391797 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q10391798 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q10391799 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q10391800 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q10391802 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q10391803 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q10391807 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q10391808 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q10391809 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q10391810 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q10391811 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q10391812 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q10391813 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q10391814 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q10391815 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q10391816 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q10391817 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q10391818 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q10391819 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q10391821 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q10391822 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q10391823 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q10391825 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q10391826 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q10391827 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q10391828 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q10391829 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q10391830 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q10391831 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q10391832 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q10391833 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q10391834 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q10391835 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q10391837 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q10391839 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q10391840 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q10391841 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q10391842 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q10391843 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q10391845 +2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q10391846 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q10391847 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q10391850 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q10391851 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q10391853 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q10391854 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q10391855 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q10391857 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q10391859 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q10391860 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q10391862 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q10391863 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q10391864 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q10391866 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q10391867 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q10391868 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q10391869 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q10391870 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q10391873 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q10391874 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q10391875 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q10391876 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q10391877 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q10391878 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q10391880 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q10391881 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q10391882 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q10391884 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q10391886 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q10391888 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q10391889 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q10391890 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q10391891 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q10391892 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q10391893 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q10391894 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q10391896 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q10391897 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q10391899 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q10391900 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q10391901 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q10391902 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q10391903 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q10391905 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q10391906 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q10391907 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q10391908 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q10391909 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q10391910 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q10391911 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q10391912 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q10391914 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q10391915 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q10391916 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q10391917 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q10391919 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q10391920 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q10391921 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q10391923 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q10391925 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q10391926 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q10391927 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q10391928 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q10391929 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q10391930 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q10391931 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q10391932 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q10391933 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q10391934 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q10391936 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q10391939 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q10391940 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q10391941 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q10391942 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q10391943 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q10391944 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q10391945 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q10391947 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q10391948 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q10391949 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q10391950 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q10391951 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q10391953 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q10391954 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q10391955 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q10391956 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q10391957 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q10391958 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q10391959 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q10391960 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q10391961 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q10391962 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q10391963 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q10391965 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q10391966 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q10391967 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q10391969 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q10391970 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q10391971 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q10391972 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q10391973 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q10391974 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q10391977 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q10391979 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q10391980 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q10391981 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q10391982 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q10391983 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q10391985 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q10391986 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q10391987 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q10392149 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q103924317 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q103924462 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q10392664 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q10392733 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q10392775 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q10393218 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q10393219 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q10393220 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q10393551 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q10394046 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q1039432 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q10394995 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q10394997 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q10395155 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q103958059 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q103958350 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q103959782 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q10396329 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q103980526 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q103982686 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q103985237 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q10398667 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q10398706 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q10398707 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q1039908 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q10399113 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q103991413 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q103993134 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q10400698 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q104007577 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q10400866 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q10401140 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q10401509 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q104022211 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q104022342 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q10402660 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q104028711 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q104029581 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q104029584 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q104033750 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q104034668 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q104042609 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q104043752 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q104047679 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q10404777 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q104049534 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q104051165 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q104051980 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q104054163 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q1040543 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q104054601 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q104057038 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q1040603 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q104062828 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q10406715 +2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q1040689 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q104072067 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q10407258 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q1040761 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q1040806 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q104082897 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q104084793 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q10408556 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q104086600 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q104088310 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q104092899 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q104093156 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q104093542 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q104097697 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q104097708 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q104097772 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q104097803 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q104098872 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q10410183 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q104107856 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q1041144 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q10411663 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q10411862 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q10411863 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q10411864 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q10411865 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q10411866 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q10411867 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q10411868 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q10411888 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q104119755 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q104119777 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q104127079 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q104128067 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q104128400 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q10413668 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q104145349 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q104151609 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q104151652 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q104151655 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q104152731 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q104153418 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q104154385 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q104154414 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q104156356 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q104156983 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q104157029 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q104157721 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q10415972 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q104160135 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q104161269 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q104163111 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q104165632 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q1041668 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q104170787 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q104170805 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q104170815 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q104170826 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q104170838 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q104170845 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q104176270 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q104176717 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q10417798 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q104179196 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q104179526 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q10418059 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q104182012 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q104187784 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q104188332 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q104188943 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q104189007 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q104190216 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q104192449 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q104192625 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q104205792 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q10420805 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q10420835 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q104211534 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q104211551 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q104211601 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q104212495 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q104213523 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q104213637 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q104213909 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q104214025 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q104214213 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q104217454 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q104223698 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q104223759 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q104223964 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q104234421 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q104234446 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q10423734 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q104241536 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q104243375 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q104246069 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q104247017 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q104247355 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q104250289 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q104251914 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q10425586 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q10426590 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q1042670 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q104269190 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q10428456 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q10428811 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q10429813 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q10430832 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q10430859 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q104315503 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q10432404 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q104329352 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q10433030 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q10433040 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q10433041 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q10433042 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q10433043 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q10433044 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q1043341 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q10433512 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q10433513 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q10433514 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q10433515 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q10433516 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q10433517 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q10433518 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q10433519 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q10433520 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q10433521 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q10433522 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q10433523 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q10433524 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q10433525 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q10433526 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q10433527 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q10433528 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q10433529 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q10433530 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q10433531 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q10433532 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q10433533 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q10433534 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q10433536 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q10433537 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q10433538 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q10433539 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q10433540 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q10433541 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q10434744 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q10435984 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q10436549 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q104368133 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q104372944 +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources +2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. +2023-10-27 14:11:21.625 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]}} +2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]} +2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 +2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}] +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/P97 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000303 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100042862 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100138352 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100138547 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144644 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100146345 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100146669 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100149091 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100149151 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100153085 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100154345 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100156282 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100158068 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100166497 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100200203 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100226840 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100230981 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100233550 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100235719 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q1002465 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100247710 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100251476 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100255524 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100255571 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100255652 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100255673 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100256033 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100256260 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100256336 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100256365 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100256384 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100256423 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100256441 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100268330 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100268917 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100270821 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100271385 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100272277 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100272467 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100277657 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100290884 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100296857 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100296919 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100296954 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100306163 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100323660 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q10032888 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100336041 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q1003491 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100350697 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100350712 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100363472 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100363753 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100368900 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100369837 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100375843 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100377193 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100387742 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100397017 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q1004124 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100416234 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100429444 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q100437710 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100476322 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100497722 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100533874 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100534096 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100545431 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100567305 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100585173 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q100588445 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1005902 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100600664 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100605702 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q100683537 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q100686728 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100690942 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100701460 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100707410 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100707432 +2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100707450 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100707560 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100707570 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100707579 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100707582 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100708568 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100708814 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100708828 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100709397 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100709407 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100709508 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100722474 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100726808 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100733133 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100740654 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100742710 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100744452 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100744910 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100750442 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100752647 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100766665 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100767188 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100768033 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100770629 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100771043 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100771094 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100777516 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100789929 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100791998 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100799377 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100853469 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100869791 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100872433 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100877419 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100880026 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100890188 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100890633 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100908749 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100916130 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100927753 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100935224 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100935227 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100938271 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100939770 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100945066 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100945285 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100945637 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100978462 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100979333 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100982849 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100982861 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100983365 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100997212 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100997306 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100997397 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100998590 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q101010922 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q101013250 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q101032352 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q101054473 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q101063207 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q101063233 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q101063240 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q101063248 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q101063295 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q101063323 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q101063350 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q101063362 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q101063364 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q101065644 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q101071928 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q101075720 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q101079308 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q101094792 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q101096138 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q101113247 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q101115774 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q101116447 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q101116604 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q101130750 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q101137443 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q1011446 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q101160132 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q101173400 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q101199215 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q101205665 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q101205681 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q101205732 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q101205779 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q101209733 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q101223763 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q101228463 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q101238280 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q101243257 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q101247428 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q101247484 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q101247489 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q101247519 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q101247540 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q101247567 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q101248074 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q101267136 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q101324254 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q101333514 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q101334319 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q101343924 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q101349536 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q101349712 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q101356218 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q101402616 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q101418327 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q101418887 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q101419071 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q101419751 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q101422799 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q101423783 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q101427897 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q101427898 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q101428516 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q101429521 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q101436914 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q101438997 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q101441954 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q101444705 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q101445621 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q101445676 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q101445883 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q101445913 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q101453383 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q101459115 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q101484096 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q101486501 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q101495425 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q101497289 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q101497449 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q101497643 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q101497866 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q101498264 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q101498470 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q101498584 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q101500281 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q101500907 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q101504200 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q101522111 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q101524075 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q101528994 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q101535940 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q101538319 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q101538374 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q101538434 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q101538703 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q101538826 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q101539018 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q101539047 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q101541410 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q101542180 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q101542257 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q101552911 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q101554049 +2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q101566501 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q101566783 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q101579769 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q101583472 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q101627797 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q1016407 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q101668466 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q1016801 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q101695457 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q101697785 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q101702521 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q1017046 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q1017086 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q1017332 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q101753497 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q101754733 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q101754990 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q101758330 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q101788376 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q101795434 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q101797745 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q1018087 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q101833802 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q1018465 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q101913232 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q101953096 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q101971567 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q102039658 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q102045857 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q102045965 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q102046013 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q102047781 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q102048093 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q102048138 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q102048612 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q102048854 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q102049697 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q102049796 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q102049844 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q102049925 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q102050005 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q102050517 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q102050884 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q102076291 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q102083 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q102083439 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q102083767 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q102104632 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q102120106 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q102150752 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q102158574 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q102158749 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q102162072 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q102162094 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q102165489 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q102177201 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q102180882 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q102187356 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q102187912 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q102201050 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q102204875 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q102204893 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q102204905 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q102208413 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q102210482 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q102210838 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q102211352 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q102211649 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q102212673 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q102213098 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q102216056 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q102216237 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q102216486 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q102216808 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q102217141 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q102226106 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q102226212 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q102239874 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q1022483 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q102251036 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q102252101 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q102252119 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q102254530 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q102260583 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q102261737 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q102276173 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q102276807 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q102278041 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q102278043 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q102278045 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q102278048 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q102278424 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q1022791 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q102281601 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q102281677 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q102290356 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q102291484 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q102291875 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q102294569 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q102297519 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q102298581 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q102299711 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q102310627 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q102310701 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q102312294 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q102313297 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q102315377 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q1023161 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q102316221 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q102317157 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q102317554 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q102324008 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q102328716 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q102329273 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q102336299 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q102336787 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q102336810 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q102337773 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q102338301 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q102338310 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q102338312 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q102338315 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q102338318 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q102338436 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q102338439 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q102338694 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q102338699 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q102338704 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q102338706 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q102338801 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q102338805 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q102338807 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q102338810 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q102338811 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q102338813 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q102350347 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q102352778 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q102354463 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q102361119 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q102362004 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q102362324 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q1023727 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q102379157 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q102388622 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q102396650 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q102400530 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q102418503 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q102420543 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q102431966 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q102452206 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q102454460 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q102455933 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q102457871 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q1025106 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q1025118 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q1025121 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q102528897 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q1025919 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q10259887 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q10260424 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q10260577 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q102616336 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q10263636 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q10264107 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q10266053 +2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q1026612 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q10267059 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q10267060 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q10267766 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q10268756 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q10268937 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q10269109 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q10269524 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q10269526 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q10269529 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q10270319 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q10270984 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q10271017 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q10271175 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q10272701 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q1027366 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q10274024 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q10274868 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q102797423 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q10282109 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q10282783 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q102829543 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q1028297 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q10284285 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q102849713 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q10286148 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q10286251 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q10286510 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q10286661 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q10286972 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q102885027 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q10288525 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q10289329 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q10290705 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q10290892 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q1029135 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q10291411 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q10291443 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q10293585 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q10293927 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q10294040 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q10294484 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q10294550 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q10295954 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q10295993 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q10296131 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q10296770 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q10297919 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q10299026 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q10301351 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q10301981 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q10302268 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q10303514 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q10303515 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q10303537 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q10303540 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q10303978 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q103042012 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q103049401 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q10305017 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q10305246 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q10307972 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q10313048 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q10313385 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q10313613 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q10313703 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q10313889 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q10314198 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q10314768 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q10314975 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q10315455 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q103163 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q103179432 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q1031816 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q10318606 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q10319052 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q10320043 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q103222362 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q10322521 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q10323221 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q10325569 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q10326696 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q10326697 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q10326698 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q10326700 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q10326701 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q10326703 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q10326704 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q10326708 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q10326712 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q10326713 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q10326714 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q10326715 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q10326722 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q10326724 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q10326725 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q10326726 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q10326727 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q10326729 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q10326730 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q10326731 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q10326733 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q10326734 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q10326736 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q10326737 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q10326739 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q10326742 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q10326744 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q10326745 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q10326746 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q10326751 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q10326753 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q10326754 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q10326756 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q10329206 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q10329657 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q10329673 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q103304064 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q10330721 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q10331068 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q103318185 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q10331823 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q10333980 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q1033408 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q10334176 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q1033460 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q10335304 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q103375029 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q103375635 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q10337647 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q10337956 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q10338655 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q1033877 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q10340551 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q10340971 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q103409942 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q10341016 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q1034117 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q10341264 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q10341401 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q103432988 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q103449792 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q10346072 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q103479666 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q10348576 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q10349213 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q10349216 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q103492756 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q103498067 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q10349975 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q103501493 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q10350954 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q1035129 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q10351538 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q1035157 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q10351611 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q10354482 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q10355035 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q10355042 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q10355178 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q1035611 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q10356616 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q10356912 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q103582989 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q10359188 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q1036025 +2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q1036027 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q1036039 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q103619797 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q10364748 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q103649446 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q10366548 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q103676187 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q103684222 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q10368807 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q1036944 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q10369482 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q10370031 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q10370032 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q103705570 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q103715454 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q10371973 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q10372354 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q10372428 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q10372429 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q10372430 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q10373104 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q10373382 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q10373392 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q10373394 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q10373395 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q10373954 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q103754677 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q10375920 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q10377711 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q10377712 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q10377714 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q10377715 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q10377717 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q10378137 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q10379103 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q10379249 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q10379369 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q103798029 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q10380168 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q103819965 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q103820839 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q103821030 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q10382162 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q10382537 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q103826228 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q10383257 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q103837374 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q103837460 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q1038377 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q103838847 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q103847517 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q103848331 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q103848601 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q103850890 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q10385407 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q10385708 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q10386185 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q10387054 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q10387060 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q10387760 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q10387761 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q10388661 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q10388793 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q103888328 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q103888331 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q103888641 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q10389579 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q10389914 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q103911669 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q10391797 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q10391798 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q10391799 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q10391800 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q10391802 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q10391803 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q10391807 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q10391808 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q10391809 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q10391810 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q10391811 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q10391812 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q10391813 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q10391814 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q10391815 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q10391816 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q10391817 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q10391818 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q10391819 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q10391821 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q10391822 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q10391823 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q10391825 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q10391826 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q10391827 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q10391828 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q10391829 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q10391830 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q10391831 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q10391832 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q10391833 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q10391834 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q10391835 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q10391837 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q10391839 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q10391840 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q10391841 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q10391842 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q10391843 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q10391845 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q10391846 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q10391847 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q10391850 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q10391851 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q10391853 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q10391854 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q10391855 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q10391857 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q10391859 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q10391860 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q10391862 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q10391863 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q10391864 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q10391866 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q10391867 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q10391868 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q10391869 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q10391870 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q10391873 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q10391874 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q10391875 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q10391876 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q10391877 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q10391878 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q10391880 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q10391881 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q10391882 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q10391884 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q10391886 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q10391888 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q10391889 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q10391890 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q10391891 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q10391892 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q10391893 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q10391894 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q10391896 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q10391897 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q10391899 +2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q10391900 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q10391901 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q10391902 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q10391903 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q10391905 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q10391906 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q10391907 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q10391908 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q10391909 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q10391910 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q10391911 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q10391912 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q10391914 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q10391915 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q10391916 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q10391917 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q10391919 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q10391920 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q10391921 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q10391923 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q10391925 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q10391926 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q10391927 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q10391928 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q10391929 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q10391930 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q10391931 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q10391932 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q10391933 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q10391934 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q10391936 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q10391939 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q10391940 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q10391941 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q10391942 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q10391943 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q10391944 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q10391945 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q10391947 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q10391948 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q10391949 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q10391950 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q10391951 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q10391953 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q10391954 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q10391955 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q10391956 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q10391957 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q10391958 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q10391959 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q10391960 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q10391961 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q10391962 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q10391963 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q10391965 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q10391966 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q10391967 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q10391969 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q10391970 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q10391971 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q10391972 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q10391973 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q10391974 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q10391977 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q10391979 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q10391980 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q10391981 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q10391982 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q10391983 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q10391985 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q10391986 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q10391987 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q10392149 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q103924317 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q103924462 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q10392664 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q10392733 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q10392775 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q10393218 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q10393219 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q10393220 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q10393551 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q10394046 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q1039432 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q10394995 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q10394997 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q10395155 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q103958059 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q103958350 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q103959782 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q10396329 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q103980526 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q103982686 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q103985237 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q10398667 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q10398706 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q10398707 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q1039908 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q10399113 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q103991413 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q103993134 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q10400698 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q104007577 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q10400866 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q10401140 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q10401509 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q104022211 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q104022342 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q10402660 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q104028711 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q104029581 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q104029584 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q104033750 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q104034668 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q104042609 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q104043752 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q104047679 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q10404777 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q104049534 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q104051165 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q104051980 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q104054163 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q1040543 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q104054601 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q104057038 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q1040603 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q104062828 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q10406715 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q1040689 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q104072067 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q10407258 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q1040761 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q1040806 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q104082897 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q104084793 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q10408556 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q104086600 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q104088310 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q104092899 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q104093156 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q104093542 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q104097697 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q104097708 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q104097772 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q104097803 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q104098872 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q10410183 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q104107856 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q1041144 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q10411663 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q10411862 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q10411863 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q10411864 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q10411865 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q10411866 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q10411867 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q10411868 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q10411888 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q104119755 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q104119777 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q104127079 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q104128067 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q104128400 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q10413668 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q104145349 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q104151609 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q104151652 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q104151655 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q104152731 +2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q104153418 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q104154385 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q104154414 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q104156356 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q104156983 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q104157029 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q104157721 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q10415972 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q104160135 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q104161269 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q104163111 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q104165632 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q1041668 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q104170787 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q104170805 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q104170815 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q104170826 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q104170838 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q104170845 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q104176270 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q104176717 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q10417798 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q104179196 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q104179526 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q10418059 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q104182012 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q104187784 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q104188332 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q104188943 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q104189007 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q104190216 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q104192449 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q104192625 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q104205792 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q10420805 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q10420835 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q104211534 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q104211551 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q104211601 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q104212495 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q104213523 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q104213637 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q104213909 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q104214025 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q104214213 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q104217454 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q104223698 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q104223759 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q104223964 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q104234421 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q104234446 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q10423734 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q104241536 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q104243375 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q104246069 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q104247017 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q104247355 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q104250289 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q104251914 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q10425586 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q10426590 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q1042670 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q104269190 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q10428456 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q10428811 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q10429813 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q10430832 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q10430859 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q104315503 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q10432404 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q104329352 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q10433030 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q10433040 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q10433041 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q10433042 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q10433043 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q10433044 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q1043341 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q10433512 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q10433513 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q10433514 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q10433515 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q10433516 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q10433517 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q10433518 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q10433519 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q10433520 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q10433521 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q10433522 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q10433523 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q10433524 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q10433525 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q10433526 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q10433527 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q10433528 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q10433529 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q10433530 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q10433531 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q10433532 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q10433533 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q10433534 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q10433536 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q10433537 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q10433538 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q10433539 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q10433540 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q10433541 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q10434744 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q10435984 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q10436549 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q104368133 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q104372944 +2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources +2023-10-27 14:11:21.635 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} +2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}] +2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08} +2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000 +2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.08 +2023-10-27 14:11:21.648 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:21.650  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: +2023-10-27 14:11:21.650 DEBUG 9655 --- [io-11022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: +PREFIX oa: +PREFIX xsd: +PREFIX rdf: +INSERT { +GRAPH { + ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; + oa:hasTarget ?question ; + oa:hasBody ?sparql ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score ; + qa:overKnowledgeGraph ?knowledgeGraph . + ?sparql a qa:SparqlQuery ; + rdf:value ?sparqlQueryString . + ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; + oa:hasTarget ?question ; + oa:hasBody ?improvedQuestion ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?improvedQuestion a qa:ImprovedQuestion ; + rdf:value ?improvedQuestionText . + ?annotationAnswer a qa:AnnotationAnswer ; + oa:hasTarget ?question ; + oa:hasBody ?answer ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answer a qa:Answer ; + rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ; rdf:_3 ; rdf:_4 ; rdf:_5 ; rdf:_6 ; rdf:_7 ; rdf:_8 ; rdf:_9 ; rdf:_10 ; rdf:_11 ; rdf:_12 ; rdf:_13 ; rdf:_14 ; rdf:_15 ; rdf:_16 ; rdf:_17 ; rdf:_18 ; rdf:_19 ; rdf:_20 ; rdf:_21 ; rdf:_22 ; rdf:_23 ; rdf:_24 ; rdf:_25 ; rdf:_26 ; rdf:_27 ; rdf:_28 ; rdf:_29 ; rdf:_30 ; rdf:_31 ; rdf:_32 ; rdf:_33 ; rdf:_34 ; rdf:_35 ; rdf:_36 ; rdf:_37 ; rdf:_38 ; rdf:_39 ; rdf:_40 ; rdf:_41 ; rdf:_42 ; rdf:_43 ; rdf:_44 ; rdf:_45 ; rdf:_46 ; rdf:_47 ; rdf:_48 ; rdf:_49 ; rdf:_50 ; rdf:_51 ; rdf:_52 ; rdf:_53 ; rdf:_54 ; rdf:_55 ; rdf:_56 ; rdf:_57 ; rdf:_58 ; rdf:_59 ; rdf:_60 ; rdf:_61 ; rdf:_62 ; rdf:_63 ; rdf:_64 ; rdf:_65 ; rdf:_66 ; rdf:_67 ; rdf:_68 ; rdf:_69 ; rdf:_70 ; rdf:_71 ; rdf:_72 ; rdf:_73 ; rdf:_74 ; rdf:_75 ; rdf:_76 ; rdf:_77 ; rdf:_78 ; rdf:_79 ; rdf:_80 ; rdf:_81 ; rdf:_82 ; rdf:_83 ; rdf:_84 ; rdf:_85 ; rdf:_86 ; rdf:_87 ; rdf:_88 ; rdf:_89 ; rdf:_90 ; rdf:_91 ; rdf:_92 ; rdf:_93 ; rdf:_94 ; rdf:_95 ; rdf:_96 ; rdf:_97 ; rdf:_98 ; rdf:_99 ; rdf:_100 ; rdf:_101 ; rdf:_102 ; rdf:_103 ; rdf:_104 ; rdf:_105 ; rdf:_106 ; rdf:_107 ; rdf:_108 ; rdf:_109 ; rdf:_110 ; rdf:_111 ; rdf:_112 ; rdf:_113 ; rdf:_114 ; rdf:_115 ; rdf:_116 ; rdf:_117 ; rdf:_118 ; rdf:_119 ; rdf:_120 ; rdf:_121 ; rdf:_122 ; rdf:_123 ; rdf:_124 ; rdf:_125 ; rdf:_126 ; rdf:_127 ; rdf:_128 ; rdf:_129 ; rdf:_130 ; rdf:_131 ; rdf:_132 ; rdf:_133 ; rdf:_134 ; rdf:_135 ; rdf:_136 ; rdf:_137 ; rdf:_138 ; rdf:_139 ; rdf:_140 ; rdf:_141 ; rdf:_142 ; rdf:_143 ; rdf:_144 ; rdf:_145 ; rdf:_146 ; rdf:_147 ; rdf:_148 ; rdf:_149 ; rdf:_150 ; rdf:_151 ; rdf:_152 ; rdf:_153 ; rdf:_154 ; rdf:_155 ; rdf:_156 ; rdf:_157 ; rdf:_158 ; rdf:_159 ; rdf:_160 ; rdf:_161 ; rdf:_162 ; rdf:_163 ; rdf:_164 ; rdf:_165 ; rdf:_166 ; rdf:_167 ; rdf:_168 ; rdf:_169 ; rdf:_170 ; rdf:_171 ; rdf:_172 ; rdf:_173 ; rdf:_174 ; rdf:_175 ; rdf:_176 ; rdf:_177 ; rdf:_178 ; rdf:_179 ; rdf:_180 ; rdf:_181 ; rdf:_182 ; rdf:_183 ; rdf:_184 ; rdf:_185 ; rdf:_186 ; rdf:_187 ; rdf:_188 ; rdf:_189 ; rdf:_190 ; rdf:_191 ; rdf:_192 ; rdf:_193 ; rdf:_194 ; rdf:_195 ; rdf:_196 ; rdf:_197 ; rdf:_198 ; rdf:_199 ; rdf:_200 ; rdf:_201 ; rdf:_202 ; rdf:_203 ; rdf:_204 ; rdf:_205 ; rdf:_206 ; rdf:_207 ; rdf:_208 ; rdf:_209 ; rdf:_210 ; rdf:_211 ; rdf:_212 ; rdf:_213 ; rdf:_214 ; rdf:_215 ; rdf:_216 ; rdf:_217 ; rdf:_218 ; rdf:_219 ; rdf:_220 ; rdf:_221 ; rdf:_222 ; rdf:_223 ; rdf:_224 ; rdf:_225 ; rdf:_226 ; rdf:_227 ; rdf:_228 ; rdf:_229 ; rdf:_230 ; rdf:_231 ; rdf:_232 ; rdf:_233 ; rdf:_234 ; rdf:_235 ; rdf:_236 ; rdf:_237 ; rdf:_238 ; rdf:_239 ; rdf:_240 ; rdf:_241 ; rdf:_242 ; rdf:_243 ; rdf:_244 ; rdf:_245 ; rdf:_246 ; rdf:_247 ; rdf:_248 ; rdf:_249 ; rdf:_250 ; rdf:_251 ; rdf:_252 ; rdf:_253 ; rdf:_254 ; rdf:_255 ; rdf:_256 ; rdf:_257 ; rdf:_258 ; rdf:_259 ; rdf:_260 ; rdf:_261 ; rdf:_262 ; rdf:_263 ; rdf:_264 ; rdf:_265 ; rdf:_266 ; rdf:_267 ; rdf:_268 ; rdf:_269 ; rdf:_270 ; rdf:_271 ; rdf:_272 ; rdf:_273 ; rdf:_274 ; rdf:_275 ; rdf:_276 ; rdf:_277 ; rdf:_278 ; rdf:_279 ; rdf:_280 ; rdf:_281 ; rdf:_282 ; rdf:_283 ; rdf:_284 ; rdf:_285 ; rdf:_286 ; rdf:_287 ; rdf:_288 ; rdf:_289 ; rdf:_290 ; rdf:_291 ; rdf:_292 ; rdf:_293 ; rdf:_294 ; rdf:_295 ; rdf:_296 ; rdf:_297 ; rdf:_298 ; rdf:_299 ; rdf:_300 ; rdf:_301 ; rdf:_302 ; rdf:_303 ; rdf:_304 ; rdf:_305 ; rdf:_306 ; rdf:_307 ; rdf:_308 ; rdf:_309 ; rdf:_310 ; rdf:_311 ; rdf:_312 ; rdf:_313 ; rdf:_314 ; rdf:_315 ; rdf:_316 ; rdf:_317 ; rdf:_318 ; rdf:_319 ; rdf:_320 ; rdf:_321 ; rdf:_322 ; rdf:_323 ; rdf:_324 ; rdf:_325 ; rdf:_326 ; rdf:_327 ; rdf:_328 ; rdf:_329 ; rdf:_330 ; rdf:_331 ; rdf:_332 ; rdf:_333 ; rdf:_334 ; rdf:_335 ; rdf:_336 ; rdf:_337 ; rdf:_338 ; rdf:_339 ; rdf:_340 ; rdf:_341 ; rdf:_342 ; rdf:_343 ; rdf:_344 ; rdf:_345 ; rdf:_346 ; rdf:_347 ; rdf:_348 ; rdf:_349 ; rdf:_350 ; rdf:_351 ; rdf:_352 ; rdf:_353 ; rdf:_354 ; rdf:_355 ; rdf:_356 ; rdf:_357 ; rdf:_358 ; rdf:_359 ; rdf:_360 ; rdf:_361 ; rdf:_362 ; rdf:_363 ; rdf:_364 ; rdf:_365 ; rdf:_366 ; rdf:_367 ; rdf:_368 ; rdf:_369 ; rdf:_370 ; rdf:_371 ; rdf:_372 ; rdf:_373 ; rdf:_374 ; rdf:_375 ; rdf:_376 ; rdf:_377 ; rdf:_378 ; rdf:_379 ; rdf:_380 ; rdf:_381 ; rdf:_382 ; rdf:_383 ; rdf:_384 ; rdf:_385 ; rdf:_386 ; rdf:_387 ; rdf:_388 ; rdf:_389 ; rdf:_390 ; rdf:_391 ; rdf:_392 ; rdf:_393 ; rdf:_394 ; rdf:_395 ; rdf:_396 ; rdf:_397 ; rdf:_398 ; rdf:_399 ; rdf:_400 ; rdf:_401 ; rdf:_402 ; rdf:_403 ; rdf:_404 ; rdf:_405 ; rdf:_406 ; rdf:_407 ; rdf:_408 ; rdf:_409 ; rdf:_410 ; rdf:_411 ; rdf:_412 ; rdf:_413 ; rdf:_414 ; rdf:_415 ; rdf:_416 ; rdf:_417 ; rdf:_418 ; rdf:_419 ; rdf:_420 ; rdf:_421 ; rdf:_422 ; rdf:_423 ; rdf:_424 ; rdf:_425 ; rdf:_426 ; rdf:_427 ; rdf:_428 ; rdf:_429 ; rdf:_430 ; rdf:_431 ; rdf:_432 ; rdf:_433 ; rdf:_434 ; rdf:_435 ; rdf:_436 ; rdf:_437 ; rdf:_438 ; rdf:_439 ; rdf:_440 ; rdf:_441 ; rdf:_442 ; rdf:_443 ; rdf:_444 ; rdf:_445 ; rdf:_446 ; rdf:_447 ; rdf:_448 ; rdf:_449 ; rdf:_450 ; rdf:_451 ; rdf:_452 ; rdf:_453 ; rdf:_454 ; rdf:_455 ; rdf:_456 ; rdf:_457 ; rdf:_458 ; rdf:_459 ; rdf:_460 ; rdf:_461 ; rdf:_462 ; rdf:_463 ; rdf:_464 ; rdf:_465 ; rdf:_466 ; rdf:_467 ; rdf:_468 ; rdf:_469 ; rdf:_470 ; rdf:_471 ; rdf:_472 ; rdf:_473 ; rdf:_474 ; rdf:_475 ; rdf:_476 ; rdf:_477 ; rdf:_478 ; rdf:_479 ; rdf:_480 ; rdf:_481 ; rdf:_482 ; rdf:_483 ; rdf:_484 ; rdf:_485 ; rdf:_486 ; rdf:_487 ; rdf:_488 ; rdf:_489 ; rdf:_490 ; rdf:_491 ; rdf:_492 ; rdf:_493 ; rdf:_494 ; rdf:_495 ; rdf:_496 ; rdf:_497 ; rdf:_498 ; rdf:_499 ; rdf:_500 ; rdf:_501 ; rdf:_502 ; rdf:_503 ; rdf:_504 ; rdf:_505 ; rdf:_506 ; rdf:_507 ; rdf:_508 ; rdf:_509 ; rdf:_510 ; rdf:_511 ; rdf:_512 ; rdf:_513 ; rdf:_514 ; rdf:_515 ; rdf:_516 ; rdf:_517 ; rdf:_518 ; rdf:_519 ; rdf:_520 ; rdf:_521 ; rdf:_522 ; rdf:_523 ; rdf:_524 ; rdf:_525 ; rdf:_526 ; rdf:_527 ; rdf:_528 ; rdf:_529 ; rdf:_530 ; rdf:_531 ; rdf:_532 ; rdf:_533 ; rdf:_534 ; rdf:_535 ; rdf:_536 ; rdf:_537 ; rdf:_538 ; rdf:_539 ; rdf:_540 ; rdf:_541 ; rdf:_542 ; rdf:_543 ; rdf:_544 ; rdf:_545 ; rdf:_546 ; rdf:_547 ; rdf:_548 ; rdf:_549 ; rdf:_550 ; rdf:_551 ; rdf:_552 ; rdf:_553 ; rdf:_554 ; rdf:_555 ; rdf:_556 ; rdf:_557 ; rdf:_558 ; rdf:_559 ; rdf:_560 ; rdf:_561 ; rdf:_562 ; rdf:_563 ; rdf:_564 ; rdf:_565 ; rdf:_566 ; rdf:_567 ; rdf:_568 ; rdf:_569 ; rdf:_570 ; rdf:_571 ; rdf:_572 ; rdf:_573 ; rdf:_574 ; rdf:_575 ; rdf:_576 ; rdf:_577 ; rdf:_578 ; rdf:_579 ; rdf:_580 ; rdf:_581 ; rdf:_582 ; rdf:_583 ; rdf:_584 ; rdf:_585 ; rdf:_586 ; rdf:_587 ; rdf:_588 ; rdf:_589 ; rdf:_590 ; rdf:_591 ; rdf:_592 ; rdf:_593 ; rdf:_594 ; rdf:_595 ; rdf:_596 ; rdf:_597 ; rdf:_598 ; rdf:_599 ; rdf:_600 ; rdf:_601 ; rdf:_602 ; rdf:_603 ; rdf:_604 ; rdf:_605 ; rdf:_606 ; rdf:_607 ; rdf:_608 ; rdf:_609 ; rdf:_610 ; rdf:_611 ; rdf:_612 ; rdf:_613 ; rdf:_614 ; rdf:_615 ; rdf:_616 ; rdf:_617 ; rdf:_618 ; rdf:_619 ; rdf:_620 ; rdf:_621 ; rdf:_622 ; rdf:_623 ; rdf:_624 ; rdf:_625 ; rdf:_626 ; rdf:_627 ; rdf:_628 ; rdf:_629 ; rdf:_630 ; rdf:_631 ; rdf:_632 ; rdf:_633 ; rdf:_634 ; rdf:_635 ; rdf:_636 ; rdf:_637 ; rdf:_638 ; rdf:_639 ; rdf:_640 ; rdf:_641 ; rdf:_642 ; rdf:_643 ; rdf:_644 ; rdf:_645 ; rdf:_646 ; rdf:_647 ; rdf:_648 ; rdf:_649 ; rdf:_650 ; rdf:_651 ; rdf:_652 ; rdf:_653 ; rdf:_654 ; rdf:_655 ; rdf:_656 ; rdf:_657 ; rdf:_658 ; rdf:_659 ; rdf:_660 ; rdf:_661 ; rdf:_662 ; rdf:_663 ; rdf:_664 ; rdf:_665 ; rdf:_666 ; rdf:_667 ; rdf:_668 ; rdf:_669 ; rdf:_670 ; rdf:_671 ; rdf:_672 ; rdf:_673 ; rdf:_674 ; rdf:_675 ; rdf:_676 ; rdf:_677 ; rdf:_678 ; rdf:_679 ; rdf:_680 ; rdf:_681 ; rdf:_682 ; rdf:_683 ; rdf:_684 ; rdf:_685 ; rdf:_686 ; rdf:_687 ; rdf:_688 ; rdf:_689 ; rdf:_690 ; rdf:_691 ; rdf:_692 ; rdf:_693 ; rdf:_694 ; rdf:_695 ; rdf:_696 ; rdf:_697 ; rdf:_698 ; rdf:_699 ; rdf:_700 ; rdf:_701 ; rdf:_702 ; rdf:_703 ; rdf:_704 ; rdf:_705 ; rdf:_706 ; rdf:_707 ; rdf:_708 ; rdf:_709 ; rdf:_710 ; rdf:_711 ; rdf:_712 ; rdf:_713 ; rdf:_714 ; rdf:_715 ; rdf:_716 ; rdf:_717 ; rdf:_718 ; rdf:_719 ; rdf:_720 ; rdf:_721 ; rdf:_722 ; rdf:_723 ; rdf:_724 ; rdf:_725 ; rdf:_726 ; rdf:_727 ; rdf:_728 ; rdf:_729 ; rdf:_730 ; rdf:_731 ; rdf:_732 ; rdf:_733 ; rdf:_734 ; rdf:_735 ; rdf:_736 ; rdf:_737 ; rdf:_738 ; rdf:_739 ; rdf:_740 ; rdf:_741 ; rdf:_742 ; rdf:_743 ; rdf:_744 ; rdf:_745 ; rdf:_746 ; rdf:_747 ; rdf:_748 ; rdf:_749 ; rdf:_750 ; rdf:_751 ; rdf:_752 ; rdf:_753 ; rdf:_754 ; rdf:_755 ; rdf:_756 ; rdf:_757 ; rdf:_758 ; rdf:_759 ; rdf:_760 ; rdf:_761 ; rdf:_762 ; rdf:_763 ; rdf:_764 ; rdf:_765 ; rdf:_766 ; rdf:_767 ; rdf:_768 ; rdf:_769 ; rdf:_770 ; rdf:_771 ; rdf:_772 ; rdf:_773 ; rdf:_774 ; rdf:_775 ; rdf:_776 ; rdf:_777 ; rdf:_778 ; rdf:_779 ; rdf:_780 ; rdf:_781 ; rdf:_782 ; rdf:_783 ; rdf:_784 ; rdf:_785 ; rdf:_786 ; rdf:_787 ; rdf:_788 ; rdf:_789 ; rdf:_790 ; rdf:_791 ; rdf:_792 ; rdf:_793 ; rdf:_794 ; rdf:_795 ; rdf:_796 ; rdf:_797 ; rdf:_798 ; rdf:_799 ; rdf:_800 ; rdf:_801 ; rdf:_802 ; rdf:_803 ; rdf:_804 ; rdf:_805 ; rdf:_806 ; rdf:_807 ; rdf:_808 ; rdf:_809 ; rdf:_810 ; rdf:_811 ; rdf:_812 ; rdf:_813 ; rdf:_814 ; rdf:_815 ; rdf:_816 ; rdf:_817 ; rdf:_818 ; rdf:_819 ; rdf:_820 ; rdf:_821 ; rdf:_822 ; rdf:_823 ; rdf:_824 ; rdf:_825 ; rdf:_826 ; rdf:_827 ; rdf:_828 ; rdf:_829 ; rdf:_830 ; rdf:_831 ; rdf:_832 ; rdf:_833 ; rdf:_834 ; rdf:_835 ; rdf:_836 ; rdf:_837 ; rdf:_838 ; rdf:_839 ; rdf:_840 ; rdf:_841 ; rdf:_842 ; rdf:_843 ; rdf:_844 ; rdf:_845 ; rdf:_846 ; rdf:_847 ; rdf:_848 ; rdf:_849 ; rdf:_850 ; rdf:_851 ; rdf:_852 ; rdf:_853 ; rdf:_854 ; rdf:_855 ; rdf:_856 ; rdf:_857 ; rdf:_858 ; rdf:_859 ; rdf:_860 ; rdf:_861 ; rdf:_862 ; rdf:_863 ; rdf:_864 ; rdf:_865 ; rdf:_866 ; rdf:_867 ; rdf:_868 ; rdf:_869 ; rdf:_870 ; rdf:_871 ; rdf:_872 ; rdf:_873 ; rdf:_874 ; rdf:_875 ; rdf:_876 ; rdf:_877 ; rdf:_878 ; rdf:_879 ; rdf:_880 ; rdf:_881 ; rdf:_882 ; rdf:_883 ; rdf:_884 ; rdf:_885 ; rdf:_886 ; rdf:_887 ; rdf:_888 ; rdf:_889 ; rdf:_890 ; rdf:_891 ; rdf:_892 ; rdf:_893 ; rdf:_894 ; rdf:_895 ; rdf:_896 ; rdf:_897 ; rdf:_898 ; rdf:_899 ; rdf:_900 ; rdf:_901 ; rdf:_902 ; rdf:_903 ; rdf:_904 ; rdf:_905 ; rdf:_906 ; rdf:_907 ; rdf:_908 ; rdf:_909 ; rdf:_910 ; rdf:_911 ; rdf:_912 ; rdf:_913 ; rdf:_914 ; rdf:_915 ; rdf:_916 ; rdf:_917 ; rdf:_918 ; rdf:_919 ; rdf:_920 ; rdf:_921 ; rdf:_922 ; rdf:_923 ; rdf:_924 ; rdf:_925 ; rdf:_926 ; rdf:_927 ; rdf:_928 ; rdf:_929 ; rdf:_930 ; rdf:_931 ; rdf:_932 ; rdf:_933 ; rdf:_934 ; rdf:_935 ; rdf:_936 ; rdf:_937 ; rdf:_938 ; rdf:_939 ; rdf:_940 ; rdf:_941 ; rdf:_942 ; rdf:_943 ; rdf:_944 ; rdf:_945 ; rdf:_946 ; rdf:_947 ; rdf:_948 ; rdf:_949 ; rdf:_950 ; rdf:_951 ; rdf:_952 ; rdf:_953 ; rdf:_954 ; rdf:_955 ; rdf:_956 ; rdf:_957 ; rdf:_958 ; rdf:_959 ; rdf:_960 ; rdf:_961 ; rdf:_962 ; rdf:_963 ; rdf:_964 ; rdf:_965 ; rdf:_966 ; rdf:_967 ; rdf:_968 ; rdf:_969 ; rdf:_970 ; rdf:_971 ; rdf:_972 ; rdf:_973 ; rdf:_974 ; rdf:_975 ; rdf:_976 ; rdf:_977 ; rdf:_978 ; rdf:_979 ; rdf:_980 ; rdf:_981 ; rdf:_982 ; rdf:_983 ; rdf:_984 ; rdf:_985 ; rdf:_986 ; rdf:_987 ; rdf:_988 ; rdf:_989 ; rdf:_990 ; rdf:_991 ; rdf:_992 ; rdf:_993 ; rdf:_994 ; rdf:_995 ; rdf:_996 ; rdf:_997 ; rdf:_998 ; rdf:_999 ; rdf:_1000 ] . + ?annotationAnswerType a qa:AnnotationOfAnswerType ; + oa:hasTarget ?question ; + oa:hasBody ?annotationOfAnswerType ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerType a qa:AnswerType ; + rdf:value ?answerDataType . + ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; + oa:hasTarget ?question ; + oa:hasBody ?answerJson ; + oa:annotatedBy ?service ; + oa:annotatedAt ?time ; + qa:score ?score . + ?answerJson rdf:value ?json . + } +} +WHERE { + BIND (IRI(str(RAND())) AS ?annotationSPARQL) . + BIND (IRI(str(RAND())) AS ?sparql) . + BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . + BIND (IRI(str(RAND())) AS ?answerType) . + BIND (IRI(str(RAND())) AS ?annotationAnswer) . + BIND (IRI(str(RAND())) AS ?answer) . + BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . + BIND (IRI(str(RAND())) AS ?answerJson) . + BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . + BIND (IRI(str(RAND())) AS ?improvedQuestion) . + BIND (now() AS ?time) . + BIND ( AS ?question) . + BIND ("0.08"^^xsd:double AS ?score) . + BIND ( AS ?service ) . + BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . + BIND ("http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?"^^xsd:string AS ?improvedQuestionText ) . + BIND ( AS ?answerDataType) . + BIND ( AS ?knowledgeGraph) . + BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/P97\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1000303\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100042862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100138352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100138547\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144644\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146345\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146669\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100149091\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100149151\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153085\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154345\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156282\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100158068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100166497\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100200203\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100226840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230981\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100233550\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100235719\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002465\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100247710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251476\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255571\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256033\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256260\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256336\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256365\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256384\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268330\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100270821\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100271385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100272277\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100272467\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100277657\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100290884\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100296857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100296919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100296954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306163\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100323660\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10032888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100336041\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1003491\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100363472\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100363753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100368900\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100369837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100375843\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100377193\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100387742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100397017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1004124\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100416234\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100429444\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100437710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100476322\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100497722\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100533874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100534096\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100545431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100567305\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100585173\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100588445\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1005902\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100600664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100605702\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100683537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100686728\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100690942\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100701460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707410\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707432\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707450\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707560\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707579\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707582\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708568\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708814\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708828\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100722474\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100726808\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100733133\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100740654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100742710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100744452\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100744910\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100750442\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100752647\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100766665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100767188\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100768033\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100770629\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100771043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100771094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100777516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100789929\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100791998\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100799377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100853469\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100869791\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100872433\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100877419\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100880026\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100890188\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100890633\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100908749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100916130\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100927753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100935224\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100935227\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100938271\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100939770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100945066\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100945285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100945637\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100978462\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100979333\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100982849\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100982861\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100983365\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100997212\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100997306\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100997397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100998590\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101010922\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101013250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101032352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101054473\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063207\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063233\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063240\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063248\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063295\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063323\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063350\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063362\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063364\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101065644\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101071928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101075720\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101079308\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101094792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101096138\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101113247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101115774\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101116447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101116604\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101130750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101137443\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1011446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101160132\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101173400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101199215\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205681\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205732\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205779\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101209733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101223763\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101228463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101238280\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101243257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247428\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247489\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247519\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247540\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101248074\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101267136\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101324254\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101333514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101334319\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101343924\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101349536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101349712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101356218\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101402616\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101418327\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101418887\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101419071\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101419751\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101422799\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101423783\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101427897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101427898\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101428516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101429521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101436914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101438997\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101441954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101444705\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445621\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445676\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445883\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445913\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101453383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101459115\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101484096\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101486501\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101495425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497289\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497643\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101498264\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101498470\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101498584\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101500281\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101500907\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101504200\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101522111\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101524075\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101528994\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101535940\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538319\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538434\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538703\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101539018\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101539047\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101541410\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101542180\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101542257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101552911\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101554049\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101566501\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101566783\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101579769\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101583472\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101627797\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1016407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101668466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1016801\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101695457\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101697785\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101702521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1017046\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1017086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1017332\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101753497\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101754733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101754990\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101758330\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101788376\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101795434\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101797745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1018087\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101833802\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1018465\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101913232\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101953096\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101971567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102039658\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102045857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102045965\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102046013\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102047781\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048093\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048138\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048612\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049796\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049925\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102050005\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102050517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102050884\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102076291\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102083\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102083439\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102083767\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102104632\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102120106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102150752\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102158574\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102158749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102162072\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102162094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102165489\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102177201\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102180882\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102187356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102187912\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102201050\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102204875\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102204893\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102204905\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102208413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102210482\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102210838\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102211352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102211649\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102212673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102213098\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216056\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216237\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216486\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216808\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102217141\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102226106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102226212\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102239874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1022483\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102251036\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102252101\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102252119\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102254530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102260583\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102261737\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102276173\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102276807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278041\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278045\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278048\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278424\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1022791\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102281601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102281677\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102290356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102291484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102291875\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102294569\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102297519\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102298581\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102299711\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102310627\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102310701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102312294\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102313297\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102315377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1023161\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102316221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102317157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102317554\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102324008\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102328716\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102329273\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102336299\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102336787\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102336810\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102337773\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338301\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338310\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338312\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338315\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338318\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338436\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338439\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338694\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338699\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338704\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338706\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338801\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338810\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102350347\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102352778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102354463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102361119\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102362004\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102362324\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1023727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102379157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102388622\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102396650\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102400530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102418503\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102420543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102431966\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102452206\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102454460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102455933\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102457871\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025118\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025121\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102528897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10259887\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10260424\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10260577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102616336\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10263636\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10264107\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10266053\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1026612\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10267059\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10267060\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10267766\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10268756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10268937\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269529\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10270319\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10270984\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10271017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10271175\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10272701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1027366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10274024\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10274868\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102797423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10282109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10282783\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102829543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1028297\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10284285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102849713\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286148\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286251\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286510\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286661\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102885027\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10288525\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10289329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10290705\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10290892\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1029135\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10291411\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10291443\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10293585\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10293927\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10294040\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10294484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10294550\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10295954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10295993\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10296131\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10296770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10297919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10299026\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10301351\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10301981\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10302268\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303515\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303540\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303978\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103042012\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103049401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10305017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10305246\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10307972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313048\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313613\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313703\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313889\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10314198\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10314768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10314975\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10315455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103163\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103179432\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1031816\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10318606\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10319052\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10320043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103222362\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10322521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10323221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10325569\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326696\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326700\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326703\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326704\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326713\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326714\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326715\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326722\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326724\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326725\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326726\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326729\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326730\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326731\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326736\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326737\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326739\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326744\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326746\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326751\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326754\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10329206\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10329657\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10329673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103304064\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10330721\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10331068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103318185\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10331823\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10333980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1033408\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10334176\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1033460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10335304\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103375029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103375635\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10337647\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10337956\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10338655\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1033877\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10340551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10340971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103409942\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10341016\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1034117\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10341264\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10341401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103432988\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103449792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10346072\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103479666\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10348576\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10349213\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10349216\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103492756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103498067\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10349975\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103501493\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10350954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1035129\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10351538\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1035157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10351611\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10354482\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10355035\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10355042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10355178\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1035611\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10356616\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10356912\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103582989\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10359188\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036025\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036027\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036039\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103619797\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10364748\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103649446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10366548\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103676187\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103684222\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10368807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10369482\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10370031\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10370032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103705570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103715454\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10371973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372354\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372428\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372429\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372430\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373104\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373394\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373395\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103754677\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10375920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377711\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377714\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377715\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377717\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10378137\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10379103\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10379249\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10379369\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103798029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10380168\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103819965\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103820839\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103821030\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10382162\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10382537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103826228\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10383257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103837374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103837460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1038377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103838847\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103847517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103848331\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103848601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103850890\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10385407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10385708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10386185\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387060\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387760\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387761\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10388661\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10388793\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103888328\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103888331\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103888641\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10389579\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10389914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103911669\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391797\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391798\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391799\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391800\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391802\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391803\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391808\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391809\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391810\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391812\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391814\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391815\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391816\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391817\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391818\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391819\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391821\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391822\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391823\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391825\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391827\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391828\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391829\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391831\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391832\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391833\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391834\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391835\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391839\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391841\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391842\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391843\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391845\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391846\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391847\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391850\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391851\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391853\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391855\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391859\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391860\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391863\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391864\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391867\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391868\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391869\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391870\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391873\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391875\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391876\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391877\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391878\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391880\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391881\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391882\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391884\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391886\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391889\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391890\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391891\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391892\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391893\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391894\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391896\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391899\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391900\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391901\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391902\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391903\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391905\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391906\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391907\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391908\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391909\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391910\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391911\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391912\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391915\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391916\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391921\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391923\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391925\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391926\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391927\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391929\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391930\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391931\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391932\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391933\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391934\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391936\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391939\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391940\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391941\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391942\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391943\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391945\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391949\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391950\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391951\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391955\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391956\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391957\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391958\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391959\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391960\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391961\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391962\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391965\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391966\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391967\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391969\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391970\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391974\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391977\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391979\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391981\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391983\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391985\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391986\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391987\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392149\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103924317\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103924462\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392775\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393218\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393219\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393220\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10394046\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1039432\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10394995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10394997\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10395155\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103958059\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103958350\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103959782\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10396329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103980526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103982686\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103985237\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10398667\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10398706\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10398707\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1039908\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10399113\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103991413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103993134\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10400698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104007577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10400866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10401140\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10401509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104022211\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104022342\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10402660\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104028711\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104029581\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104029584\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104033750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104034668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104042609\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104043752\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104047679\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10404777\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104049534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104051165\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104051980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104054163\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104054601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104057038\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040603\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104062828\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10406715\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040689\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104072067\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10407258\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040761\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040806\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104082897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104084793\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10408556\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104086600\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104088310\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104092899\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104093156\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104093542\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097772\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097803\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104098872\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10410183\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104107856\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1041144\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411663\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411863\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411864\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411865\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411867\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411868\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104119755\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104119777\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104127079\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104128067\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104128400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10413668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104145349\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104151609\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104151652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104151655\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104152731\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104153418\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104154385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104154414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104156356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104156983\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104157029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104157721\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10415972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104160135\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104161269\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104163111\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104165632\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1041668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170787\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170815\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170838\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170845\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104176270\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104176717\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10417798\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104179196\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104179526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10418059\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104182012\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104187784\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104188332\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104188943\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104189007\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104190216\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104192449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104192625\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104205792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10420805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10420835\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104211534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104211551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104211601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104212495\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104213523\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104213637\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104213909\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104214025\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104214213\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104217454\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104223698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104223759\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104223964\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104234421\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104234446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10423734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104241536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104243375\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104246069\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104247017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104247355\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104250289\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104251914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10425586\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10426590\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1042670\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104269190\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10428456\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10428811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10429813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10430832\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10430859\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104315503\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10432404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104329352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433030\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433040\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433041\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433044\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1043341\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433512\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433513\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433515\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433518\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433519\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433520\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433522\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433523\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433525\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433527\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433528\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433529\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433531\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433533\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433538\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433540\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433541\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10434744\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10435984\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10436549\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104368133\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104372944\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000\",\"confidence\":0.08}]}}]}"^^xsd:string AS ?json ). + } + +2023-10-27 14:11:22.176 DEBUG 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 3119 ms diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out b/qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out new file mode 100644 index 000000000..32dce506b --- /dev/null +++ b/qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out @@ -0,0 +1,2461 @@ + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: DiambiguationProperty  +Application Description: DiambiguationProperty is a Qanary component  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.1.2  +Spring Boot Version: 2.6.7  +Java Version: 21  + +2023-10-27 12:09:22.644  INFO 9657 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 9657 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) +2023-10-27 12:09:22.664 DEBUG 9657 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:09:22.680  INFO 9657 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:09:46.284  INFO 9657 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@741b3bc3 +2023-10-27 12:09:46.504  INFO 9657 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a1edad4 +2023-10-27 12:09:46.506  INFO 9657 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@44c79f32 +2023-10-27 12:09:46.550  INFO 9657 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8022 +spring.application.name = DiambiguationProperty +spring.application.description = DiambiguationProperty is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:09:46.648  INFO 9657 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl +2023-10-27 12:09:50.583  WARN 9657 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:09:50.750  WARN 9657 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:09:51.327  WARN 9657 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:09:51.492  INFO 9657 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:09:59.718  INFO 9657 --- [ main] e.w.q.c.d.rd.Application  : Started Application in 41.737 seconds (JVM running for 48.823) +2023-10-27 12:10:00.100  WARN 9657 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DiambiguationProperty, managementUrl=http://0.0.0.0:8022/actuator, healthUrl=http://0.0.0.0:8022/actuator/health, serviceUrl=http://0.0.0.0:8022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level +2023-10-27 12:10:09.807  INFO 9657 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as ccbd3db57005 + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: DiambiguationProperty  +Application Description: DiambiguationProperty is a Qanary component  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.1.2  +Spring Boot Version: 2.6.7  +Java Version: 21  + +2023-10-27 12:15:52.223  INFO 11770 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 11770 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) +2023-10-27 12:15:52.254 DEBUG 11770 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 12:15:52.290  INFO 11770 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 12:16:23.145  INFO 11770 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ed3b1f5 +2023-10-27 12:16:23.708  INFO 11770 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6256ac4f +2023-10-27 12:16:23.718  INFO 11770 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@7fcbe147 +2023-10-27 12:16:23.771  INFO 11770 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8022 +spring.application.name = DiambiguationProperty +spring.application.description = DiambiguationProperty is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 12:16:23.933  INFO 11770 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl +2023-10-27 12:16:29.714  WARN 11770 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 12:16:30.137  WARN 11770 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 12:16:30.732  WARN 11770 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 12:16:30.960  INFO 11770 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 12:16:40.783  WARN 11770 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8022 is already in use +2023-10-27 12:16:41.577 ERROR 11770 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8022 was already in use. + +Action: + +Identify and stop the process that's listening on port 8022 or configure this application to listen on another port. + +2023-10-27 13:37:19.776  WARN 9657 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DiambiguationProperty, managementUrl=http://0.0.0.0:8022/actuator, healthUrl=http://0.0.0.0:8022/actuator/health, serviceUrl=http://0.0.0.0:8022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: DiambiguationProperty  +Application Description: DiambiguationProperty is a Qanary component  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.1.2  +Spring Boot Version: 2.6.7  +Java Version: 21  + +2023-10-27 13:37:49.617  INFO 28737 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 28737 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) +2023-10-27 13:37:49.699 DEBUG 28737 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:37:49.700  INFO 28737 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:38:18.778  INFO 28737 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ed3b1f5 +2023-10-27 13:38:19.209  INFO 28737 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6256ac4f +2023-10-27 13:38:19.227  INFO 28737 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@7fcbe147 +2023-10-27 13:38:19.310  INFO 28737 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8022 +spring.application.name = DiambiguationProperty +spring.application.description = DiambiguationProperty is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:38:19.508  INFO 28737 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl +2023-10-27 13:38:24.495  WARN 28737 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:38:24.720  WARN 28737 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:38:25.273  WARN 28737 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:38:25.398  INFO 28737 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:38:34.055  WARN 28737 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8022 is already in use +2023-10-27 13:38:34.287 ERROR 28737 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8022 was already in use. + +Action: + +Identify and stop the process that's listening on port 8022 or configure this application to listen on another port. + + + :]KBQQ@QB9z: + rN@@D;`,-:Z@@@K, + k@@@k `]: |Q@@Q, + E@@@o `?Q@@D + r@@Q; #@@@@@` + #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| + ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, + .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF + ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; +r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` +g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? +Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' +k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 +.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ + *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau + `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ + LQ@@@@Q* 'fj: /aoaao` + '::, ]w; :aaaaa^ + \meJFaaaaor + :LuoSfc;- + +Application Title: DiambiguationProperty  +Application Description: DiambiguationProperty is a Qanary component  +Framework@GitHub: https://github.com/WDAqua/Qanary  +Component Version: 3.1.2  +Spring Boot Version: 2.6.7  +Java Version: 21  + +2023-10-27 13:38:54.710  INFO 30129 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 30129 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) +2023-10-27 13:38:54.726 DEBUG 30129 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 +2023-10-27 13:38:54.737  INFO 30129 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" +2023-10-27 13:39:17.346  INFO 30129 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68d6972f +2023-10-27 13:39:17.583  INFO 30129 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fcbe147 +2023-10-27 13:39:17.626  INFO 30129 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@743cb8e0 +2023-10-27 13:39:17.724  INFO 30129 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: +server.host = null +server.port = 8022 +spring.application.name = DiambiguationProperty +spring.application.description = DiambiguationProperty is a Qanary component +spring.boot.admin.url = http://localhost:8080 +spring.boot.admin.client.url = http://localhost:8080 + +2023-10-27 13:39:17.936  INFO 30129 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl +2023-10-27 13:39:23.734  WARN 30129 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. +2023-10-27 13:39:23.973  WARN 30129 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized +2023-10-27 13:39:24.315  WARN 30129 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized +2023-10-27 13:39:24.506  INFO 30129 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: +2023-10-27 13:39:34.854  WARN 30129 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8022 is already in use +2023-10-27 13:39:35.357 ERROR 30129 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : + +*************************** +APPLICATION FAILED TO START +*************************** + +Description: + +Web server failed to start. Port 8022 was already in use. + +Action: + +Identify and stop the process that's listening on port 8022 or configure this application to listen on another port. + +2023-10-27 13:53:08.097  INFO 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:08.110  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:08.180  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} +2023-10-27 13:53:08.270  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@545da884 +2023-10-27 13:53:08.271  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d +2023-10-27 13:53:08.271  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:53:08.271  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d +2023-10-27 13:53:08.274  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:53:08.274  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:53:08.588  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 +2023-10-27 13:53:08.666  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Question: What did the suffragettes stand for? +2023-10-27 13:53:08.667  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@12c50bf5 +2023-10-27 13:53:08.673 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:53:08.727  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:53:08.737  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:53:08.738  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What did the suffragettes stand for?","language":"en"} +Curl Response: +[{"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"}] +2023-10-27 13:53:10.153  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"}] +2023-10-27 13:53:10.154  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"}] +2023-10-27 13:53:10.154  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/callsignMeaning"},{"score":0.5333333333333333,"var":"v7","value":"http:\/\/dbpedia.org\/property\/stands"}]}]} +2023-10-27 13:53:11.459  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/callsignMeaning"},{"score":0.5333333333333333,"var":"v7","value":"http:\/\/dbpedia.org\/property\/stands"}]}]} +2023-10-27 13:53:11.462  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v7, urls: http://dbpedia.org/ontology/elevation, score: 0.6153846153846154 +2023-10-27 13:53:11.462  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/elevation +2023-10-27 13:53:11.463  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:53:11.463  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:53:11.463 DEBUG 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:53:11.463 DEBUG 9657 --- [nio-8022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:53:11.497  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:53:11.498 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 3392 ms +2023-10-27 13:53:38.017  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} +2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@48b70950 +2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 +2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 +2023-10-27 13:53:38.019  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:53:38.019  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:53:38.027  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 +2023-10-27 13:53:38.097  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which universities have more than 200000 students? +2023-10-27 13:53:38.097  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4670ee36 +2023-10-27 13:53:38.098 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:53:38.101  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:53:38.110  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:53:38.111  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which universities have more than 200000 students?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"}] +2023-10-27 13:53:38.755  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"}] +2023-10-27 13:53:38.755  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"}] +2023-10-27 13:53:38.755  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6923076923076923,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/University"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/seniorStudents"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/bestStudent"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsCalled"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studenttrustees"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsBody"},{"score":0.8235294117647058,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/numberOfStudents"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentCount"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentcouncil"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsection"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentTrustee"},{"score":0.5833333333333334,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPop."},{"score":0.7368421052631579,"var":"v12","value":"http:\/\/dbpedia.org\/property\/student"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentBudget"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentRatio"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPaper"}]}]} +2023-10-27 13:53:40.398  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6923076923076923,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/University"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/seniorStudents"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/bestStudent"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsCalled"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studenttrustees"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsBody"},{"score":0.8235294117647058,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/numberOfStudents"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentCount"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentcouncil"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsection"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentTrustee"},{"score":0.5833333333333334,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPop."},{"score":0.7368421052631579,"var":"v12","value":"http:\/\/dbpedia.org\/property\/student"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentBudget"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentRatio"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPaper"}]}]} +2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/seniorStudents, score: 0.5185185185185185 +2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/studentsBody, score: 0.56 +2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/ontology/numberOfStudents, score: 0.8235294117647058 +2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/numberOfStudents +2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:53:40.399  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:53:40.399 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:53:40.400 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:53:40.408  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:53:40.408 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 2390 ms +2023-10-27 13:53:59.986  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:53:59.986  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} +2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@312d2dc5 +2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e +2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e +2023-10-27 13:53:59.987  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:53:59.987  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:53:59.996  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 +2023-10-27 13:54:00.066  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many casualties were a result of the Troubles? +2023-10-27 13:54:00.066  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3512bf38 +2023-10-27 13:54:00.067 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:54:00.069  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:54:00.079  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:54:00.080  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many casualties were a result of the Troubles?","language":"en"} +Curl Response: +[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"}] +2023-10-27 13:54:00.772  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"}] +2023-10-27 13:54:00.772  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"}] +2023-10-27 13:54:00.772  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.625,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/result"},{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/resume"}]}]} +2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.625,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/result"},{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/resume"}]}]} +2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : var: v10, urls: http://dbpedia.org/ontology/result, score: 0.625 +2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/result +2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:02.019  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:54:02.019 DEBUG 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:02.019 DEBUG 9657 --- [nio-8022-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:02.029  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:54:02.029 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 2043 ms +2023-10-27 13:54:17.825  INFO 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:17.826  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} +2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1661c473 +2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc +2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc +2023-10-27 13:54:17.828  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:54:17.828  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:54:17.841  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d +2023-10-27 13:54:17.898  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many countries have never been members of the UN? +2023-10-27 13:54:17.898  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2dbc5f8c +2023-10-27 13:54:17.899 DEBUG 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:54:17.900  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:54:17.911  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:54:17.911  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many countries have never been members of the UN?","language":"en"} +Curl Response: +[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] +2023-10-27 13:54:18.643  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] +2023-10-27 13:54:18.643  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] +2023-10-27 13:54:18.643  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} +2023-10-27 13:54:22.789  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} +2023-10-27 13:54:22.789  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : var: v11, urls: http://dbpedia.org/ontology/class, score: 0.75 +2023-10-27 13:54:22.790  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/class +2023-10-27 13:54:22.790  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:22.790  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:54:22.790 DEBUG 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:22.790 DEBUG 9657 --- [io-8022-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:22.798  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:54:22.798 DEBUG 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 4973 ms +2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} +2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@5e6fd208 +2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 +2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 +2023-10-27 13:54:24.005  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:54:24.005  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:54:24.022  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da +2023-10-27 13:54:24.041  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: What are the German names of academic disciplines containing “linguistik”? +2023-10-27 13:54:24.041  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66615308 +2023-10-27 13:54:24.042 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:54:24.045  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:54:24.088  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:54:24.088  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What are the German names of academic disciplines containing “linguistik”?","language":"en"} +Curl Response: +[{"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"}] +2023-10-27 13:54:24.700  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"}] +2023-10-27 13:54:24.700  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"}] +2023-10-27 13:54:24.700  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5806451612903226,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/AcademicJournal"},{"score":0.7272727272727273,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/Linguist"}],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} +2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5806451612903226,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/AcademicJournal"},{"score":0.7272727272727273,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/Linguist"}],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} +2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/name6a, score: 0.5333333333333333 +2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/name., score: 0.5714285714285714 +2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/ontology/name, score: 0.6153846153846154 +2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/name +2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:28.546  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:54:28.546 DEBUG 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:28.547 DEBUG 9657 --- [nio-8022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:54:28.553  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:54:28.553 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 4548 ms +2023-10-27 13:55:16.920  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} +2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@5d334ed3 +2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea +2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:55:16.922  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea +2023-10-27 13:55:16.922  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:55:16.922  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:55:16.929  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f +2023-10-27 13:55:16.943  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: which forest is bigger, Amazon Rainforest or Congo Basin? +2023-10-27 13:55:16.943  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5f50bcdd +2023-10-27 13:55:16.944 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:55:16.945  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:55:16.952  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:55:16.952  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"which forest is bigger, Amazon Rainforest or Congo Basin?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"}] +2023-10-27 13:55:17.656  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"}] +2023-10-27 13:55:17.656  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"}] +2023-10-27 13:55:17.656  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:55:19.308  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:55:19.308 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 2387 ms +2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} +2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@424f6220 +2023-10-27 13:55:32.330  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 +2023-10-27 13:55:32.330  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:55:32.330  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 +2023-10-27 13:55:32.330  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:55:32.330  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:55:32.335  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 +2023-10-27 13:55:32.345  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many public holidays does the state Bavaria have in a year? +2023-10-27 13:55:32.345  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@74de40d +2023-10-27 13:55:32.345 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:55:32.347  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:55:32.355  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:55:32.355  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many public holidays does the state Bavaria have in a year?","language":"en"} +Curl Response: +[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"}] +2023-10-27 13:55:32.993  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"}] +2023-10-27 13:55:32.994  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"}] +2023-10-27 13:55:32.994  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/Year"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v16","value":"http:\/\/dbpedia.org\/property\/stateBird"},{"score":0.5,"var":"v16","value":"http:\/\/dbpedia.org\/ontology\/stateOfOrigin"}]}]} +2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/Year"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v16","value":"http:\/\/dbpedia.org\/property\/stateBird"},{"score":0.5,"var":"v16","value":"http:\/\/dbpedia.org\/ontology\/stateOfOrigin"}]}]} +2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v16, urls: http://dbpedia.org/property/stateBird, score: 0.5185185185185185 +2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/stateBird +2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:55:37.169  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:55:37.169 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:55:37.169 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:55:37.175  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:55:37.175 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 4846 ms +2023-10-27 13:56:01.654  INFO 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} +2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@6f804974 +2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee +2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee +2023-10-27 13:56:01.656  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:56:01.656  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:56:01.663  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 +2023-10-27 13:56:01.680  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which American presidents followed in their father‘s step and also became the president? +2023-10-27 13:56:01.681  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4984a09d +2023-10-27 13:56:01.681 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:56:01.682  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:56:01.690  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:56:01.690  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which American presidents followed in their father‘s step and also became the president?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"}] +2023-10-27 13:56:02.418  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"}] +2023-10-27 13:56:02.418  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"}] +2023-10-27 13:56:02.418  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7272727272727273,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/President"},{"score":0.5185185185185185,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/VicePresident"},{"score":0.5,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/President"}],"literals":[],"properties":[{"score":0.6086956521739131,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedBy"},{"score":0.6363636363636364,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedby"},{"score":0.7,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followed"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/following"},{"score":0.6666666666666666,"var":"v17","value":"http:\/\/dbpedia.org\/ontology\/subsequentWork"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followUp"}]}]} +2023-10-27 13:56:04.782  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7272727272727273,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/President"},{"score":0.5185185185185185,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/VicePresident"},{"score":0.5,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/President"}],"literals":[],"properties":[{"score":0.6086956521739131,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedBy"},{"score":0.6363636363636364,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedby"},{"score":0.7,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followed"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/following"},{"score":0.6666666666666666,"var":"v17","value":"http:\/\/dbpedia.org\/ontology\/subsequentWork"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followUp"}]}]} +2023-10-27 13:56:04.782  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : var: v17, urls: http://dbpedia.org/property/followedBy, score: 0.6086956521739131 +2023-10-27 13:56:04.782  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : var: v17, urls: http://dbpedia.org/property/followedby, score: 0.6363636363636364 +2023-10-27 13:56:04.783  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : var: v17, urls: http://dbpedia.org/property/followed, score: 0.7 +2023-10-27 13:56:04.783  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/followed +2023-10-27 13:56:04.783  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:56:04.783  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:56:04.783 DEBUG 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:56:04.783 DEBUG 9657 --- [nio-8022-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:56:04.789  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:56:04.790 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 3136 ms +2023-10-27 13:56:30.484  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:30.484  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} +2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1d4805d5 +2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 +2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 +2023-10-27 13:56:30.485  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:56:30.485  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:56:30.491  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d +2023-10-27 13:56:30.503  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: Where was Goethe’s unmarried partner born ? +2023-10-27 13:56:30.503  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5c65f5 +2023-10-27 13:56:30.503 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:56:30.505  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:56:30.515  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:56:30.515  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Where was Goethe’s unmarried partner born ?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] +2023-10-27 13:56:31.312  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] +2023-10-27 13:56:31.313  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] +2023-10-27 13:56:31.313  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:56:35.594  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:56:35.595 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 5111 ms +2023-10-27 13:57:01.452  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} +2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@2cf53d99 +2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c +2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c +2023-10-27 13:57:01.453  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:57:01.453  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:57:01.458  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 +2023-10-27 13:57:01.468  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: When was the University of Hamburg founded? +2023-10-27 13:57:01.468  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2232c677 +2023-10-27 13:57:01.469 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:57:01.470  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:57:01.478  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:57:01.478  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"When was the University of Hamburg founded?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"}] +2023-10-27 13:57:02.128  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"}] +2023-10-27 13:57:02.129  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"}] +2023-10-27 13:57:02.129  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5294117647058824,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityLibrarian"},{"score":0.5517241379310345,"var":"v9","value":"http:\/\/dbpedia.org\/property\/workUniversity"},{"score":0.5454545454545454,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityColleges"},{"score":0.8181818181818182,"var":"v9","value":"http:\/\/dbpedia.org\/ontology\/university"},{"score":0.6428571428571429,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityteam"}]}]} +2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5294117647058824,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityLibrarian"},{"score":0.5517241379310345,"var":"v9","value":"http:\/\/dbpedia.org\/property\/workUniversity"},{"score":0.5454545454545454,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityColleges"},{"score":0.8181818181818182,"var":"v9","value":"http:\/\/dbpedia.org\/ontology\/university"},{"score":0.6428571428571429,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityteam"}]}]} +2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/universityLibrarian, score: 0.5294117647058824 +2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/workUniversity, score: 0.5517241379310345 +2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/ontology/university, score: 0.8181818181818182 +2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/university +2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:57:06.303  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:57:06.303 DEBUG 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:57:06.303 DEBUG 9657 --- [nio-8022-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:57:06.309  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:57:06.309 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4856 ms +2023-10-27 13:57:22.495  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} +2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@77c0903d +2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 +2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 +2023-10-27 13:57:22.497  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:57:22.497  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:57:22.517  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb +2023-10-27 13:57:22.554  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: What is the twitter name of Running Wild? +2023-10-27 13:57:22.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3600c1ad +2023-10-27 13:57:22.555 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:57:22.563  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:57:22.580  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:57:22.581  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What is the twitter name of Running Wild?","language":"en"} +Curl Response: +[{"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"}] +2023-10-27 13:57:23.886  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"}] +2023-10-27 13:57:23.886  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"}] +2023-10-27 13:57:23.886  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:57:28.034  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:57:28.035 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 5538 ms +2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} +2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1ad19817 +2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b +2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b +2023-10-27 13:57:36.921  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:57:36.921  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:57:36.930  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 +2023-10-27 13:57:36.942  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many people died due to the Great Leap Forward according to the highest estimate? +2023-10-27 13:57:36.942  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1416653d +2023-10-27 13:57:36.942 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:57:36.944  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:57:36.952  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:57:36.952  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many people died due to the Great Leap Forward according to the highest estimate?","language":"en"} +Curl Response: +[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"}] +2023-10-27 13:57:42.790  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"}] +2023-10-27 13:57:42.790  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"}] +2023-10-27 13:57:42.790  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestPrev"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestAge"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestMount"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestBreak"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestState"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatM"},{"score":0.5714285714285714,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestFt"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestStart"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestName"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatD"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestWinds"},{"score":0.6666666666666666,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highest"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestgrade"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/property\/high"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highesthonor"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestBreak"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestEnd"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatS"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestRank"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestScore"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestElev"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/height"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestPlace"}]}]} +2023-10-27 13:57:45.684  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestPrev"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestAge"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestMount"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestBreak"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestState"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatM"},{"score":0.5714285714285714,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestFt"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestStart"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestName"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatD"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestWinds"},{"score":0.6666666666666666,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highest"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestgrade"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/property\/high"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highesthonor"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestBreak"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestEnd"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatS"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestRank"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestScore"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestElev"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/height"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestPlace"}]}]} +2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highestPrev, score: 0.5217391304347826 +2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highestAge, score: 0.5454545454545454 +2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highestFt, score: 0.5714285714285714 +2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highest, score: 0.6666666666666666 +2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/highest +2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:57:45.685  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:57:45.685 DEBUG 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:57:45.685 DEBUG 9657 --- [nio-8022-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:57:45.692  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:57:45.692 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 8771 ms +2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} +2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@191bec44 +2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 +2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 +2023-10-27 13:57:50.225  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:57:50.225  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:57:50.234  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 +2023-10-27 13:57:50.243  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many movies does the Scream franchise have? +2023-10-27 13:57:50.243  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e2e97b +2023-10-27 13:57:50.244 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:57:50.246  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:57:50.253  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:57:50.253  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many movies does the Scream franchise have?","language":"en"} +Curl Response: +[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"}] +2023-10-27 13:57:50.895  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"}] +2023-10-27 13:57:50.895  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"}] +2023-10-27 13:57:50.895  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:57:54.976  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 13:57:54.976 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 4751 ms +2023-10-27 13:58:00.015  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:00.015  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} +2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@567784ca +2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 +2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 +2023-10-27 13:58:00.016  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:58:00.016  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:58:00.021  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 +2023-10-27 13:58:00.030  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? +2023-10-27 13:58:00.030  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@255486bc +2023-10-27 13:58:00.030 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:58:00.046  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:58:00.053  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:58:00.053  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?","language":"en"} +Curl Response: +[{"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] +2023-10-27 13:58:00.806  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] +2023-10-27 13:58:00.808  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] +2023-10-27 13:58:00.808  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/NarutoCharacter"},{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/DisneyCharacter"},{"score":0.6,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/ComicsCharacter"},{"score":0.5,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/AnimangaCharacter"},{"score":0.782608695652174,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/FictionalCharacter"},{"score":0.5714285714285714,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/SoapCharacter"}],"literals":[],"properties":[]}]} +2023-10-27 13:58:02.269  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/NarutoCharacter"},{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/DisneyCharacter"},{"score":0.6,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/ComicsCharacter"},{"score":0.5,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/AnimangaCharacter"},{"score":0.782608695652174,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/FictionalCharacter"},{"score":0.5714285714285714,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/SoapCharacter"}],"literals":[],"properties":[]}]} +2023-10-27 13:58:02.270 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 2255 ms +2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} +2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@260d56e9 +2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f +2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f +2023-10-27 13:58:44.299  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:58:44.299  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:58:44.306  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 +2023-10-27 13:58:44.317  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which actor starring in Free Guy also starred in Deadpool? +2023-10-27 13:58:44.318  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@630fcc4c +2023-10-27 13:58:44.318 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:58:44.319  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:58:44.325  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:58:44.325  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which actor starring in Free Guy also starred in Deadpool?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"}] +2023-10-27 13:58:45.008  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"}] +2023-10-27 13:58:45.008  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"}] +2023-10-27 13:58:45.008  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/Actor"}],"literals":[],"properties":[]}]} +2023-10-27 13:58:49.080  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/Actor"}],"literals":[],"properties":[]}]} +2023-10-27 13:58:49.080 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4781 ms +2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} +2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@f67eb2f +2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 +2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 +2023-10-27 13:58:58.552  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 13:58:58.552  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 13:58:58.559  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 +2023-10-27 13:58:58.570  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: What notes does a C major chord consist of? +2023-10-27 13:58:58.571  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67621b42 +2023-10-27 13:58:58.571 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 13:58:58.573  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 13:58:58.582  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 13:58:58.582  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What notes does a C major chord consist of?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"}] +2023-10-27 13:58:59.214  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"}] +2023-10-27 13:58:59.214  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"}] +2023-10-27 13:58:59.214  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/not"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/property\/note"},{"score":0.5714285714285714,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/notes"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/note"}]}]} +2023-10-27 13:59:03.240  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/not"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/property\/note"},{"score":0.5714285714285714,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/notes"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/note"}]}]} +2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v10, urls: http://dbpedia.org/property/not, score: 0.5 +2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v10, urls: http://dbpedia.org/property/note, score: 0.6153846153846154 +2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/note +2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:59:03.241  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 13:59:03.241 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:59:03.241 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 13:59:03.252  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 13:59:03.253 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 4701 ms +2023-10-27 14:00:02.956  INFO 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:02.956  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:02.956  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} +2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@3ab26e69 +2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:f48704a2-e326-4237-b784-257818c7ed9b +2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:f48704a2-e326-4237-b784-257818c7ed9b +2023-10-27 14:00:02.957  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:00:02.957  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:00:02.965  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c +2023-10-27 14:00:02.977  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Question: What is the second game developed by Piranha Bytes? +2023-10-27 14:00:02.979  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ad923b7 +2023-10-27 14:00:02.979 DEBUG 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:00:02.981  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:00:02.988  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:00:02.988  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What is the second game developed by Piranha Bytes?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"}] +2023-10-27 14:00:03.867  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"}] +2023-10-27 14:00:03.867  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"}] +2023-10-27 14:00:03.867  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v4","value":"http:\/\/dbpedia.org\/ontology\/second"}],"literals":[],"properties":[{"score":0.8,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/developer"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/dateDeveloped"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.7,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/precursor"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5384615384615384,"var":"v11","value":"http:\/\/dbpedia.org\/property\/webDeveloper"},{"score":0.6956521739130435,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developers"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/codeveloper"},{"score":0.64,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedAt"},{"score":0.7272727272727273,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/computingPlatform"},{"score":0.56,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developments"},{"score":0.6153846153846154,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedFor"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedInto"}]}]} +2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v4","value":"http:\/\/dbpedia.org\/ontology\/second"}],"literals":[],"properties":[{"score":0.8,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/developer"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/dateDeveloped"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.7,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/precursor"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5384615384615384,"var":"v11","value":"http:\/\/dbpedia.org\/property\/webDeveloper"},{"score":0.6956521739130435,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developers"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/codeveloper"},{"score":0.64,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedAt"},{"score":0.7272727272727273,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/computingPlatform"},{"score":0.56,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developments"},{"score":0.6153846153846154,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedFor"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedInto"}]}]} +2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : var: v11, urls: http://dbpedia.org/ontology/developer, score: 0.8 +2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/developer +2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:06.164  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:00:06.164 DEBUG 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:06.164 DEBUG 9657 --- [io-8022-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:06.171  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:00:06.171 DEBUG 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 3215 ms +2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} +2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1a2f6357 +2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 +2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 +2023-10-27 14:00:08.035  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:00:08.035  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:00:08.040  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 +2023-10-27 14:00:08.051  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which egyptian pyramid is the tallest? +2023-10-27 14:00:08.061  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1bcf67c8 +2023-10-27 14:00:08.061 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:00:08.062  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:00:08.070  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:00:08.071  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which egyptian pyramid is the tallest?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"}] +2023-10-27 14:00:08.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"}] +2023-10-27 14:00:08.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"}] +2023-10-27 14:00:08.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v6","value":"http:\/\/dbpedia.org\/property\/pyramidDate"}]}]} +2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v6","value":"http:\/\/dbpedia.org\/property\/pyramidDate"}]}]} +2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v6, urls: http://dbpedia.org/property/pyramidDate, score: 0.5217391304347826 +2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/pyramidDate +2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:10.397  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:00:10.397 DEBUG 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:10.397 DEBUG 9657 --- [nio-8022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:10.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:00:10.405 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 2370 ms +2023-10-27 14:00:14.044  INFO 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} +2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@3be5c33d +2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a +2023-10-27 14:00:14.047  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:00:14.047  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a +2023-10-27 14:00:14.047  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:00:14.047  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:00:14.057  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d +2023-10-27 14:00:14.075  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Question: Who was the fellow Hobbit who was an enemy of Frodo? +2023-10-27 14:00:14.075  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66f76df2 +2023-10-27 14:00:14.075 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:00:14.076  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:00:14.087  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:00:14.087  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Who was the fellow Hobbit who was an enemy of Frodo?","language":"en"} +Curl Response: +[{"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"}] +2023-10-27 14:00:14.731  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"}] +2023-10-27 14:00:14.732  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"}] +2023-10-27 14:00:14.732  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:00:18.437  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:00:18.437 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : processing took: 4391 ms +2023-10-27 14:00:31.403  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} +2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@66933c41 +2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf +2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf +2023-10-27 14:00:31.404  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:00:31.404  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:00:31.409  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 +2023-10-27 14:00:31.419  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which of the dragons in Game of Thrones died? +2023-10-27 14:00:31.419  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52a64f9a +2023-10-27 14:00:31.419 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:00:31.420  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:00:31.426  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:00:31.426  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which of the dragons in Game of Thrones died?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"}] +2023-10-27 14:00:32.073  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"}] +2023-10-27 14:00:32.073  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"}] +2023-10-27 14:00:32.073  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Game"}],"literals":[],"properties":[]}]} +2023-10-27 14:00:35.409  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Game"}],"literals":[],"properties":[]}]} +2023-10-27 14:00:35.410 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4006 ms +2023-10-27 14:00:40.943  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.943  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} +2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@14503eeb +2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 +2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 +2023-10-27 14:00:40.944  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:00:40.944  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:00:40.951  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 +2023-10-27 14:00:40.962  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many movies were directed by Akira Kurosawa ? +2023-10-27 14:00:40.962  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@632c8081 +2023-10-27 14:00:40.962 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:00:40.964  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:00:40.971  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:00:40.971  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many movies were directed by Akira Kurosawa ?","language":"en"} +Curl Response: +[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"}] +2023-10-27 14:00:41.688  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"}] +2023-10-27 14:00:41.688  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"}] +2023-10-27 14:00:41.688  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v9","value":"http:\/\/dbpedia.org\/property\/director(s)"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/direction"},{"score":0.6,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directoy"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directionsB"},{"score":0.7,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directed"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directorr"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/artDirecter"}]}]} +2023-10-27 14:00:45.968  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v9","value":"http:\/\/dbpedia.org\/property\/director(s)"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/direction"},{"score":0.6,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directoy"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directionsB"},{"score":0.7,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directed"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directorr"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/artDirecter"}]}]} +2023-10-27 14:00:45.968  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/director(s), score: 0.5217391304347826 +2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/direction, score: 0.5714285714285714 +2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/directoy, score: 0.6 +2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/directed, score: 0.7 +2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/directed +2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:45.969  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:00:45.969 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:45.969 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:00:45.974  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:00:45.974 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 5031 ms +2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} +2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f49d1d1 +2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b +2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b +2023-10-27 14:02:30.541  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:02:30.541  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:02:30.548  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 +2023-10-27 14:02:30.560  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Question: Who founded the Worpswede artist colony ? +2023-10-27 14:02:30.560  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e3f0989 +2023-10-27 14:02:30.561 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:02:30.561  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:02:30.569  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:02:30.569  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Who founded the Worpswede artist colony ?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"}] +2023-10-27 14:02:31.453  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"}] +2023-10-27 14:02:31.453  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"}] +2023-10-27 14:02:31.453  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedesf"},{"score":0.631578947368421,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founders"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founding"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingDate"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderPl"},{"score":0.5555555555555556,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundry"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/founder"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded%60%60%60"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderName"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingYear"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedName"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedTitle"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingPerson"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedArea"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderDates"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundationPlace"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedBy"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundedBy"},{"score":0.6,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedby"},{"score":0.625,"var":"v5","value":"http:\/\/dbpedia.org\/property\/found"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundress"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedPlace"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderTitle"}]}]} +2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedesf"},{"score":0.631578947368421,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founders"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founding"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingDate"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderPl"},{"score":0.5555555555555556,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundry"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/founder"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded%60%60%60"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderName"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingYear"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedName"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedTitle"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingPerson"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedArea"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderDates"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundationPlace"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedBy"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundedBy"},{"score":0.6,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedby"},{"score":0.625,"var":"v5","value":"http:\/\/dbpedia.org\/property\/found"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundress"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedPlace"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderTitle"}]}]} +2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/property/foundedesf, score: 0.5714285714285714 +2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/property/founders, score: 0.631578947368421 +2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/ontology/founder, score: 0.6666666666666666 +2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/ontology/foundingPerson, score: 0.75 +2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/foundingPerson +2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:02:35.528  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:02:35.528 DEBUG 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:02:35.529 DEBUG 9657 --- [nio-8022-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:02:35.536  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:02:35.536 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : processing took: 4995 ms +2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} +2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@769e4d69 +2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 +2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 +2023-10-27 14:03:01.806  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:03:01.806  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:03:01.818  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 +2023-10-27 14:03:01.828  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? +2023-10-27 14:03:01.828  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e784d7f +2023-10-27 14:03:01.829 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:03:01.830  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:03:01.840  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:03:01.840  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"}] +2023-10-27 14:03:02.474  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"}] +2023-10-27 14:03:02.475  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"}] +2023-10-27 14:03:02.475  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:03:06.965  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:03:06.965 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 5159 ms +2023-10-27 14:03:30.638  INFO 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:30.638  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:30.638  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} +2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1029f367 +2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:5e9e4088-e440-456c-8d87-417261ce841d +2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:5e9e4088-e440-456c-8d87-417261ce841d +2023-10-27 14:03:30.639  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:03:30.639  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:03:30.645  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e +2023-10-27 14:03:30.655  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Question: Whom did Clara Westhoff marry? +2023-10-27 14:03:30.655  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@552b6f06 +2023-10-27 14:03:30.655 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:03:30.656  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:03:30.662  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:03:30.662  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Whom did Clara Westhoff marry?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"}] +2023-10-27 14:03:31.312  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"}] +2023-10-27 14:03:31.312  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"}] +2023-10-27 14:03:31.312  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v6","value":"http:\/\/dbpedia.org\/ontology\/spouse"},{"score":0.5,"var":"v6","value":"http:\/\/dbpedia.org\/property\/mar"}]}]} +2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v6","value":"http:\/\/dbpedia.org\/ontology\/spouse"},{"score":0.5,"var":"v6","value":"http:\/\/dbpedia.org\/property\/mar"}]}]} +2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v6, urls: http://dbpedia.org/ontology/spouse, score: 0.6153846153846154 +2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/spouse +2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:03:32.451  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:03:32.451 DEBUG 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:03:32.451 DEBUG 9657 --- [nio-8022-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:03:32.457  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:03:32.457 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 1819 ms +2023-10-27 14:04:57.507  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} +2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1ed0e139 +2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 +2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 +2023-10-27 14:04:57.508  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:04:57.508  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:04:57.520  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f +2023-10-27 14:04:57.540  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: What is the capital of the prefecture Tokyo ? +2023-10-27 14:04:57.541  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3203303 +2023-10-27 14:04:57.541 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:04:57.542  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:04:57.549  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:04:57.549  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What is the capital of the prefecture Tokyo ?","language":"en"} +Curl Response: +[{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"}] +2023-10-27 14:04:58.177  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"}] +2023-10-27 14:04:58.177  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"}] +2023-10-27 14:04:58.177  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capital"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalType"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatM"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capitalPlace"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatD"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatS"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalExile"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalCity"}]}]} +2023-10-27 14:05:00.083  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capital"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalType"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatM"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capitalPlace"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatD"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatS"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalExile"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalCity"}]}]} +2023-10-27 14:05:00.084  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/capital, score: 0.6666666666666666 +2023-10-27 14:05:00.084  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/capital +2023-10-27 14:05:00.084  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:05:00.084  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:05:00.084 DEBUG 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:05:00.084 DEBUG 9657 --- [nio-8022-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:05:00.089  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:05:00.089 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 2581 ms +2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} +2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@701027fe +2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 +2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 +2023-10-27 14:05:31.149  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:05:31.149  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:05:31.156  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba +2023-10-27 14:05:31.166  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: in which language does the united stated have the shortest short name? +2023-10-27 14:05:31.167  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1931e520 +2023-10-27 14:05:31.167 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:05:31.168  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:05:31.175  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:05:31.176  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"in which language does the united stated have the shortest short name?","language":"en"} +Curl Response: +[{"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"}] +2023-10-27 14:05:31.866  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"}] +2023-10-27 14:05:31.866  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"}] +2023-10-27 14:05:31.866  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/Language"}],"literals":[],"properties":[{"score":0.72,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortNames"},{"score":0.5263157894736842,"var":"v18","value":"http:\/\/dbpedia.org\/property\/short"},{"score":0.75,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortName"}]}]} +2023-10-27 14:05:33.924  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/Language"}],"literals":[],"properties":[{"score":0.72,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortNames"},{"score":0.5263157894736842,"var":"v18","value":"http:\/\/dbpedia.org\/property\/short"},{"score":0.75,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortName"}]}]} +2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : var: v18, urls: http://dbpedia.org/property/shortNames, score: 0.72 +2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : var: v18, urls: http://dbpedia.org/property/shortName, score: 0.75 +2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/shortName +2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:05:33.925  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:05:33.925 DEBUG 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:05:33.925 DEBUG 9657 --- [nio-8022-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:05:33.931  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:05:33.931 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 2782 ms +2023-10-27 14:06:02.137  INFO 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:02.137  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} +2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@12033cc3 +2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 +2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 +2023-10-27 14:06:02.138  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:06:02.138  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:06:02.144  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc +2023-10-27 14:06:02.156  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many poems did Allen Ginsberg published? +2023-10-27 14:06:02.156  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d0c5130 +2023-10-27 14:06:02.156 DEBUG 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:06:02.158  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:06:02.171  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:06:02.171  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many poems did Allen Ginsberg published?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"}] +2023-10-27 14:06:02.835  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"}] +2023-10-27 14:06:02.835  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"}] +2023-10-27 14:06:02.835  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:06:07.205  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:06:07.205 DEBUG 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 5068 ms +2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} +2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@51c6da47 +2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 +2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 +2023-10-27 14:06:31.244  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:06:31.244  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:06:31.249  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 +2023-10-27 14:06:31.260  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Question: Is Dr. Pepper named after its inventor? +2023-10-27 14:06:31.260  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@463f869a +2023-10-27 14:06:31.260 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:06:31.261  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:06:31.269  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:06:31.269  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Is Dr. Pepper named after its inventor?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"}] +2023-10-27 14:06:31.960  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"}] +2023-10-27 14:06:31.960  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"}] +2023-10-27 14:06:31.960  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} +2023-10-27 14:06:34.157  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} +2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/property/name6a, score: 0.5333333333333333 +2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/property/name., score: 0.5714285714285714 +2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/name, score: 0.6153846153846154 +2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/name +2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:06:34.158  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:06:34.158 DEBUG 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:06:34.158 DEBUG 9657 --- [nio-8022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:06:34.167  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:06:34.167 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 2923 ms +2023-10-27 14:06:42.999  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} +2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@cdf67b2 +2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f +2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f +2023-10-27 14:06:43.000  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:06:43.000  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:06:43.008  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 +2023-10-27 14:06:43.016  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: Who is the creator of the Dinosaurs tv show ? +2023-10-27 14:06:43.017  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15e2b1f8 +2023-10-27 14:06:43.017 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:06:43.017  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:06:43.023  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:06:43.023  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Who is the creator of the Dinosaurs tv show ?","language":"en"} +Curl Response: +[{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"}] +2023-10-27 14:06:43.702  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"}] +2023-10-27 14:06:43.703  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"}] +2023-10-27 14:06:43.704  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} +2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} +2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/product, score: 0.5882352941176471 +2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/property/creator, score: 0.6666666666666666 +2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/creator, score: 0.7058823529411765 +2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/creator +2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:06:47.833  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:06:47.833 DEBUG 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:06:47.833 DEBUG 9657 --- [nio-8022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:06:47.839  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:06:47.839 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 4839 ms +2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} +2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@339c22f5 +2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f +2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f +2023-10-27 14:07:12.809  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:07:12.809  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:07:12.817  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c +2023-10-27 14:07:12.830  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: can i play don't starve on play station 4? +2023-10-27 14:07:12.830  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34b3948f +2023-10-27 14:07:12.830 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:07:12.831  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:07:12.842  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:07:12.842  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"can i play don't starve on play station 4?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"}] +2023-10-27 14:07:13.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"}] +2023-10-27 14:07:13.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"}] +2023-10-27 14:07:13.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/PowerStation"}],"literals":[],"properties":[]}]} +2023-10-27 14:07:14.889  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/PowerStation"}],"literals":[],"properties":[]}]} +2023-10-27 14:07:14.889 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 2080 ms +2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} +2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@41aab0c6 +2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 +2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 +2023-10-27 14:07:16.133  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:07:16.133  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:07:16.138  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f +2023-10-27 14:07:16.146  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:07:16.147  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61612cb4 +2023-10-27 14:07:16.147 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:07:16.147  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:07:16.153  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:07:16.153  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which started first: impressionism or expressionism (art movements)?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] +2023-10-27 14:07:16.665  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] +2023-10-27 14:07:16.665  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] +2023-10-27 14:07:16.665  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:07:20.007  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:07:20.007 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 3874 ms +2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} +2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@19e969e6 +2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:9804c557-d25c-4f21-bbac-274526304a1c +2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:9804c557-d25c-4f21-bbac-274526304a1c +2023-10-27 14:08:06.440  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:08:06.440  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:08:06.446  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 +2023-10-27 14:08:06.474  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: What caused Kobe Bryant's Death? +2023-10-27 14:08:06.476  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ee80ca0 +2023-10-27 14:08:06.476 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:08:06.478  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:08:06.487  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:08:06.487  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What caused Kobe Bryant's Death?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"}] +2023-10-27 14:08:07.113  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"}] +2023-10-27 14:08:07.113  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"}] +2023-10-27 14:08:07.113  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeNote"},{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causus"},{"score":0.625,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causee"},{"score":0.5555555555555556,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeIs"}]}]} +2023-10-27 14:08:10.043  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeNote"},{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causus"},{"score":0.625,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causee"},{"score":0.5555555555555556,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeIs"}]}]} +2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v7, urls: http://dbpedia.org/property/causeNote, score: 0.5 +2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v7, urls: http://dbpedia.org/property/causee, score: 0.625 +2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/causee +2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:08:10.044  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:08:10.044 DEBUG 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:08:10.044 DEBUG 9657 --- [nio-8022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:08:10.051  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:08:10.051 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 3611 ms +2023-10-27 14:08:24.499  INFO 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:24.499  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:24.499  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} +2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@bd6dd58 +2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 +2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 +2023-10-27 14:08:24.500  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:08:24.500  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:08:24.511  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b +2023-10-27 14:08:24.530  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which started first: impressionism or expressionism (art movements)? +2023-10-27 14:08:24.530  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5693b92d +2023-10-27 14:08:24.530 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:08:24.532  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:08:24.544  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:08:24.544  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which started first: impressionism or expressionism (art movements)?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] +2023-10-27 14:08:25.201  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] +2023-10-27 14:08:25.201  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] +2023-10-27 14:08:25.201  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"} +2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} +2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@52e02041 +2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 +2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 +2023-10-27 14:08:26.222  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:08:26.222  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:08:26.227  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc +2023-10-27 14:08:26.236  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many countries have never been members of the UN? +2023-10-27 14:08:26.236  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@88cc894 +2023-10-27 14:08:26.236 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:08:26.238  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:08:26.244  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:08:26.244  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many countries have never been members of the UN?","language":"en"} +Curl Response: +[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] +2023-10-27 14:08:26.645  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] +2023-10-27 14:08:26.645  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] +2023-10-27 14:08:26.645  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} +2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v11, urls: http://dbpedia.org/ontology/class, score: 0.75 +2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/class +2023-10-27 14:08:29.370 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : processing took: 4871 ms +2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:08:29.370  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:08:29.370 DEBUG 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:08:29.370 DEBUG 9657 --- [nio-8022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:08:29.377  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:08:29.377 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 3155 ms +2023-10-27 14:09:02.946  INFO 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} +2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@43ac4494 +2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 +2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 +2023-10-27 14:09:02.947  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:09:02.947  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:09:02.953  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be +2023-10-27 14:09:02.963  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Question: In which country is Oberirrach ? +2023-10-27 14:09:02.963  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64b4fe51 +2023-10-27 14:09:02.964 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:09:02.964  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:09:02.971  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:09:02.972  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"In which country is Oberirrach ?","language":"en"} +Curl Response: +[{"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"}] +2023-10-27 14:09:03.578  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"}] +2023-10-27 14:09:03.579  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"}] +2023-10-27 14:09:03.579  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7058823529411765,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Country"}],"literals":[],"properties":[]}]} +2023-10-27 14:09:07.682  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7058823529411765,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Country"}],"literals":[],"properties":[]}]} +2023-10-27 14:09:07.682 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 4735 ms +2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} +2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@2fbcfbf1 +2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 +2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 +2023-10-27 14:09:43.152  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:09:43.152  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:09:43.159  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf +2023-10-27 14:09:43.170  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:09:43.170  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fad38e9 +2023-10-27 14:09:43.170 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:09:43.171  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:09:43.178  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:09:43.178  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:09:43.979  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:09:43.980  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:09:43.980  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:09:45.961  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:09:45.961 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 2809 ms +2023-10-27 14:10:26.028  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:26.028  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} +2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f99ccc0 +2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 +2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 +2023-10-27 14:10:26.029  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:10:26.029  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:10:26.044  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 +2023-10-27 14:10:26.097  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:10:26.097  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ff4dfba +2023-10-27 14:10:26.097 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:10:26.099  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:10:26.110  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:10:26.110  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:10:26.728  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:10:26.728  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:10:26.728  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} +2023-10-27 14:10:27.291  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:27.291  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} +2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@7cae7612 +2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab +2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab +2023-10-27 14:10:27.292  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:10:27.292  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:10:27.296  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb +2023-10-27 14:10:27.319  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which creator of The OA also acted in it? +2023-10-27 14:10:27.320  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c142c82 +2023-10-27 14:10:27.320 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:10:27.321  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:10:27.328  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:10:27.328  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which creator of The OA also acted in it?","language":"en"} +Curl Response: +[{"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"}] +2023-10-27 14:10:27.654  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"}] +2023-10-27 14:10:27.654  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"}] +2023-10-27 14:10:27.654  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:10:27.845  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:10:27.845 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 1817 ms +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} +2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} +2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v14, urls: http://dbpedia.org/ontology/product, score: 0.5882352941176471 +2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v14, urls: http://dbpedia.org/property/creator, score: 0.6666666666666666 +2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v14, urls: http://dbpedia.org/ontology/creator, score: 0.7058823529411765 +2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/creator +2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:10:31.710  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. +2023-10-27 14:10:31.710 DEBUG 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:10:31.710 DEBUG 9657 --- [nio-8022-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } +2023-10-27 14:10:31.715  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 +2023-10-27 14:10:31.715 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4424 ms +2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} +2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@103fd8b1 +2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf +2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf +2023-10-27 14:11:05.747  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:11:05.747  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:11:05.752  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e +2023-10-27 14:11:05.762  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:11:05.762  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6312773 +2023-10-27 14:11:05.762 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:11:05.763  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:11:05.771  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:11:05.771  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:11:06.393  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:11:06.393  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:11:06.393  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:11:10.460  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:11:10.460 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 4714 ms +2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} +2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@844c75a +2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:7a130498-786b-4597-afe4-76939bf2d704 +2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql +2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:7a130498-786b-4597-afe4-76939bf2d704 +2023-10-27 14:11:16.619  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. +2023-10-27 14:11:16.619  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! +2023-10-27 14:11:16.625  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 +2023-10-27 14:11:16.633  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? +2023-10-27 14:11:16.634  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64a80e87 +2023-10-27 14:11:16.634 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: +PREFIX oa: +PREFIX xsd: + +SELECT * +FROM ?graph +WHERE { +?annotationId a qa:AnnotationOfQuestionLanguage . +?annotationId oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt . + } +2023-10-27 14:11:16.635  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: +PREFIX qa: +PREFIX xsd: +PREFIX oa: + +SELECT * +FROM +WHERE + { ?annotationId + a qa:AnnotationOfQuestionLanguage ; + oa:hasTarget ?hasTarget ; + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + } + +2023-10-27 14:11:16.642  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en +2023-10-27 14:11:16.642  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} +Curl Response: +[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:11:17.255  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:11:17.255  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] +2023-10-27 14:11:17.255  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} +the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:11:19.027  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} +2023-10-27 14:11:19.027 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 2408 ms From 5e41dfb64cf25ad616a4937eb1a15a3a5a0a993a Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Fri, 27 Oct 2023 14:20:17 +0200 Subject: [PATCH 40/55] Removed '.' --- .../src/main/resources/queries/insert_one_annotation.rq | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq b/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq index 4307cf87a..debc327df 100644 --- a/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq +++ b/qanary-component-NED-Tagme/src/main/resources/queries/insert_one_annotation.rq @@ -13,7 +13,7 @@ GRAPH ?graph { oa:start ?start ; oa:end ?end ; qa:score ?score - ] . + ] ] . ?a oa:hasBody ?answer ; oa:annotatedBy ?application ; From b304ba53b7c265f8389b1b594cf6b353f34a2e9b Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 28 Nov 2023 13:56:56 +0100 Subject: [PATCH 41/55] Revert additional changes from component adjustment --- qanary-component-LD-Shuyo/nohup.out | 9888 -------- qanary-component-LD-Shuyo/pom.xml | 5 - .../nohup.out | 11511 --------- qanary-component-NED-DBpediaSpotlight/pom.xml | 5 - qanary-component-NED-Dandelion/nohup.out | 7553 ------ qanary-component-NED-Dandelion/pom.xml | 5 - .../resources/config/application.properties | 2 +- .../pom.xml | 5 - qanary-component-NED-MeaningCloud/pom.xml | 5 - qanary-component-NED-Ontotext/nohup.out | 5519 ---- qanary-component-NED-Ontotext/pom.xml | 6 - qanary-component-NED-Tagme/nohup.out | 4473 ---- qanary-component-NED-Tagme/pom.xml | 6 - .../nohup.out | 8811 ------- qanary-component-NER-DBpediaSpotlight/pom.xml | 6 - qanary-component-NER-Dandelion/nohup.out | 6022 ----- qanary-component-NER-Dandelion/pom.xml | 6 - .../resources/config/application.properties | 4 +- qanary-component-NER-MeaningCloud/pom.xml | 6 - qanary-component-NER-Ontotext/pom.xml | 6 - qanary-component-NER-Tagme/nohup.out | 2189 -- qanary-component-NER-Tagme/pom.xml | 6 - .../resources/config/application.properties | 2 +- qanary-component-NER-TextRazor/nohup.out | 5377 ---- qanary-component-NER-TextRazor/pom.xml | 5 - .../resources/config/application.properties | 2 +- qanary-component-QB-GAnswerWrapper/pom.xml | 13 +- qanary-component-QB-MonoliticWrapper/pom.xml | 5 - qanary-component-QB-PlatypusWrapper/nohup.out | 5294 ---- qanary-component-QB-PlatypusWrapper/pom.xml | 5 - qanary-component-QB-QAnswer/pom.xml | 148 +- qanary-component-QB-Sina/nohup.out | 7274 ------ qanary-component-QB-Sina/pom.xml | 5 - qanary-component-QBE-QAnswer/nohup.out | 20758 ---------------- qanary-component-QBE-QAnswer/pom.xml | 5 - .../pom.xml | 5 - qanary-component-QE-SparqlExecuter/pom.xml | 5 - .../nohup.out | 2461 -- .../pom.xml | 5 - .../component/rel_falcon.py | 2 +- 40 files changed, 91 insertions(+), 97319 deletions(-) delete mode 100644 qanary-component-LD-Shuyo/nohup.out delete mode 100644 qanary-component-NED-DBpediaSpotlight/nohup.out delete mode 100644 qanary-component-NED-Dandelion/nohup.out delete mode 100644 qanary-component-NED-Ontotext/nohup.out delete mode 100644 qanary-component-NED-Tagme/nohup.out delete mode 100644 qanary-component-NER-DBpediaSpotlight/nohup.out delete mode 100644 qanary-component-NER-Dandelion/nohup.out delete mode 100644 qanary-component-NER-Tagme/nohup.out delete mode 100644 qanary-component-NER-TextRazor/nohup.out delete mode 100644 qanary-component-QB-PlatypusWrapper/nohup.out delete mode 100644 qanary-component-QB-Sina/nohup.out delete mode 100644 qanary-component-QBE-QAnswer/nohup.out delete mode 100644 qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out diff --git a/qanary-component-LD-Shuyo/nohup.out b/qanary-component-LD-Shuyo/nohup.out deleted file mode 100644 index aee7e2ed8..000000000 --- a/qanary-component-LD-Shuyo/nohup.out +++ /dev/null @@ -1,9888 +0,0 @@ - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 4.1.7 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:22.065  INFO 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 9656 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) -2023-10-27 12:09:22.116 DEBUG 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.126  INFO 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:44.277  INFO 9656 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@191ae03f -2023-10-27 12:09:46.307  INFO 9656 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 12:09:46.308  INFO 9656 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 12:09:46.322  INFO 9656 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@5df417a7 -2023-10-27 12:09:46.345  INFO 9656 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = LD-Shuyo -spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:46.440  INFO 9656 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl -2023-10-27 12:09:50.119  WARN 9656 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:50.235  WARN 9656 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:50.752  WARN 9656 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:50.910  INFO 9656 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:10:00.355  INFO 9656 --- [ main] e.w.q.component.shuyo.ld.Application  : Started Application in 42.807 seconds (JVM running for 49.462) -2023-10-27 12:10:00.911  WARN 9656 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=LD-Shuyo, managementUrl=http://0.0.0.0:5555/actuator, healthUrl=http://0.0.0.0:5555/actuator/health, serviceUrl=http://0.0.0.0:5555/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:10.436  INFO 9656 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 0874ca224b9a -2023-10-27 12:11:08.929  INFO 9656 --- [nio-5555-exec-6] o.apache.coyote.http11.Http11Processor  : Error parsing HTTP request header - Note: further occurrences of HTTP request parsing errors will be logged at DEBUG level. - -java.lang.IllegalArgumentException: Invalid character found in method name [CNXN0x000x000x000x010x000x000x040x000x1b0x000x000x00M0x0a0x000x000xbc0xb10xa70xb1host::features=cmd,shell_v2...]. HTTP method names must be tokens - at org.apache.coyote.http11.Http11InputBuffer.parseRequestLine(Http11InputBuffer.java:419) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:271) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 4.1.7 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:51.110  INFO 11769 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 11769 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) -2023-10-27 12:15:51.177 DEBUG 11769 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:51.187  INFO 11769 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:21.248  INFO 11769 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9635fa -2023-10-27 12:16:24.724  INFO 11769 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 12:16:24.730  INFO 11769 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 12:16:24.764  INFO 11769 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@7c041b41 -2023-10-27 12:16:24.852  INFO 11769 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = LD-Shuyo -spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:25.103  INFO 11769 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl -2023-10-27 12:16:30.860  WARN 11769 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:31.121  WARN 11769 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:31.673  WARN 11769 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:31.805  INFO 11769 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:16:44.056  WARN 11769 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 12:16:44.431 ERROR 11769 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - -2023-10-27 13:37:20.408  WARN 9656 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=LD-Shuyo, managementUrl=http://0.0.0.0:5555/actuator, healthUrl=http://0.0.0.0:5555/actuator/health, serviceUrl=http://0.0.0.0:5555/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 4.1.7 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:49.510  INFO 28736 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 28736 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) -2023-10-27 13:37:49.515 DEBUG 28736 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:49.520  INFO 28736 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:15.158  INFO 28736 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9635fa -2023-10-27 13:38:18.378  INFO 28736 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 13:38:18.378  INFO 28736 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 13:38:18.426  INFO 28736 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@7c041b41 -2023-10-27 13:38:18.475  INFO 28736 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = LD-Shuyo -spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:18.592  INFO 28736 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl -2023-10-27 13:38:22.474  WARN 28736 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:22.592  WARN 28736 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:23.318  WARN 28736 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:23.588  INFO 28736 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:38:34.008  WARN 28736 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 13:38:34.282 ERROR 28736 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -LD-Shuyo -- LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 4.1.7 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:50.167  INFO 30127 --- [ main] e.w.q.component.shuyo.ld.Application  : Starting Application v4.1.7 using Java 21 on fedora with PID 30127 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/target/qanary-component-LD-Shuyo-4.1.7.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo) -2023-10-27 13:38:50.182 DEBUG 30127 --- [ main] e.w.q.component.shuyo.ld.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:50.183  INFO 30127 --- [ main] e.w.q.component.shuyo.ld.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:13.373  INFO 30127 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c67e137 -2023-10-27 13:39:15.941  INFO 30127 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 13:39:15.941  INFO 30127 --- [ main] e.w.q.c.s.ld.LanguageDetectorController  : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 13:39:15.950  INFO 30127 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.shuyo.ld.LanguageDetection@ce5a68e -2023-10-27 13:39:15.963  INFO 30127 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = LD-Shuyo -spring.application.description = LD-Shuyo is a Qanary component for determining the language of a question stored in the Qanary triplestore. If successful, it will store an instance of qa:AnnotationOfQuestionLanguage in the Qanary triplestore. -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:16.079  INFO 30127 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl -2023-10-27 13:39:22.064  WARN 30127 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-LD-Shuyo/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:22.265  WARN 30127 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:22.690  WARN 30127 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:22.923  INFO 30127 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:39:33.817  WARN 30127 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 13:39:34.307 ERROR 30127 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - -2023-10-27 13:53:11.615  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:11.624  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:11.689  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:11.772  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2db15427 -2023-10-27 13:53:11.816  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b838dcf -2023-10-27 13:53:11.832 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:11.976  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:11.977  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:12.169 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:12.170  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql -2023-10-27 13:53:12.195 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? -2023-10-27 13:53:12.195  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What did the suffragettes stand for? -2023-10-27 13:53:12.220  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What did the suffragettes stand for?' the language 'en' was detected. -2023-10-27 13:53:12.275 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:12.277  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7751e46 -2023-10-27 13:53:12.278 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:12.299  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:12.299  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:12.300 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:12.314 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 692 ms -2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:40.415  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4c77f53a -2023-10-27 13:53:40.434  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5ff5fa94 -2023-10-27 13:53:40.435 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:40.437  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:40.438  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:40.445 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:40.445  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql -2023-10-27 13:53:40.447 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? -2023-10-27 13:53:40.447  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which universities have more than 200000 students? -2023-10-27 13:53:40.448  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which universities have more than 200000 students?' the language 'en' was detected. -2023-10-27 13:53:40.454 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:40.454  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c580a75 -2023-10-27 13:53:40.454 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:40.456  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:40.456  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:40.456 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:40.464 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 49 ms -2023-10-27 13:53:57.170  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:57.170  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:57.170  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:57.171  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@235d18c4 -2023-10-27 13:53:57.204  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d9af2df -2023-10-27 13:53:57.205 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:57.206  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:57.207  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:57.215 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 -2023-10-27 13:53:57.215  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql -2023-10-27 13:53:57.217 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? -2023-10-27 13:53:57.217  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is TNFAIP1 ? -2023-10-27 13:53:57.217  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is TNFAIP1 ?' the language 'en' was detected. -2023-10-27 13:53:57.223 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 -2023-10-27 13:53:57.223  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29a573b4 -2023-10-27 13:53:57.223 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:57.225  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:57.226  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:57.226 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:57.234 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 64 ms -2023-10-27 13:54:02.035  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:54:02.035  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:54:02.036  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:54:02.036  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4671aba -2023-10-27 13:54:02.113  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@aa0f446 -2023-10-27 13:54:02.114 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:02.116  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:02.116  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:02.122 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 -2023-10-27 13:54:02.123  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 found in urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e at http://localhost:8080/sparql -2023-10-27 13:54:02.125 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? -2023-10-27 13:54:02.126  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many casualties were a result of the Troubles? -2023-10-27 13:54:02.127  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many casualties were a result of the Troubles?' the language 'en' was detected. -2023-10-27 13:54:02.134 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 -2023-10-27 13:54:02.134  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e9f71ca -2023-10-27 13:54:02.134 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:02.137  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:02.138  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:02.138 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:02.148 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 113 ms -2023-10-27 13:54:07.412  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.412  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.412  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.413  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@449af798 -2023-10-27 13:54:07.602  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44db185a -2023-10-27 13:54:07.602 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:07.607  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:07.611  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:07.621 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 -2023-10-27 13:54:07.622  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql -2023-10-27 13:54:07.623 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? -2023-10-27 13:54:07.624  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Where does the Nutri-Score originate from? -2023-10-27 13:54:07.624  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Where does the Nutri-Score originate from?' the language 'en' was detected. -2023-10-27 13:54:07.631 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 -2023-10-27 13:54:07.631  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21b6fa17 -2023-10-27 13:54:07.631 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:07.633  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.634  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.634 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.640 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 228 ms -2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:15.228  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@196f4248 -2023-10-27 13:54:15.283  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@17a8bf15 -2023-10-27 13:54:15.283 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:15.286  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:15.287  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:15.295 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 -2023-10-27 13:54:15.295  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql -2023-10-27 13:54:15.297 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? -2023-10-27 13:54:15.297  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Did Kobe Bryant leave the Lakers when LeBron James joined that team? -2023-10-27 13:54:15.298  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Did Kobe Bryant leave the Lakers when LeBron James joined that team?' the language 'en' was detected. -2023-10-27 13:54:15.303 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 -2023-10-27 13:54:15.304  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13972938 -2023-10-27 13:54:15.305 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:15.308  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:15.308  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:15.309 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:15.316 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 88 ms -2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:22.802  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@27780c9a -2023-10-27 13:54:22.823  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57aa77ac -2023-10-27 13:54:22.823 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:22.824  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:22.824  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:22.831 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d -2023-10-27 13:54:22.831  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d found in urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc at http://localhost:8080/sparql -2023-10-27 13:54:22.833 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 13:54:22.833  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many countries have never been members of the UN? -2023-10-27 13:54:22.833  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many countries have never been members of the UN?' the language 'en' was detected. -2023-10-27 13:54:22.839 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d -2023-10-27 13:54:22.839  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7160c2e4 -2023-10-27 13:54:22.839 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:22.841  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:22.842  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:22.842 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:22.850 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 48 ms -2023-10-27 13:54:28.560  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:28.561  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:28.561  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:28.561  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5ea6e536 -2023-10-27 13:54:28.568  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@56bf38d4 -2023-10-27 13:54:28.568 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:28.569  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:28.569  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:28.575 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:28.575  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql -2023-10-27 13:54:28.578 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:28.578  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:28.579  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What are the German names of academic disciplines containing “linguistik”?' the language 'en' was detected. -2023-10-27 13:54:28.584 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:28.584  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@784e19ea -2023-10-27 13:54:28.584 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:28.585  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:28.586  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:28.586 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:28.591 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 30 ms -2023-10-27 13:54:33.468  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:33.469  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:33.469  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:33.469  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5e65f4b8 -2023-10-27 13:54:33.478  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c57056b -2023-10-27 13:54:33.479 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:33.480  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:33.480  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:33.486 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c -2023-10-27 13:54:33.486  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql -2023-10-27 13:54:33.488 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:33.488  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:33.488  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Does Bremerhaven's local dialing code start with 4?' the language 'en' was detected. -2023-10-27 13:54:33.496 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c -2023-10-27 13:54:33.496  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@b5af959 -2023-10-27 13:54:33.496 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:33.498  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:33.499  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:33.499 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:33.505 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 36 ms -2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.922  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@40e8138b -2023-10-27 13:54:34.931  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34209e9f -2023-10-27 13:54:34.931 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:34.932  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.932  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.937 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 -2023-10-27 13:54:34.937  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql -2023-10-27 13:54:34.940 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? -2023-10-27 13:54:34.940  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many things are part of the "One Piece" Franchise? -2023-10-27 13:54:34.940  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many things are part of the "One Piece" Franchise?' the language 'en' was detected. -2023-10-27 13:54:34.947 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 -2023-10-27 13:54:34.947  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44f1f3d5 -2023-10-27 13:54:34.948 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:34.949  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.949  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.949 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.965 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 43 ms -2023-10-27 13:55:10.591  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:10.591  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:10.591  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:10.592  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4b9dfe7d -2023-10-27 13:55:10.603  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a9c570e -2023-10-27 13:55:10.604 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:10.605  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:10.606  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:10.617 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 -2023-10-27 13:55:10.618  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 found in urn:graph:713e7115-51ec-4875-b710-943891a2849a at http://localhost:8080/sparql -2023-10-27 13:55:10.621 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the mother tongue of the author Chimamanda Ngozi Adichie ? -2023-10-27 13:55:10.621  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the mother tongue of the author Chimamanda Ngozi Adichie ? -2023-10-27 13:55:10.621  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the mother tongue of the author Chimamanda Ngozi Adichie ?' the language 'en' was detected. -2023-10-27 13:55:10.631 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 -2023-10-27 13:55:10.631  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40318345 -2023-10-27 13:55:10.632 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:10.633  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:10.633  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:10.633 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:10.639 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 48 ms -2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:14.333  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@62b23b7d -2023-10-27 13:55:14.340  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71872684 -2023-10-27 13:55:14.341 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:14.341  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:14.342  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:14.350 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 -2023-10-27 13:55:14.350  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql -2023-10-27 13:55:14.352 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the magazine in which hunter x hunter is published established? -2023-10-27 13:55:14.352  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: when was the magazine in which hunter x hunter is published established? -2023-10-27 13:55:14.352  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'when was the magazine in which hunter x hunter is published established?' the language 'en' was detected. -2023-10-27 13:55:14.358 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 -2023-10-27 13:55:14.358  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d02f926 -2023-10-27 13:55:14.358 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:14.361  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:14.361  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:14.361 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:14.368 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 35 ms -2023-10-27 13:55:19.314  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:19.315  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:19.315  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:19.315  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@73144373 -2023-10-27 13:55:19.322  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7dd3a361 -2023-10-27 13:55:19.322 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:19.323  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:19.324  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:19.331 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f -2023-10-27 13:55:19.331  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql -2023-10-27 13:55:19.333 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation which forest is bigger, Amazon Rainforest or Congo Basin? -2023-10-27 13:55:19.333  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: which forest is bigger, Amazon Rainforest or Congo Basin? -2023-10-27 13:55:19.333  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'which forest is bigger, Amazon Rainforest or Congo Basin?' the language 'en' was detected. -2023-10-27 13:55:19.338 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f -2023-10-27 13:55:19.339  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79ec2803 -2023-10-27 13:55:19.339 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:19.340  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:19.340  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:19.340 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:19.347 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 32 ms -2023-10-27 13:55:29.339  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:29.340  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:29.340  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:29.340  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3d802695 -2023-10-27 13:55:29.352  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a7bf163 -2023-10-27 13:55:29.352 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:29.353  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:29.353  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:29.359 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 -2023-10-27 13:55:29.359  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql -2023-10-27 13:55:29.362 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:29.362  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:29.362  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the website of NPR's “Tiny Desk Concert”?' the language 'en' was detected. -2023-10-27 13:55:29.367 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 -2023-10-27 13:55:29.367  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e68fa97 -2023-10-27 13:55:29.367 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:29.369  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:29.369  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:29.369 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:29.374 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 34 ms -2023-10-27 13:55:37.180  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:37.181  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:37.181  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:37.181  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1e68cd47 -2023-10-27 13:55:37.191  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@770e04e9 -2023-10-27 13:55:37.191 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:37.192  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:37.193  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:37.199 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 -2023-10-27 13:55:37.199  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql -2023-10-27 13:55:37.201 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many public holidays does the state Bavaria have in a year? -2023-10-27 13:55:37.201  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many public holidays does the state Bavaria have in a year? -2023-10-27 13:55:37.201  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many public holidays does the state Bavaria have in a year?' the language 'en' was detected. -2023-10-27 13:55:37.206 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 -2023-10-27 13:55:37.207  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5858eb44 -2023-10-27 13:55:37.207 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:37.208  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:37.208  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:37.208 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:37.215 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 35 ms -2023-10-27 13:56:04.794  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:04.795  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:04.795  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:04.795  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@242b8d1a -2023-10-27 13:56:04.802  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37600317 -2023-10-27 13:56:04.804 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:56:04.805  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:04.805  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:04.812 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:04.812  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql -2023-10-27 13:56:04.814 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:04.814  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:04.814  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which American presidents followed in their father‘s step and also became the president?' the language 'en' was detected. -2023-10-27 13:56:04.819 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:04.819  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2e8b8d4f -2023-10-27 13:56:04.819 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:56:04.820  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:04.821  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:04.821 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:04.826 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 31 ms -2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:35.599  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@580d986a -2023-10-27 13:56:35.609  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@147cf615 -2023-10-27 13:56:35.609 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:56:35.611  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:35.611  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:35.618 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d -2023-10-27 13:56:35.618  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql -2023-10-27 13:56:35.620 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Goethe’s unmarried partner born ? -2023-10-27 13:56:35.620  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Where was Goethe’s unmarried partner born ? -2023-10-27 13:56:35.620  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Where was Goethe’s unmarried partner born ?' the language 'en' was detected. -2023-10-27 13:56:35.625 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d -2023-10-27 13:56:35.625  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ffcde39 -2023-10-27 13:56:35.626 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:56:35.627  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:35.628  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:35.628 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:35.633 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 34 ms -2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:06.314  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3ceea95a -2023-10-27 13:57:06.321  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6db07a6f -2023-10-27 13:57:06.321 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:06.322  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:06.322  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:06.328 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:06.328  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql -2023-10-27 13:57:06.330 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was the University of Hamburg founded? -2023-10-27 13:57:06.330  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: When was the University of Hamburg founded? -2023-10-27 13:57:06.330  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'When was the University of Hamburg founded?' the language 'en' was detected. -2023-10-27 13:57:06.335 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:06.335  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d981413 -2023-10-27 13:57:06.335 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:06.337  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:06.337  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:06.337 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:06.342 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 28 ms -2023-10-27 13:57:28.043  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:28.044  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:28.045  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:28.045  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@50d128ec -2023-10-27 13:57:28.058  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@80bd544 -2023-10-27 13:57:28.059 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:28.062  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:28.064  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:28.076 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:28.076  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql -2023-10-27 13:57:28.081 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? -2023-10-27 13:57:28.081  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the twitter name of Running Wild? -2023-10-27 13:57:28.081  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the twitter name of Running Wild?' the language 'en' was detected. -2023-10-27 13:57:28.093 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:28.094  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f25a1e0 -2023-10-27 13:57:28.094 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:28.097  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:28.097  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:28.097 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:28.108 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 64 ms -2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:30.653  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@38f371a4 -2023-10-27 13:57:30.708  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49c29236 -2023-10-27 13:57:30.708 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:30.725  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:30.726  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:30.741 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 -2023-10-27 13:57:30.741  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql -2023-10-27 13:57:30.748 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many different colors can water take? -2023-10-27 13:57:30.749  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many different colors can water take? -2023-10-27 13:57:30.749  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many different colors can water take?' the language 'en' was detected. -2023-10-27 13:57:30.762 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 -2023-10-27 13:57:30.763  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d7aba38 -2023-10-27 13:57:30.763 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:30.767  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:30.768  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:30.768 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:30.786 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 133 ms -2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:45.698  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6b33e116 -2023-10-27 13:57:45.763  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1388f237 -2023-10-27 13:57:45.764 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:45.765  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:45.766  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:45.773 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:45.773  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql -2023-10-27 13:57:45.775 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? -2023-10-27 13:57:45.775  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many people died due to the Great Leap Forward according to the highest estimate? -2023-10-27 13:57:45.775  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many people died due to the Great Leap Forward according to the highest estimate?' the language 'en' was detected. -2023-10-27 13:57:45.783 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:45.783  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@244723ea -2023-10-27 13:57:45.783 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:45.785  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:45.785  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:45.785 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:45.791 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 93 ms -2023-10-27 13:57:48.166  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:48.167  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:48.167  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:48.167  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3366561c -2023-10-27 13:57:48.174  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3759d4a8 -2023-10-27 13:57:48.175 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:48.175  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:48.176  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:48.183 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 -2023-10-27 13:57:48.183  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql -2023-10-27 13:57:48.185 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in the country where ghost in the shell is born, who is the current head of the state? -2023-10-27 13:57:48.185  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: in the country where ghost in the shell is born, who is the current head of the state? -2023-10-27 13:57:48.186  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'in the country where ghost in the shell is born, who is the current head of the state?' the language 'en' was detected. -2023-10-27 13:57:48.195 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 -2023-10-27 13:57:48.196  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@725b5c27 -2023-10-27 13:57:48.196 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:48.198  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:48.198  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:48.198 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:48.206 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 39 ms -2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:54.982  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@639b5b28 -2023-10-27 13:57:54.993  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57e151f9 -2023-10-27 13:57:54.993 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:54.995  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:54.996  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:55.002 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:55.003  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql -2023-10-27 13:57:55.004 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? -2023-10-27 13:57:55.005  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many movies does the Scream franchise have? -2023-10-27 13:57:55.005  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many movies does the Scream franchise have?' the language 'en' was detected. -2023-10-27 13:57:55.012 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:55.013  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24ded94e -2023-10-27 13:57:55.013 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:55.015  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:55.015  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:55.015 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:55.021 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 39 ms -2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:02.273  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5695b52e -2023-10-27 13:58:02.282  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@358bd0b6 -2023-10-27 13:58:02.282 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:02.282  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:02.283  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:02.287 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 -2023-10-27 13:58:02.287  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql -2023-10-27 13:58:02.289 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:58:02.289  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:58:02.289  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?' the language 'en' was detected. -2023-10-27 13:58:02.294 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 -2023-10-27 13:58:02.295  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67098105 -2023-10-27 13:58:02.295 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:02.297  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:02.297  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:02.297 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:02.303 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 30 ms -2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:12.848  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@152c9993 -2023-10-27 13:58:12.855  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cc15615 -2023-10-27 13:58:12.855 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:12.856  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:12.856  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:12.861 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:12.861  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql -2023-10-27 13:58:12.864 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:12.864  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:12.864  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who is the oldest cast member of the Netflix show “Queer Eye” ?' the language 'en' was detected. -2023-10-27 13:58:12.869 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:12.869  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@324c2ce0 -2023-10-27 13:58:12.869 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:12.870  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:12.871  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:12.871 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:12.876 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 28 ms -2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:38.034  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@51b60aff -2023-10-27 13:58:38.041  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72eb3f3c -2023-10-27 13:58:38.041 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:38.042  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:38.042  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:38.050 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 -2023-10-27 13:58:38.050  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql -2023-10-27 13:58:38.051 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation how many plays has William Shakespeare written in the 16th century. -2023-10-27 13:58:38.051  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: how many plays has William Shakespeare written in the 16th century. -2023-10-27 13:58:38.052  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'how many plays has William Shakespeare written in the 16th century.' the language 'en' was detected. -2023-10-27 13:58:38.056 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 -2023-10-27 13:58:38.056  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2fe55075 -2023-10-27 13:58:38.056 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:38.057  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:38.057  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:38.057 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:38.064 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 30 ms -2023-10-27 13:58:49.084  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:49.085  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:49.085  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:49.085  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6c7925ac -2023-10-27 13:58:49.093  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@525717ec -2023-10-27 13:58:49.094 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:49.095  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:49.096  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:49.101 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:49.101  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql -2023-10-27 13:58:49.103 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:49.103  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:49.103  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which actor starring in Free Guy also starred in Deadpool?' the language 'en' was detected. -2023-10-27 13:58:49.107 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:49.108  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@77a61c4f -2023-10-27 13:58:49.108 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:49.109  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:49.109  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:49.109 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:49.116 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 32 ms -2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:59:03.258  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@42b472cb -2023-10-27 13:59:03.270  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43630a37 -2023-10-27 13:59:03.270 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:03.271  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:03.271  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:03.277 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:59:03.277  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql -2023-10-27 13:59:03.280 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? -2023-10-27 13:59:03.280  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What notes does a C major chord consist of? -2023-10-27 13:59:03.280  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What notes does a C major chord consist of?' the language 'en' was detected. -2023-10-27 13:59:03.285 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:59:03.286  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a667a67 -2023-10-27 13:59:03.286 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:03.287  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:03.287  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:03.287 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:03.292 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 34 ms -2023-10-27 13:59:04.824  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.824  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.825  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.825  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6d1ac6fa -2023-10-27 13:59:04.833  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@54e1826a -2023-10-27 13:59:04.834 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:04.834  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:04.834  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:04.840 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f -2023-10-27 13:59:04.840  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql -2023-10-27 13:59:04.841 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 13:59:04.841  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: in which language does the united stated have the shortest short name? -2023-10-27 13:59:04.841  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'in which language does the united stated have the shortest short name?' the language 'en' was detected. -2023-10-27 13:59:04.847 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f -2023-10-27 13:59:04.847  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9527f96 -2023-10-27 13:59:04.847 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:04.849  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.849  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.849 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.855 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 31 ms -2023-10-27 13:59:34.113  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:34.114  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:34.114  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:34.114  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4dfdba35 -2023-10-27 13:59:34.122  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@36ba4a61 -2023-10-27 13:59:34.123 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:34.124  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:34.124  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:34.132 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:34.132  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql -2023-10-27 13:59:34.133 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was the first female chancellor in Germany ever married? -2023-10-27 13:59:34.133  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Was the first female chancellor in Germany ever married? -2023-10-27 13:59:34.134  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Was the first female chancellor in Germany ever married?' the language 'en' was detected. -2023-10-27 13:59:34.138 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:34.139  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d5f2260 -2023-10-27 13:59:34.140 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:34.141  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:34.141  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:34.141 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:34.148 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 34 ms -2023-10-27 13:59:36.853  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.854  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.854  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.854  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7f399e36 -2023-10-27 13:59:36.865  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e287043 -2023-10-27 13:59:36.865 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:36.866  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:36.866  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:36.889 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 -2023-10-27 13:59:36.890  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql -2023-10-27 13:59:36.895 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:36.896  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:36.896  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who are the actresses in Portrait of a Lady on Fire?' the language 'en' was detected. -2023-10-27 13:59:36.904 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 -2023-10-27 13:59:36.906  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@588fee6d -2023-10-27 13:59:36.907 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:36.908  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.908  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.908 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.916 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 61 ms -2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:51.951  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6eaf220d -2023-10-27 13:59:51.959  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1a059485 -2023-10-27 13:59:51.959 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:51.960  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:51.960  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:51.967 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 13:59:51.967  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql -2023-10-27 13:59:51.969 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the professions of John Lennon’s sons? -2023-10-27 13:59:51.969  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What are the professions of John Lennon’s sons? -2023-10-27 13:59:51.969  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What are the professions of John Lennon’s sons?' the language 'en' was detected. -2023-10-27 13:59:51.973 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 13:59:51.974  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d80222 -2023-10-27 13:59:51.974 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:51.975  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:51.975  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:51.975 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:51.981 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 30 ms -2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:06.175  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@35582c8d -2023-10-27 14:00:06.185  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@28efa42c -2023-10-27 14:00:06.185 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:06.185  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:06.186  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:06.191 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c -2023-10-27 14:00:06.191  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c found in urn:graph:f48704a2-e326-4237-b784-257818c7ed9b at http://localhost:8080/sparql -2023-10-27 14:00:06.193 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second game developed by Piranha Bytes? -2023-10-27 14:00:06.193  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the second game developed by Piranha Bytes? -2023-10-27 14:00:06.193  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the second game developed by Piranha Bytes?' the language 'en' was detected. -2023-10-27 14:00:06.200 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c -2023-10-27 14:00:06.201  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@426d2eaa -2023-10-27 14:00:06.201 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:06.202  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:06.202  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:06.202 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:06.207 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 32 ms -2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:10.409  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@565433d8 -2023-10-27 14:00:10.418  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@229b4355 -2023-10-27 14:00:10.419 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:10.420  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:10.420  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:10.426 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 -2023-10-27 14:00:10.426  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql -2023-10-27 14:00:10.428 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? -2023-10-27 14:00:10.428  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which egyptian pyramid is the tallest? -2023-10-27 14:00:10.428  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which egyptian pyramid is the tallest?' the language 'en' was detected. -2023-10-27 14:00:10.436 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 -2023-10-27 14:00:10.436  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7656147b -2023-10-27 14:00:10.436 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:10.438  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:10.438  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:10.438 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:10.447 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 38 ms -2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:18.441  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5b94d35b -2023-10-27 14:00:18.451  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6082e3c5 -2023-10-27 14:00:18.451 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:18.452  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:18.452  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:18.458 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d -2023-10-27 14:00:18.458  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql -2023-10-27 14:00:18.460 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:18.460  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:18.461  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who was the fellow Hobbit who was an enemy of Frodo?' the language 'en' was detected. -2023-10-27 14:00:18.468 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d -2023-10-27 14:00:18.469  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3828cf6d -2023-10-27 14:00:18.469 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:18.470  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:18.470  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:18.470 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:18.476 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 35 ms -2023-10-27 14:00:21.784  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:21.784  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:21.784  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:21.785  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7bf2c0d3 -2023-10-27 14:00:21.791  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@8687503 -2023-10-27 14:00:21.791 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:21.792  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:21.792  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:21.799 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 -2023-10-27 14:00:21.799  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql -2023-10-27 14:00:21.800 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? -2023-10-27 14:00:21.800  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Through which countries does the Danube go? -2023-10-27 14:00:21.801  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Through which countries does the Danube go?' the language 'en' was detected. -2023-10-27 14:00:21.805 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 -2023-10-27 14:00:21.805  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4093d18c -2023-10-27 14:00:21.805 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:21.806  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:21.806  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:21.806 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:21.811 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 27 ms -2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:29.786  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@76759167 -2023-10-27 14:00:29.793  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@56f9b18e -2023-10-27 14:00:29.793 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:29.794  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:29.794  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:29.800 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f -2023-10-27 14:00:29.800  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql -2023-10-27 14:00:29.802 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? -2023-10-27 14:00:29.802  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the second letter in the Greek alphabet? -2023-10-27 14:00:29.802  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the second letter in the Greek alphabet?' the language 'en' was detected. -2023-10-27 14:00:29.807 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f -2023-10-27 14:00:29.807  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32f41072 -2023-10-27 14:00:29.807 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:29.808  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:29.808  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:29.808 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:29.814 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 28 ms -2023-10-27 14:00:35.414  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:35.415  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:35.415  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:35.415  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@bf7e2b0 -2023-10-27 14:00:35.422  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@388c05d6 -2023-10-27 14:00:35.422 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:35.422  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:35.422  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:35.427 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:35.427  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql -2023-10-27 14:00:35.429 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? -2023-10-27 14:00:35.430  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which of the dragons in Game of Thrones died? -2023-10-27 14:00:35.430  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which of the dragons in Game of Thrones died?' the language 'en' was detected. -2023-10-27 14:00:35.435 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:35.435  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75ebd0ec -2023-10-27 14:00:35.436 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:35.436  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:35.436  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:35.437 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:35.441 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 27 ms -2023-10-27 14:00:45.977  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:45.978  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:45.978  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:45.978  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7c2e5a2f -2023-10-27 14:00:45.985  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b86b0ed -2023-10-27 14:00:45.986 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:45.986  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:45.986  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:45.992 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:45.992  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql -2023-10-27 14:00:45.994 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? -2023-10-27 14:00:45.994  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many movies were directed by Akira Kurosawa ? -2023-10-27 14:00:45.994  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many movies were directed by Akira Kurosawa ?' the language 'en' was detected. -2023-10-27 14:00:46.001 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:46.001  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d11b0a4 -2023-10-27 14:00:46.001 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:46.002  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:46.003  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:46.003 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:46.008 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 30 ms -2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.762  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1274a368 -2023-10-27 14:01:40.770  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7337b9c7 -2023-10-27 14:01:40.770 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:01:40.771  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:40.771  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:40.776 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 -2023-10-27 14:01:40.776  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql -2023-10-27 14:01:40.778 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the boiling point of water? -2023-10-27 14:01:40.778  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the boiling point of water? -2023-10-27 14:01:40.778  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the boiling point of water?' the language 'en' was detected. -2023-10-27 14:01:40.784 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 -2023-10-27 14:01:40.784  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@28de2724 -2023-10-27 14:01:40.784 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:40.785  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.785  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.785 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.790 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 28 ms -2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:46.810  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@229ca931 -2023-10-27 14:01:46.819  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5f6fa832 -2023-10-27 14:01:46.819 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:01:46.820  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:46.820  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:46.825 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:46.825  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql -2023-10-27 14:01:46.828 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:46.828  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:46.828  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many times did the Italian national soccer team win the Fifa World Cup?' the language 'en' was detected. -2023-10-27 14:01:46.835 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:46.835  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2884e4d1 -2023-10-27 14:01:46.835 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:46.836  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:46.836  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:46.836 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:46.842 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 32 ms -2023-10-27 14:02:29.066  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:29.067  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:29.067  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:29.067  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5230a4ba -2023-10-27 14:02:29.080  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66662e2e -2023-10-27 14:02:29.080 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:29.081  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:29.081  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:29.086 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d -2023-10-27 14:02:29.086  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql -2023-10-27 14:02:29.088 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:02:29.088  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:02:29.088  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which started first: impressionism or expressionism (art movements)?' the language 'en' was detected. -2023-10-27 14:02:29.095 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d -2023-10-27 14:02:29.095  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e1c2581 -2023-10-27 14:02:29.096 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:29.097  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:29.098  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:29.098 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:29.105 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 39 ms -2023-10-27 14:02:35.539  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:35.540  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:35.540  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:35.540  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2968645c -2023-10-27 14:02:35.546  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15605b6a -2023-10-27 14:02:35.546 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:35.548  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:35.548  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:35.553 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:35.553  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql -2023-10-27 14:02:35.555 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded the Worpswede artist colony ? -2023-10-27 14:02:35.555  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who founded the Worpswede artist colony ? -2023-10-27 14:02:35.555  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who founded the Worpswede artist colony ?' the language 'en' was detected. -2023-10-27 14:02:35.560 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:35.560  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63906375 -2023-10-27 14:02:35.560 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:35.561  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:35.561  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:35.561 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:35.568 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 28 ms -2023-10-27 14:03:06.969  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:06.970  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:06.970  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:06.970  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@56e16cc -2023-10-27 14:03:06.975  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71267ea8 -2023-10-27 14:03:06.976 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:06.976  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:06.976  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:06.983 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:06.983  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql -2023-10-27 14:03:06.985 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:06.985  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:06.985  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?' the language 'en' was detected. -2023-10-27 14:03:06.989 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:06.990  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@243d6a64 -2023-10-27 14:03:06.990 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:06.991  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:06.991  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:06.991 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:06.995 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 25 ms -2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:26.043  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2162d51a -2023-10-27 14:03:26.052  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@163a5dbd -2023-10-27 14:03:26.052 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:26.053  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:26.053  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:26.058 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf -2023-10-27 14:03:26.058  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql -2023-10-27 14:03:26.059 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? -2023-10-27 14:03:26.059  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which animal participated in a military operation with the Australian Defence Force? -2023-10-27 14:03:26.060  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which animal participated in a military operation with the Australian Defence Force?' the language 'en' was detected. -2023-10-27 14:03:26.064 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf -2023-10-27 14:03:26.064  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@588d273c -2023-10-27 14:03:26.064 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:26.066  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:26.066  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:26.066 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:26.071 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 28 ms -2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:32.460  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@56a9050b -2023-10-27 14:03:32.469  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11bbebce -2023-10-27 14:03:32.469 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:32.470  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:32.470  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:32.475 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e -2023-10-27 14:03:32.475  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql -2023-10-27 14:03:32.477 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Whom did Clara Westhoff marry? -2023-10-27 14:03:32.477  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Whom did Clara Westhoff marry? -2023-10-27 14:03:32.477  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Whom did Clara Westhoff marry?' the language 'en' was detected. -2023-10-27 14:03:32.481 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e -2023-10-27 14:03:32.482  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3337fff3 -2023-10-27 14:03:32.482 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:32.483  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:32.483  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:32.483 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:32.489 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 29 ms -2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:43.229  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@169c686e -2023-10-27 14:03:43.237  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c382d73 -2023-10-27 14:03:43.237 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:43.238  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:43.238  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:43.243 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 -2023-10-27 14:03:43.243  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 found in urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad at http://localhost:8080/sparql -2023-10-27 14:03:43.244 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What percentage of Andorra is covered with water? -2023-10-27 14:03:43.244  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What percentage of Andorra is covered with water? -2023-10-27 14:03:43.244  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What percentage of Andorra is covered with water?' the language 'en' was detected. -2023-10-27 14:03:43.250 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 -2023-10-27 14:03:43.250  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57d680bb -2023-10-27 14:03:43.250 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:43.251  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:43.251  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:43.252 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:43.257 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 28 ms -2023-10-27 14:03:48.270  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:48.270  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:48.270  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:48.271  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@155bfe1e -2023-10-27 14:03:48.284  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@42999d7b -2023-10-27 14:03:48.284 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:48.285  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:48.285  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:48.289 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 -2023-10-27 14:03:48.289  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql -2023-10-27 14:03:48.291 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? -2023-10-27 14:03:48.291  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: who is the youngested member in g-idle? -2023-10-27 14:03:48.291  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'who is the youngested member in g-idle?' the language 'en' was detected. -2023-10-27 14:03:48.294 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 -2023-10-27 14:03:48.295  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1559cc58 -2023-10-27 14:03:48.295 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:48.296  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:48.296  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:48.296 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:48.303 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 33 ms -2023-10-27 14:04:13.441  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:13.442  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:13.442  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:13.442  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1f1a7036 -2023-10-27 14:04:13.450  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@116baed8 -2023-10-27 14:04:13.450 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:13.451  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:13.451  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:13.456 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:13.456  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql -2023-10-27 14:04:13.458 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? -2023-10-27 14:04:13.458  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: When was Rumi born? -2023-10-27 14:04:13.458  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'When was Rumi born?' the language 'en' was detected. -2023-10-27 14:04:13.462 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:13.462  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fb465c0 -2023-10-27 14:04:13.462 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:13.463  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:13.463  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:13.463 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:13.468 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 26 ms -2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:20.337  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@f8e0837 -2023-10-27 14:04:20.344  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7aa3b77c -2023-10-27 14:04:20.344 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:20.345  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:20.345  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:20.349 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd -2023-10-27 14:04:20.349  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql -2023-10-27 14:04:20.350 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? -2023-10-27 14:04:20.350  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What are the titles of the Star Wars series movies? -2023-10-27 14:04:20.351  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What are the titles of the Star Wars series movies?' the language 'en' was detected. -2023-10-27 14:04:20.354 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd -2023-10-27 14:04:20.354  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38b255be -2023-10-27 14:04:20.354 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:20.355  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:20.355  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:20.355 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:20.360 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 23 ms -2023-10-27 14:05:00.092  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:05:00.092  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:05:00.093  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:05:00.093  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3c1a2728 -2023-10-27 14:05:00.098  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2205fcfd -2023-10-27 14:05:00.099 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:00.099  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:00.099  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:00.104 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:05:00.104  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql -2023-10-27 14:05:00.106 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? -2023-10-27 14:05:00.106  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What is the capital of the prefecture Tokyo ? -2023-10-27 14:05:00.106  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What is the capital of the prefecture Tokyo ?' the language 'en' was detected. -2023-10-27 14:05:00.109 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:05:00.109  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c2e96e8 -2023-10-27 14:05:00.109 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:00.110  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:00.110  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:00.110 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:00.115 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 23 ms -2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.459  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3aa2cb71 -2023-10-27 14:05:01.466  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@57bb60ae -2023-10-27 14:05:01.466 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:01.467  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:01.467  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:01.479 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b -2023-10-27 14:05:01.479  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql -2023-10-27 14:05:01.480 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? -2023-10-27 14:05:01.480  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many spouses do head of states have on average? -2023-10-27 14:05:01.480  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many spouses do head of states have on average?' the language 'en' was detected. -2023-10-27 14:05:01.484 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b -2023-10-27 14:05:01.484  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cb0d737 -2023-10-27 14:05:01.484 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:01.485  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:01.485  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:01.485 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:01.490 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 31 ms -2023-10-27 14:05:09.293  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:05:09.294  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:05:09.294  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:05:09.294  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@45b37db3 -2023-10-27 14:05:09.300  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3019b273 -2023-10-27 14:05:09.301 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:09.301  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:09.301  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:09.305 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b -2023-10-27 14:05:09.305  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql -2023-10-27 14:05:09.307 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 14:05:09.307  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 14:05:09.307  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Did the Chicago Bulls win at least two seasons of the NBA championship?' the language 'en' was detected. -2023-10-27 14:05:09.310 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b -2023-10-27 14:05:09.311  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d4752b6 -2023-10-27 14:05:09.311 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:09.311  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:09.312  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:09.312 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:09.316 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 22 ms -2023-10-27 14:05:33.934  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:33.934  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:33.935  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:33.935  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@74bcdf66 -2023-10-27 14:05:33.943  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4e91668d -2023-10-27 14:05:33.943 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:33.944  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:33.944  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:33.949 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:33.949  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql -2023-10-27 14:05:33.950 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 14:05:33.950  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: in which language does the united stated have the shortest short name? -2023-10-27 14:05:33.951  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'in which language does the united stated have the shortest short name?' the language 'en' was detected. -2023-10-27 14:05:33.955 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:33.955  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@42c9cfb0 -2023-10-27 14:05:33.955 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:33.956  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:33.956  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:33.956 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:33.961 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 27 ms -2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:07.209  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@77136686 -2023-10-27 14:06:07.215  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@82317e3 -2023-10-27 14:06:07.215 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:07.216  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:07.216  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:07.221 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:07.221  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql -2023-10-27 14:06:07.222 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many poems did Allen Ginsberg published? -2023-10-27 14:06:07.222  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many poems did Allen Ginsberg published? -2023-10-27 14:06:07.222  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many poems did Allen Ginsberg published?' the language 'en' was detected. -2023-10-27 14:06:07.226 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:07.226  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f5c49cc -2023-10-27 14:06:07.226 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:07.227  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:07.227  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:07.227 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:07.232 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 23 ms -2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:34.172  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1b3cc0e -2023-10-27 14:06:34.182  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@364e1327 -2023-10-27 14:06:34.182 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:34.183  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:34.183  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:34.189 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 -2023-10-27 14:06:34.189  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 found in urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 at http://localhost:8080/sparql -2023-10-27 14:06:34.191 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? -2023-10-27 14:06:34.191  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Is Dr. Pepper named after its inventor? -2023-10-27 14:06:34.192  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Is Dr. Pepper named after its inventor?' the language 'en' was detected. -2023-10-27 14:06:34.196 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 -2023-10-27 14:06:34.196  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@725d67e6 -2023-10-27 14:06:34.196 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:34.197  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:34.197  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:34.197 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:34.203 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 31 ms -2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.724  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@42f17a9c -2023-10-27 14:06:40.734  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e24c8f0 -2023-10-27 14:06:40.735 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:40.735  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.736  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.742 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 -2023-10-27 14:06:40.743  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql -2023-10-27 14:06:40.744 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? -2023-10-27 14:06:40.744  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many female Chinese Empresses have there been? -2023-10-27 14:06:40.745  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many female Chinese Empresses have there been?' the language 'en' was detected. -2023-10-27 14:06:40.750 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 -2023-10-27 14:06:40.751  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@62966b8a -2023-10-27 14:06:40.751 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:40.752  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.752  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.752 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.759 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 35 ms -2023-10-27 14:06:47.843  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:47.843  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:47.844  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:47.844  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5e77defd -2023-10-27 14:06:47.853  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f77e65 -2023-10-27 14:06:47.854 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:47.854  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:47.855  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:47.859 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:47.860  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql -2023-10-27 14:06:47.861 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:47.861  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:47.862  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Who is the creator of the Dinosaurs tv show ?' the language 'en' was detected. -2023-10-27 14:06:47.866 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:47.867  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7d80de22 -2023-10-27 14:06:47.867 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:47.868  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:47.868  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:47.868 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:47.873 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 30 ms -2023-10-27 14:07:14.892  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:14.892  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:14.893  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:14.893  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@22a29757 -2023-10-27 14:07:14.899  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30f73b8a -2023-10-27 14:07:14.899 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:14.900  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:14.900  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:14.905 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:14.905  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql -2023-10-27 14:07:14.907 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? -2023-10-27 14:07:14.907  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: can i play don't starve on play station 4? -2023-10-27 14:07:14.907  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'can i play don't starve on play station 4?' the language 'en' was detected. -2023-10-27 14:07:14.911 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:14.911  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75979617 -2023-10-27 14:07:14.911 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:14.912  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:14.912  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:14.912 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:14.918 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 26 ms -2023-10-27 14:07:20.010  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:20.011  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:20.011  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:20.011  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@771694cb -2023-10-27 14:07:20.017  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16969924 -2023-10-27 14:07:20.017 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:20.018  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:20.018  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:20.023 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:20.023  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql -2023-10-27 14:07:20.024 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:20.024  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:20.024  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which started first: impressionism or expressionism (art movements)?' the language 'en' was detected. -2023-10-27 14:07:20.028 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:20.028  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d2f4615 -2023-10-27 14:07:20.028 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:20.029  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:20.029  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:20.029 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:20.034 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 23 ms -2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:23.990  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4569ee3c -2023-10-27 14:07:23.997  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29a28741 -2023-10-27 14:07:23.997 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:23.997  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:23.998  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:24.002 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 -2023-10-27 14:07:24.002  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql -2023-10-27 14:07:24.003 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? -2023-10-27 14:07:24.004  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: In how many movies did Carey Mulligan and Ryan Gosling star together? -2023-10-27 14:07:24.004  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'In how many movies did Carey Mulligan and Ryan Gosling star together?' the language 'en' was detected. -2023-10-27 14:07:24.008 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 -2023-10-27 14:07:24.008  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39ae1199 -2023-10-27 14:07:24.008 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:24.009  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:24.009  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:24.009 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:24.013 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 23 ms -2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:34.063  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@6b132128 -2023-10-27 14:07:34.069  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cae0561 -2023-10-27 14:07:34.069 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:34.070  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:34.070  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:34.074 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 -2023-10-27 14:07:34.074  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql -2023-10-27 14:07:34.076 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:34.076  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:34.076  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'has population of Isfahan increased at any point after 2006?' the language 'en' was detected. -2023-10-27 14:07:34.081 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 -2023-10-27 14:07:34.081  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64d77c4a -2023-10-27 14:07:34.081 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:34.082  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:34.082  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:34.082 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:34.087 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 24 ms -2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:52.227  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@60ea34f9 -2023-10-27 14:07:52.241  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d247cab -2023-10-27 14:07:52.241 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:52.242  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:52.242  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:52.248 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:52.248  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql -2023-10-27 14:07:52.250 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:52.250  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:52.250  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many of Reinhold Messner's brothers still live?' the language 'en' was detected. -2023-10-27 14:07:52.255 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:52.255  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b9be6 -2023-10-27 14:07:52.255 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:52.256  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:52.256  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:52.256 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:52.266 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 39 ms -2023-10-27 14:08:05.479  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:05.480  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:05.480  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:05.480  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7a55f1c6 -2023-10-27 14:08:05.488  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ab55847 -2023-10-27 14:08:05.488 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:05.489  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:05.489  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:05.494 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 -2023-10-27 14:08:05.494  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql -2023-10-27 14:08:05.496 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? -2023-10-27 14:08:05.496  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: is there female main character in hunter x hunter? -2023-10-27 14:08:05.496  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'is there female main character in hunter x hunter?' the language 'en' was detected. -2023-10-27 14:08:05.501 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 -2023-10-27 14:08:05.501  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@210a1922 -2023-10-27 14:08:05.501 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:05.503  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.503  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.503 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.508 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 29 ms -2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:10.055  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4ab6d35f -2023-10-27 14:08:10.063  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@291b7361 -2023-10-27 14:08:10.063 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:10.063  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:10.063  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:10.068 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:10.069  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql -2023-10-27 14:08:10.070 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? -2023-10-27 14:08:10.070  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What caused Kobe Bryant's Death? -2023-10-27 14:08:10.070  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What caused Kobe Bryant's Death?' the language 'en' was detected. -2023-10-27 14:08:10.074 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:10.074  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@120f6efc -2023-10-27 14:08:10.074 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:10.075  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:10.075  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:10.075 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:10.080 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 25 ms -2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:23.577  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1f706802 -2023-10-27 14:08:23.587  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5327301a -2023-10-27 14:08:23.587 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:23.588  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:23.588  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:23.679 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 -2023-10-27 14:08:23.679  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql -2023-10-27 14:08:23.681 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? -2023-10-27 14:08:23.681  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Where was Roland Corporation founded? -2023-10-27 14:08:23.681  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Where was Roland Corporation founded?' the language 'en' was detected. -2023-10-27 14:08:23.689 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 -2023-10-27 14:08:23.690  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ff659c8 -2023-10-27 14:08:23.690 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:23.691  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:23.691  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:23.691 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:23.699 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 122 ms -2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:25.229  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@38ccdf3d -2023-10-27 14:08:25.236  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7b3fb423 -2023-10-27 14:08:25.236 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:25.237  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:25.237  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:25.241 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c -2023-10-27 14:08:25.242  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql -2023-10-27 14:08:25.243 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? -2023-10-27 14:08:25.243  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How often was Naomi Novik nominated for a Hugo Award? -2023-10-27 14:08:25.243  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How often was Naomi Novik nominated for a Hugo Award?' the language 'en' was detected. -2023-10-27 14:08:25.247 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c -2023-10-27 14:08:25.247  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@59424dd9 -2023-10-27 14:08:25.247 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:25.247  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:25.248  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:25.248 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:25.254 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 25 ms -2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:29.374  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@34b13d49 -2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:29.380  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@22644967 -2023-10-27 14:08:29.382  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e233ded -2023-10-27 14:08:29.382 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:29.382  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.382  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.389  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@500c3662 -2023-10-27 14:08:29.389 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:29.389  INFO 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql -2023-10-27 14:08:29.389 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:29.390  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.390  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.390 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:29.390  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:29.391  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which started first: impressionism or expressionism (art movements)?' the language 'en' was detected. -2023-10-27 14:08:29.399 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:29.399  INFO 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql -2023-10-27 14:08:29.401 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 14:08:29.401  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many countries have never been members of the UN? -2023-10-27 14:08:29.401 DEBUG 9656 --- [nio-5555-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:29.401  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many countries have never been members of the UN?' the language 'en' was detected. -2023-10-27 14:08:29.402  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3862de7 -2023-10-27 14:08:29.402 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:29.403  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:29.403  INFO 9656 --- [nio-5555-exec-2] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:29.403 DEBUG 9656 --- [nio-5555-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:29.409 DEBUG 9656 --- [nio-5555-exec-2] e.w.q.component.QanaryServiceController  : processing took: 35 ms -2023-10-27 14:08:29.410 DEBUG 9656 --- [nio-5555-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:29.410  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c65b40f -2023-10-27 14:08:29.410 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:29.411  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:29.411  INFO 9656 --- [nio-5555-exec-3] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:29.411 DEBUG 9656 --- [nio-5555-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:29.418 DEBUG 9656 --- [nio-5555-exec-3] e.w.q.component.QanaryServiceController  : processing took: 38 ms -2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:01.090  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@78050180 -2023-10-27 14:09:01.100  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31e9a186 -2023-10-27 14:09:01.100 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:01.102  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:01.102  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:01.110 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf -2023-10-27 14:09:01.110  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql -2023-10-27 14:09:01.112 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? -2023-10-27 14:09:01.112  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What language do they speak in Poland ? -2023-10-27 14:09:01.113  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What language do they speak in Poland ?' the language 'en' was detected. -2023-10-27 14:09:01.120 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf -2023-10-27 14:09:01.121  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79c28c03 -2023-10-27 14:09:01.121 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:01.122  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:01.122  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:01.123 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:01.129 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 39 ms -2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:07.686  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5a80a2ef -2023-10-27 14:09:07.693  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f0ea3b8 -2023-10-27 14:09:07.693 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:07.694  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:07.694  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:07.699 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be -2023-10-27 14:09:07.699  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be found in urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 at http://localhost:8080/sparql -2023-10-27 14:09:07.700 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? -2023-10-27 14:09:07.700  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: In which country is Oberirrach ? -2023-10-27 14:09:07.700  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'In which country is Oberirrach ?' the language 'en' was detected. -2023-10-27 14:09:07.706 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be -2023-10-27 14:09:07.706  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f49a57e -2023-10-27 14:09:07.706 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:07.707  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:07.707  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:07.707 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:07.711 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 25 ms -2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:11.167  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4631b630 -2023-10-27 14:09:11.178  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48810ec4 -2023-10-27 14:09:11.178 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:11.179  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:11.179  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:11.187 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 -2023-10-27 14:09:11.188  INFO 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql -2023-10-27 14:09:11.191 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:11.191  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:11.191  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Is samurai champloo a piece of original work or an adaptation?' the language 'en' was detected. -2023-10-27 14:09:11.196 DEBUG 9656 --- [nio-5555-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 -2023-10-27 14:09:11.196  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a73ecce -2023-10-27 14:09:11.196 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:11.197  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.197  INFO 9656 --- [nio-5555-exec-8] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.197 DEBUG 9656 --- [nio-5555-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.204 DEBUG 9656 --- [nio-5555-exec-8] e.w.q.component.QanaryServiceController  : processing took: 37 ms -2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:12.081  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@79af735a -2023-10-27 14:09:12.089  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4f814b17 -2023-10-27 14:09:12.089 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:12.090  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:12.090  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:12.094 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd -2023-10-27 14:09:12.094  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd found in urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b at http://localhost:8080/sparql -2023-10-27 14:09:12.095 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:09:12.095  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:09:12.095  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?' the language 'en' was detected. -2023-10-27 14:09:12.099 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd -2023-10-27 14:09:12.099  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46230206 -2023-10-27 14:09:12.099 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:12.100  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.100  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.100 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.106 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 25 ms -2023-10-27 14:09:13.705  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.705  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.706  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.706  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7380a593 -2023-10-27 14:09:13.727  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f2cf399 -2023-10-27 14:09:13.727 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:13.727  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:13.728  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:13.733 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 -2023-10-27 14:09:13.733  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql -2023-10-27 14:09:13.736 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? -2023-10-27 14:09:13.737  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: when was the creator of saturday night live born? -2023-10-27 14:09:13.737  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'when was the creator of saturday night live born?' the language 'en' was detected. -2023-10-27 14:09:13.745 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 -2023-10-27 14:09:13.745  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@561b986 -2023-10-27 14:09:13.745 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:13.746  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.747  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.747 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.756 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 51 ms -2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:45.965  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@43d81a56 -2023-10-27 14:09:45.978  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c147d9f -2023-10-27 14:09:45.978 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:45.978  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:45.979  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:45.992 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:45.992  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql -2023-10-27 14:09:45.994 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:09:45.994  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:09:45.994  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. -2023-10-27 14:09:46.000 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:46.001  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1a058a11 -2023-10-27 14:09:46.001 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:46.004  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:46.004  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:46.004 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:46.011 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 46 ms -2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:09:48.909  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@18cad4d1 -2023-10-27 14:09:48.922  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29b666cd -2023-10-27 14:09:48.922 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:48.923  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:48.923  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:48.928 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 -2023-10-27 14:09:48.929  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql -2023-10-27 14:09:48.931 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? -2023-10-27 14:09:48.931  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? -2023-10-27 14:09:48.931  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?' the language 'en' was detected. -2023-10-27 14:09:48.939 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 -2023-10-27 14:09:48.939  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7d98674 -2023-10-27 14:09:48.939 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:48.940  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:48.940  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:48.941 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:48.946 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 37 ms -2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:13.981  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4efb78bc -2023-10-27 14:10:13.994  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11b32c56 -2023-10-27 14:10:13.994 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:13.995  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:13.995  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:14.001 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e -2023-10-27 14:10:14.001  INFO 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e found in urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224 at http://localhost:8080/sparql -2023-10-27 14:10:14.004 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:14.004  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : Question: How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:14.004  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?' the language 'en' was detected. -2023-10-27 14:10:14.011 DEBUG 9656 --- [nio-5555-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e -2023-10-27 14:10:14.011  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5a5ebb -2023-10-27 14:10:14.012 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:14.013  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:14.013  INFO 9656 --- [nio-5555-exec-7] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:14.013 DEBUG 9656 --- [nio-5555-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:14.019 DEBUG 9656 --- [nio-5555-exec-7] e.w.q.component.QanaryServiceController  : processing took: 38 ms -2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:25.677  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@f4d13fb -2023-10-27 14:10:25.684  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d7a94eb -2023-10-27 14:10:25.684 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:25.685  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.686  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.767 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 -2023-10-27 14:10:25.767  INFO 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 found in urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96 at http://localhost:8080/sparql -2023-10-27 14:10:25.768 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? -2023-10-27 14:10:25.769  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which universities have more than 200000 students? -2023-10-27 14:10:25.769  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which universities have more than 200000 students?' the language 'en' was detected. -2023-10-27 14:10:25.776 DEBUG 9656 --- [nio-5555-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 -2023-10-27 14:10:25.776  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48e6afa0 -2023-10-27 14:10:25.776 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:25.777  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.777  INFO 9656 --- [nio-5555-exec-9] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.777 DEBUG 9656 --- [nio-5555-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.783 DEBUG 9656 --- [nio-5555-exec-9] e.w.q.component.QanaryServiceController  : processing took: 106 ms -2023-10-27 14:10:27.848  INFO 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:27.848  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:27.849  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:27.849  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@28f488fb -2023-10-27 14:10:27.857  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5eae1c4b -2023-10-27 14:10:27.857 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:27.857  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:27.857  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:27.862 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:27.862  INFO 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql -2023-10-27 14:10:27.863 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:10:27.863  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:10:27.863  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. -2023-10-27 14:10:27.867 DEBUG 9656 --- [io-5555-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:27.867  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@56168c3c -2023-10-27 14:10:27.867 DEBUG 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:27.867  INFO 9656 --- [io-5555-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:27.868  INFO 9656 --- [io-5555-exec-10] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:27.868 DEBUG 9656 --- [io-5555-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:27.874 DEBUG 9656 --- [io-5555-exec-10] e.w.q.component.QanaryServiceController  : processing took: 26 ms -2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:31.719  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1e1aa70a -2023-10-27 14:10:31.730  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40f1b6c3 -2023-10-27 14:10:31.730 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:31.731  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:31.731  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:31.735 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb -2023-10-27 14:10:31.735  INFO 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql -2023-10-27 14:10:31.737 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? -2023-10-27 14:10:31.738  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : Question: Which creator of The OA also acted in it? -2023-10-27 14:10:31.738  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'Which creator of The OA also acted in it?' the language 'en' was detected. -2023-10-27 14:10:31.744 DEBUG 9656 --- [nio-5555-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb -2023-10-27 14:10:31.744  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46698c52 -2023-10-27 14:10:31.744 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:31.745  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:31.745  INFO 9656 --- [nio-5555-exec-1] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:31.745 DEBUG 9656 --- [nio-5555-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:31.751 DEBUG 9656 --- [nio-5555-exec-1] e.w.q.component.QanaryServiceController  : processing took: 32 ms -2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:10.465  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3feace0 -2023-10-27 14:11:10.473  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@770c63 -2023-10-27 14:11:10.473 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:10.474  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:10.474  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:10.480 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e -2023-10-27 14:11:10.480  INFO 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e found in urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf at http://localhost:8080/sparql -2023-10-27 14:11:10.481 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:10.481  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:11:10.481  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. -2023-10-27 14:11:10.486 DEBUG 9656 --- [nio-5555-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e -2023-10-27 14:11:10.486  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f706177 -2023-10-27 14:11:10.486 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:10.487  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:10.487  INFO 9656 --- [nio-5555-exec-4] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:10.487 DEBUG 9656 --- [nio-5555-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:10.492 DEBUG 9656 --- [nio-5555-exec-4] e.w.q.component.QanaryServiceController  : processing took: 27 ms -2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:19.030  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@28d9728a -2023-10-27 14:11:19.036  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@78006f10 -2023-10-27 14:11:19.036 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:19.037  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:19.037  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:19.041 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:19.042  INFO 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql -2023-10-27 14:11:19.043 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:19.043  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:11:19.043  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'After whom is the Riemannian geometry named?' the language 'en' was detected. -2023-10-27 14:11:19.047 DEBUG 9656 --- [nio-5555-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:19.047  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4991407 -2023-10-27 14:11:19.047 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:19.048  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:19.048  INFO 9656 --- [nio-5555-exec-6] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:19.048 DEBUG 9656 --- [nio-5555-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:19.053 DEBUG 9656 --- [nio-5555-exec-6] e.w.q.component.QanaryServiceController  : processing took: 23 ms -2023-10-27 14:13:48.524  INFO 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.525  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.525  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.525  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5b11a9c2 -2023-10-27 14:13:48.535  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1533822d -2023-10-27 14:13:48.535 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:13:48.536  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:48.536  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:48.541 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d -2023-10-27 14:13:48.541  INFO 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d found in urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8 at http://localhost:8080/sparql -2023-10-27 14:13:48.543 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? -2023-10-27 14:13:48.543  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : Question: When was Adidas established? -2023-10-27 14:13:48.545  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : for question 'When was Adidas established?' the language 'en' was detected. -2023-10-27 14:13:48.549 DEBUG 9656 --- [nio-5555-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d -2023-10-27 14:13:48.549  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation_of_question_language.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f291e48 -2023-10-27 14:13:48.549 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody ?language . - ?a oa:hasTarget ?targetQuestion ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time - } -} - -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:13:48.550  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.551  INFO 9656 --- [nio-5555-exec-5] e.w.q.c.shuyo.ld.LanguageDetection  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.551 DEBUG 9656 --- [nio-5555-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfQuestionLanguage . - ?a oa:hasBody "en" . - ?a oa:hasTarget . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.556 DEBUG 9656 --- [nio-5555-exec-5] e.w.q.component.QanaryServiceController  : processing took: 31 ms diff --git a/qanary-component-LD-Shuyo/pom.xml b/qanary-component-LD-Shuyo/pom.xml index 70a2b7b19..b3e644670 100644 --- a/qanary-component-LD-Shuyo/pom.xml +++ b/qanary-component-LD-Shuyo/pom.xml @@ -32,11 +32,6 @@ org.springframework.boot spring-boot-starter-web
- - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.springframework.boot spring-boot-starter-test diff --git a/qanary-component-NED-DBpediaSpotlight/nohup.out b/qanary-component-NED-DBpediaSpotlight/nohup.out deleted file mode 100644 index 768d4003e..000000000 --- a/qanary-component-NED-DBpediaSpotlight/nohup.out +++ /dev/null @@ -1,11511 +0,0 @@ - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080/  - -2023-10-27 11:59:31.762  INFO 6883 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 6883 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) -2023-10-27 11:59:31.767 DEBUG 6883 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 11:59:31.768  INFO 6883 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 11:59:34.732  WARN 6883 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 11:59:34.827  WARN 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 11:59:35.013  INFO 6883 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5707c1cb -2023-10-27 11:59:35.041  WARN 6883 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' -2023-10-27 11:59:35.045 DEBUG 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 11:59:35.072 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 11:59:35.134 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 11:59:35.138  INFO 6883 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 -2023-10-27 11:59:37.357 DEBUG 6883 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3241713e -2023-10-27 11:59:37.357 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 11:59:37.377 DEBUG 6883 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 11:59:37.554  INFO 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 11:59:37.578 DEBUG 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 11:59:37.655  WARN 6883 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 09:59:37 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 11:59:37.666  INFO 6883 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@4d8126f -2023-10-27 11:59:37.675  INFO 6883 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10008 -spring.application.name = NED-DBpediaSpotlight -spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -spring.boot.admin.url = http://localhost:8080/ -spring.boot.admin.client.url = http://localhost:8080/ - -2023-10-27 11:59:37.697  INFO 6883 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.0.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 11:59:38.277  INFO 6883 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 11:59:38.277  INFO 6883 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 11:59:38.303  INFO 6883 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 11:59:40.932  INFO 6883 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 11:59:40.965  INFO 6883 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 11:59:40.965  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 11:59:40.966  INFO 6883 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 11:59:40.968  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 11:59:40.969  INFO 6883 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 11:59:40.970  INFO 6883 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 11:59:40.970  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1dc3502b -2023-10-27 11:59:41.102  INFO 6883 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now -2023-10-27 11:59:41.106  INFO 6883 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. -2023-10-27 11:59:41.124  INFO 6883 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 9.922 seconds (JVM running for 10.77) -2023-10-27 11:59:41.393  INFO 6883 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 -2023-10-27 12:00:11.138  WARN 6883 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": localhost:8080 failed to respond; nested exception is org.apache.http.NoHttpResponseException: localhost:8080 failed to respond. Further attempts are logged on DEBUG level -2023-10-27 12:00:13.314  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:00:13.326  INFO 6883 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.1 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080/  - -2023-10-27 12:01:33.243  INFO 7848 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 7848 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) -2023-10-27 12:01:33.248 DEBUG 7848 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:01:33.258  INFO 7848 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:01:42.214  WARN 7848 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:01:42.473  WARN 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:01:42.827  INFO 7848 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48f5bde6 -2023-10-27 12:01:42.896  WARN 7848 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' -2023-10-27 12:01:42.912 DEBUG 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 12:01:42.959 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 12:01:43.044 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 12:01:43.048  INFO 7848 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 -2023-10-27 12:01:43.962 DEBUG 7848 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@43cf6ea3 -2023-10-27 12:01:43.962 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:01:43.976 DEBUG 7848 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 12:01:44.182  INFO 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 12:01:44.212 DEBUG 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 12:01:44.309  WARN 7848 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 10:01:43 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 12:01:44.327  INFO 7848 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@5965844d -2023-10-27 12:01:44.342  INFO 7848 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10008 -spring.application.name = NED-DBpediaSpotlight -spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -spring.boot.admin.url = http://localhost:8080/ -spring.boot.admin.client.url = http://localhost:8080/ - -2023-10-27 12:01:44.372  INFO 7848 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 12:01:45.135  INFO 7848 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 12:01:45.135  INFO 7848 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 12:01:45.169  INFO 7848 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 12:01:47.581  INFO 7848 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 12:01:47.713  INFO 7848 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 12:01:47.715  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 12:01:47.717  INFO 7848 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 12:01:47.718  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 12:01:47.719  INFO 7848 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 12:01:47.719  INFO 7848 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 12:01:47.719  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1422ac7f -2023-10-27 12:01:47.917  INFO 7848 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now -2023-10-27 12:01:47.918  INFO 7848 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. -2023-10-27 12:01:47.945  INFO 7848 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 16.584 seconds (JVM running for 19.248) -2023-10-27 12:01:48.057  WARN 7848 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:01:57.996  INFO 7848 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 -2023-10-27 12:08:46.302  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:08:46.328  INFO 7848 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.1 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080/  - -2023-10-27 12:09:22.878  INFO 9645 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 9645 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) -2023-10-27 12:09:22.906 DEBUG 9645 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.910  INFO 9645 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:48.347  WARN 9645 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:49.052  WARN 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:50.028  INFO 9645 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48f5bde6 -2023-10-27 12:09:50.200  WARN 9645 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' -2023-10-27 12:09:50.207 DEBUG 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 12:09:50.323 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 12:09:50.551 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 12:09:50.566  INFO 9645 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 -2023-10-27 12:09:52.494 DEBUG 9645 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@43cf6ea3 -2023-10-27 12:09:52.494 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:09:52.503 DEBUG 9645 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 12:09:52.987  INFO 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 12:09:53.054 DEBUG 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 12:09:53.462  WARN 9645 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 10:09:52 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 12:09:53.547  INFO 9645 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@5965844d -2023-10-27 12:09:53.629  INFO 9645 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10008 -spring.application.name = NED-DBpediaSpotlight -spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -spring.boot.admin.url = http://localhost:8080/ -spring.boot.admin.client.url = http://localhost:8080/ - -2023-10-27 12:09:53.734  INFO 9645 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 12:09:56.664  INFO 9645 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 12:09:56.688  INFO 9645 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 12:09:56.773  INFO 9645 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 12:10:02.529  INFO 9645 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 12:10:02.577  INFO 9645 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 12:10:02.578  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 12:10:02.579  INFO 9645 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 12:10:02.580  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@455c1d8c -2023-10-27 12:10:02.958  INFO 9645 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now -2023-10-27 12:10:02.958  INFO 9645 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. -2023-10-27 12:10:02.986  INFO 9645 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 44.294 seconds (JVM running for 52.095) -2023-10-27 12:10:03.149  WARN 9645 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:13.024  INFO 9645 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.1 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080/  - -2023-10-27 12:15:52.576  INFO 11758 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 11758 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) -2023-10-27 12:15:52.603 DEBUG 11758 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:52.604  INFO 11758 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:28.628  WARN 11758 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:30.026  WARN 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:31.603  INFO 11758 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@525d79f0 -2023-10-27 12:16:31.692  WARN 11758 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' -2023-10-27 12:16:31.704 DEBUG 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 12:16:31.794 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 12:16:32.212 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 12:16:32.261  INFO 11758 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 -2023-10-27 12:16:34.754 DEBUG 11758 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@37c5fc56 -2023-10-27 12:16:34.754 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:34.761 DEBUG 11758 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 12:16:35.351  INFO 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 12:16:35.381 DEBUG 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 12:16:35.644  WARN 11758 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 10:16:34 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 12:16:35.800  INFO 11758 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@6d4a65c6 -2023-10-27 12:16:35.908  INFO 11758 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10008 -spring.application.name = NED-DBpediaSpotlight -spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -spring.boot.admin.url = http://localhost:8080/ -spring.boot.admin.client.url = http://localhost:8080/ - -2023-10-27 12:16:36.045  INFO 11758 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 12:16:40.714  INFO 11758 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 12:16:40.715  INFO 11758 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 12:16:40.955  INFO 11758 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 12:16:47.115  INFO 11758 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 12:16:47.235  INFO 11758 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 12:16:47.235  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 12:16:47.236  INFO 11758 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 12:16:47.237  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 12:16:47.238  INFO 11758 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 12:16:47.238  INFO 11758 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 12:16:47.238  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1422ac7f -2023-10-27 12:16:47.763  WARN 11758 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10008 is already in use -2023-10-27 12:16:47.764  INFO 11758 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 12:16:47.765  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 12:16:47.765  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:16:47.766  INFO 11758 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 12:16:48.035 ERROR 11758 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 10008 was already in use. - -Action: - -Identify and stop the process that's listening on port 10008 or configure this application to listen on another port. - -2023-10-27 13:37:18.565  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:37:18.771  INFO 9645 --- [ionShutdownHook] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 13:37:18.771  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 13:37:18.772  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:37:18.772  INFO 9645 --- [ionShutdownHook] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.1 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080/  - -2023-10-27 13:37:48.897  INFO 28725 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 28725 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) -2023-10-27 13:37:48.910 DEBUG 28725 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:48.912  INFO 28725 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:12.997  WARN 28725 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:13.946  WARN 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:15.493  INFO 28725 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5149f008 -2023-10-27 13:38:15.610  WARN 28725 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' -2023-10-27 13:38:15.628 DEBUG 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 13:38:15.703 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 13:38:15.965 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:38:15.970  INFO 28725 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 -2023-10-27 13:38:23.276 DEBUG 28725 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1c025cb -2023-10-27 13:38:23.277 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:23.324 DEBUG 28725 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:38:24.241  INFO 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:38:24.415 DEBUG 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:38:25.138  WARN 28725 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:38:19 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:38:25.217  INFO 28725 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@aa004a0 -2023-10-27 13:38:25.321  INFO 28725 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10008 -spring.application.name = NED-DBpediaSpotlight -spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -spring.boot.admin.url = http://localhost:8080/ -spring.boot.admin.client.url = http://localhost:8080/ - -2023-10-27 13:38:25.422  INFO 28725 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 13:38:29.872  INFO 28725 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 13:38:29.873  INFO 28725 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 13:38:29.995  INFO 28725 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 13:38:36.086  INFO 28725 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:38:36.246  INFO 28725 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:38:36.246  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:38:36.247  INFO 28725 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:38:36.249  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:38:36.249  INFO 28725 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:38:36.249  INFO 28725 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:38:36.250  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@25ad4f71 -2023-10-27 13:38:36.754  INFO 28725 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now -2023-10-27 13:38:36.755  INFO 28725 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. -2023-10-27 13:38:36.825  INFO 28725 --- [ main] e.w.q.c.d.ned.Application  : Started Application in 52.356 seconds (JVM running for 59.616) -2023-10-27 13:38:37.072  WARN 28725 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NED-DBpediaSpotlight, managementUrl=http://localhost:10008/actuator, healthUrl=http://localhost:10008/actuator/health, serviceUrl=http://localhost:10008/) at spring-boot-admin ([http://localhost:8080//instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 13:38:47.007  INFO 28725 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 43dc7dd20513 - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NED-DBpediaSpotlight -- NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.1 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080/  - -2023-10-27 13:38:50.144  INFO 30116 --- [ main] e.w.q.c.d.ned.Application  : Starting Application v3.4.1 using Java 21 on fedora with PID 30116 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight) -2023-10-27 13:38:50.259 DEBUG 30116 --- [ main] e.w.q.c.d.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:50.261  INFO 30116 --- [ main] e.w.q.c.d.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:16.703  WARN 30116 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:17.207  WARN 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:18.364  INFO 30116 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5149f008 -2023-10-27 13:39:18.606  WARN 30116 --- [ main] e.w.q.c.d.ned.Application  : live check of endpoint https://api.dbpedia-spotlight.org/en/annotate will be executed with question 'test question Berlin London Tokio' -2023-10-27 13:39:18.625 DEBUG 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 13:39:18.750 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=test+question+Berlin+London+Tokio&confidence=0.1 -2023-10-27 13:39:19.142 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:39:19.152  INFO 30116 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1062665004 -2023-10-27 13:39:21.580 DEBUG 30116 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1c025cb -2023-10-27 13:39:21.580 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:21.602 DEBUG 30116 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:39:22.396  INFO 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:39:22.496 DEBUG 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:39:22.972  WARN 30116 --- [ main] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "test question Berlin London Tokio": <200,{"types":"","confidence":"0.1","text":"test question Berlin London Tokio","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Test_cricket","support":"24138","types":"","surfaceForm":"test","offset":"0","similarityScore":"0.809517253401639","percentageOfSecondRank":"0.0744734775216245"},{"URI":"http:\/\/dbpedia.org\/resource\/Berlin","support":"87107","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Berlin","offset":"14","similarityScore":"0.9993887385897859","percentageOfSecondRank":"3.3106570817681E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/London","support":"236613","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"London","offset":"21","similarityScore":"0.9997648904521458","percentageOfSecondRank":"7.949092738689299E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Tokyo","support":"47818","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Tokio","offset":"28","similarityScore":"0.9983547399586975","percentageOfSecondRank":"0.0015053572463341422"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:39:21 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:39:23.093  INFO 30116 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ned.DBpediaSpotlightNED@aa004a0 -2023-10-27 13:39:23.272  INFO 30116 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10008 -spring.application.name = NED-DBpediaSpotlight -spring.application.description = NED-DBpediaSpotlight is a Qanary component using DBpediaSpotlight to identify Named Entities in a given text -spring.boot.admin.url = http://localhost:8080/ -spring.boot.admin.client.url = http://localhost:8080/ - -2023-10-27 13:39:23.509  INFO 30116 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-DBpediaSpotlight/target/qanary-component-NED-DBpediaSpotlight-3.4.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 13:39:28.084  INFO 30116 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 13:39:28.084  INFO 30116 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 1 triples as TURTLE -@prefix rdfs: . - - - rdfs:label "DBpedia Spotlight NED" . - -2023-10-27 13:39:28.257  INFO 30116 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 13:39:37.338  INFO 30116 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:39:37.468  INFO 30116 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:39:37.469  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:39:37.470  INFO 30116 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:39:37.471  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:39:37.472  INFO 30116 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:39:37.472  INFO 30116 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:39:37.472  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@a92be4f -2023-10-27 13:39:37.846  WARN 30116 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10008 is already in use -2023-10-27 13:39:37.848  INFO 30116 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 13:39:37.848  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 13:39:37.849  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:39:37.850  INFO 30116 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 13:39:38.030 ERROR 30116 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 10008 was already in use. - -Action: - -Identify and stop the process that's listening on port 10008 or configure this application to listen on another port. - -2023-10-27 13:52:10.427  INFO 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"} -2023-10-27 13:52:10.439  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"} -2023-10-27 13:52:10.553  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"},"inGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c","outGraph":"urn:graph:7892129f-57ed-4825-b095-309f019cab9c"} -2023-10-27 13:52:10.811  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29bc9dc4 -2023-10-27 13:52:10.844 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:11.178  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:11.179  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:11.438 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9c5ddff-7770-403f-b961-f643df23693b -2023-10-27 13:52:11.439  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9c5ddff-7770-403f-b961-f643df23693b found in urn:graph:7892129f-57ed-4825-b095-309f019cab9c at http://localhost:8080/sparql -2023-10-27 13:52:11.451 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 13:52:11.451  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:11.452 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 -2023-10-27 13:52:11.456 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 -2023-10-27 13:52:11.457 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:11.491  INFO 28725 --- [io-10008-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1149170296 -2023-10-27 13:52:13.020 DEBUG 28725 --- [io-10008-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@72356d8 -2023-10-27 13:52:13.020 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:13.020 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:13.030  INFO 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:13.032 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:13.033  WARN 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 6 resources recognized for "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?": <200,{"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:13 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:13.035 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 5): http://dbpedia.org/resource/South_Korean_won at (8,11) -2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 5): http://dbpedia.org/resource/National_Basketball_Association at (17,20) -2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 5): http://dbpedia.org/resource/Michael_Jordan at (29,43) -2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 5): http://dbpedia.org/resource/Kobe_Bryant at (47,51) -2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 5): http://dbpedia.org/resource/Bean at (52,56) -2023-10-27 13:52:13.036 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (5 of 5): http://dbpedia.org/resource/Kobe_Bryant at (57,63) -2023-10-27 13:52:13.048 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9c5ddff-7770-403f-b961-f643df23693b -2023-10-27 13:52:13.053  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50bef3fd -2023-10-27 13:52:13.053 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:13.084  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9871424863560028 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.085  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9871424863560028 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.085 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9871424863560028 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.110  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@242b61 -2023-10-27 13:52:13.111 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:13.115  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9982751030641623 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.116  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9982751030641623 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.116 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9982751030641623 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.126  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@587f99e7 -2023-10-27 13:52:13.127 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:13.133  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999981796071551 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.134  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999981796071551 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.134 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999981796071551 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.149  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@160fd108 -2023-10-27 13:52:13.150 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:13.155  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988244763302297 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.157  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988244763302297 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.157 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988244763302297 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.170  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1f5a59e7 -2023-10-27 13:52:13.171 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:13.177  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "52"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9513692458761086 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.179  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "52"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9513692458761086 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.180 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "52"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9513692458761086 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.193  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e84064e -2023-10-27 13:52:13.194 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:13.199  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "57"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999997963240682 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.199  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "57"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999997963240682 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.200 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "57"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999997963240682 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:13.214 DEBUG 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : processing took: 2778 ms -2023-10-27 13:52:16.360  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"} -2023-10-27 13:52:16.360  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"} -2023-10-27 13:52:16.360  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"},"inGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c","outGraph":"urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c"} -2023-10-27 13:52:16.425  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@529c0d46 -2023-10-27 13:52:16.426 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:16.428  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:16.429  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:16.438 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9a00e996-691a-47b2-93d3-799d3b028567 -2023-10-27 13:52:16.438  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9a00e996-691a-47b2-93d3-799d3b028567 found in urn:graph:1b6faf86-1741-410c-aa2c-d0440fdef90c at http://localhost:8080/sparql -2023-10-27 13:52:16.444 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people nominated for the nobel prize in chemistry didn't ever win it? -2023-10-27 13:52:16.444  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many people nominated for the nobel prize in chemistry didn't ever win it?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:16.444 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+nominated+for+the+nobel+prize+in+chemistry+didn%27t+ever+win+it%3F&confidence=0.1 -2023-10-27 13:52:16.445 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+nominated+for+the+nobel+prize+in+chemistry+didn%27t+ever+win+it%3F&confidence=0.1 -2023-10-27 13:52:16.445 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:16.445  INFO 28725 --- [io-10008-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-526411245 -2023-10-27 13:52:16.474 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5c5bf965 -2023-10-27 13:52:16.474 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:16.475 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:16.477  INFO 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:16.477 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many people nominated for the nobel prize in chemistry didn't ever win it?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Candidate","support":"1270","types":"","surfaceForm":"nominated","offset":"16","similarityScore":"0.4335744247275617","percentageOfSecondRank":"0.6895162882925884"},{"URI":"http:\/\/dbpedia.org\/resource\/Nobel_Prize","support":"9254","types":"Wikidata:Q618779,DBpedia:Award","surfaceForm":"nobel prize","offset":"34","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Chemistry","support":"15396","types":"","surfaceForm":"chemistry","offset":"49","similarityScore":"0.5559611318302947","percentageOfSecondRank":"0.7985539573033008"},{"URI":"http:\/\/dbpedia.org\/resource\/Win\u2013loss_record_(pitching)","support":"6460","types":"","surfaceForm":"win","offset":"71","similarityScore":"0.9633359606191995","percentageOfSecondRank":"0.012399897377388513"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:16.482  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "How many people nominated for the nobel prize in chemistry didn't ever win it?": <200,{"types":"","confidence":"0.1","text":"How many people nominated for the nobel prize in chemistry didn't ever win it?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Candidate","support":"1270","types":"","surfaceForm":"nominated","offset":"16","similarityScore":"0.4335744247275617","percentageOfSecondRank":"0.6895162882925884"},{"URI":"http:\/\/dbpedia.org\/resource\/Nobel_Prize","support":"9254","types":"Wikidata:Q618779,DBpedia:Award","surfaceForm":"nobel prize","offset":"34","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Chemistry","support":"15396","types":"","surfaceForm":"chemistry","offset":"49","similarityScore":"0.5559611318302947","percentageOfSecondRank":"0.7985539573033008"},{"URI":"http:\/\/dbpedia.org\/resource\/Win\u2013loss_record_(pitching)","support":"6460","types":"","surfaceForm":"win","offset":"71","similarityScore":"0.9633359606191995","percentageOfSecondRank":"0.012399897377388513"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:16 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=99", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:16.484 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/How_(TV_series) at (0,3) -2023-10-27 13:52:16.484 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Candidate at (16,25) -2023-10-27 13:52:16.485 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Nobel_Prize at (34,45) -2023-10-27 13:52:16.485 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Chemistry at (49,58) -2023-10-27 13:52:16.485 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Win–loss_record_(pitching) at (71,74) -2023-10-27 13:52:16.494 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9a00e996-691a-47b2-93d3-799d3b028567 -2023-10-27 13:52:16.494  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58646636 -2023-10-27 13:52:16.495 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:16.500  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.500  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.500 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.510  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d66f35e -2023-10-27 13:52:16.511 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:16.515  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.4335744247275617 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.516  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.4335744247275617 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.516 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.4335744247275617 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.524  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f222b89 -2023-10-27 13:52:16.525 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:16.529  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "45"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.530  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "45"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.530 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "45"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.539  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2cb16fd9 -2023-10-27 13:52:16.540 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:16.545  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "58"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5559611318302947 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.545  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "58"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5559611318302947 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.545 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "58"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5559611318302947 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.553  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@571fe9af -2023-10-27 13:52:16.554 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:16.563  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "71"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9633359606191995 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.564  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "71"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9633359606191995 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.564 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "71"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9633359606191995 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:16.572 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 212 ms -2023-10-27 13:52:18.456  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"} -2023-10-27 13:52:18.456  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"} -2023-10-27 13:52:18.456  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"},"inGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f","outGraph":"urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f"} -2023-10-27 13:52:18.527  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25284ab9 -2023-10-27 13:52:18.527 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:18.529  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:18.530  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:18.537 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6710fe6b-4e7e-4ae3-9f73-a7c85a349f8e -2023-10-27 13:52:18.537  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6710fe6b-4e7e-4ae3-9f73-a7c85a349f8e found in urn:graph:1b015cea-5dbc-4400-aee9-ab5e97ef431f at http://localhost:8080/sparql -2023-10-27 13:52:18.540 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which businesses are founded by the person in charge of Tesla? -2023-10-27 13:52:18.540  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Which businesses are founded by the person in charge of Tesla?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:18.541 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F&confidence=0.1 -2023-10-27 13:52:18.541 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F&confidence=0.1 -2023-10-27 13:52:18.541 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:18.542  INFO 28725 --- [io-10008-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1485684696 -2023-10-27 13:52:18.568 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2befb06c -2023-10-27 13:52:18.569 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:18.569 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:18.570  INFO 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:18.570 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Which businesses are founded by the person in charge of Tesla?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Grammatical_person","support":"2748","types":"","surfaceForm":"person","offset":"36","similarityScore":"0.5340848695014293","percentageOfSecondRank":"0.6851942397677815"},{"URI":"http:\/\/dbpedia.org\/resource\/Tesla_Model_3","support":"453","types":"Schema:Product,DBpedia:MeanOfTransportation,DBpedia:Automobile","surfaceForm":"Tesla","offset":"56","similarityScore":"0.7798041286431635","percentageOfSecondRank":"0.26225428564097625"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:18.570  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Which businesses are founded by the person in charge of Tesla?": <200,{"types":"","confidence":"0.1","text":"Which businesses are founded by the person in charge of Tesla?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Grammatical_person","support":"2748","types":"","surfaceForm":"person","offset":"36","similarityScore":"0.5340848695014293","percentageOfSecondRank":"0.6851942397677815"},{"URI":"http:\/\/dbpedia.org\/resource\/Tesla_Model_3","support":"453","types":"Schema:Product,DBpedia:MeanOfTransportation,DBpedia:Automobile","surfaceForm":"Tesla","offset":"56","similarityScore":"0.7798041286431635","percentageOfSecondRank":"0.26225428564097625"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:18 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=98", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:18.570 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Langues_d'oïl at (0,5) -2023-10-27 13:52:18.571 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Grammatical_person at (36,42) -2023-10-27 13:52:18.571 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Tesla_Model_3 at (56,61) -2023-10-27 13:52:18.579 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6710fe6b-4e7e-4ae3-9f73-a7c85a349f8e -2023-10-27 13:52:18.580  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2fd021c9 -2023-10-27 13:52:18.580 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:18.584  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8956483894223672 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.584  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8956483894223672 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.585 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8956483894223672 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.595  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6ad2ba57 -2023-10-27 13:52:18.596 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:18.599  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "36"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5340848695014293 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.599  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "36"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5340848695014293 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.599 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "36"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5340848695014293 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.609  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@dc85836 -2023-10-27 13:52:18.610 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:18.615  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "56"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7798041286431635 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.615  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "56"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7798041286431635 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.616 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "56"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7798041286431635 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:18.623 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 167 ms -2023-10-27 13:52:20.435  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"} -2023-10-27 13:52:20.435  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"} -2023-10-27 13:52:20.435  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"},"inGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107","outGraph":"urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107"} -2023-10-27 13:52:20.476  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6da299fa -2023-10-27 13:52:20.477 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:20.478  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:20.478  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:20.485 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b538f13-2f1b-4b19-8bb8-c5b87157a265 -2023-10-27 13:52:20.485  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b538f13-2f1b-4b19-8bb8-c5b87157a265 found in urn:graph:398eedc2-2646-42d5-a99a-00ed1b199107 at http://localhost:8080/sparql -2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When did Allen Ginsberg die? -2023-10-27 13:52:20.487  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "When did Allen Ginsberg die?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+did+Allen+Ginsberg+die%3F&confidence=0.1 -2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+did+Allen+Ginsberg+die%3F&confidence=0.1 -2023-10-27 13:52:20.487 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:20.487  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=612253838 -2023-10-27 13:52:20.514 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@63656a3e -2023-10-27 13:52:20.514 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:20.515 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:20.515  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:20.515 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"When did Allen Ginsberg die?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.9192447693484681","percentageOfSecondRank":"0.043629522398460366"},{"URI":"http:\/\/dbpedia.org\/resource\/Allen_Ginsberg","support":"2049","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q36180,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Writer","surfaceForm":"Allen Ginsberg","offset":"9","similarityScore":"0.9999999999997442","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Dice","support":"2870","types":"","surfaceForm":"die","offset":"24","similarityScore":"0.7876966227304146","percentageOfSecondRank":"0.1268936124993669"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:20.515  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "When did Allen Ginsberg die?": <200,{"types":"","confidence":"0.1","text":"When did Allen Ginsberg die?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.9192447693484681","percentageOfSecondRank":"0.043629522398460366"},{"URI":"http:\/\/dbpedia.org\/resource\/Allen_Ginsberg","support":"2049","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q36180,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Writer","surfaceForm":"Allen Ginsberg","offset":"9","similarityScore":"0.9999999999997442","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Dice","support":"2870","types":"","surfaceForm":"die","offset":"24","similarityScore":"0.7876966227304146","percentageOfSecondRank":"0.1268936124993669"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:20 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=97", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:20.516 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Time at (0,4) -2023-10-27 13:52:20.516 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Allen_Ginsberg at (9,23) -2023-10-27 13:52:20.516 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Dice at (24,27) -2023-10-27 13:52:20.522 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b538f13-2f1b-4b19-8bb8-c5b87157a265 -2023-10-27 13:52:20.522  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@675af28a -2023-10-27 13:52:20.522 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:20.526  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9192447693484681 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.526  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9192447693484681 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.526 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9192447693484681 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.534  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22586005 -2023-10-27 13:52:20.534 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:20.537  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999997442 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.537  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999997442 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.537 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999997442 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.547  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b4c50fd -2023-10-27 13:52:20.547 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:20.548  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "27"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7876966227304146 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.549  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "27"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7876966227304146 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.549 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "27"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7876966227304146 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:20.555 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 120 ms -2023-10-27 13:52:23.294  INFO 28725 --- [io-10008-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"} -2023-10-27 13:52:23.294  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"} -2023-10-27 13:52:23.295  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"},"inGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0","outGraph":"urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0"} -2023-10-27 13:52:23.301  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65ab9915 -2023-10-27 13:52:23.301 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:23.302  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:23.302  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:23.311 DEBUG 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bc40b8ca-22b0-43f1-b4ae-5766ffe227bc -2023-10-27 13:52:23.311  INFO 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bc40b8ca-22b0-43f1-b4ae-5766ffe227bc found in urn:graph:557beb15-fca3-4f9f-be93-53b67adabca0 at http://localhost:8080/sparql -2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic? -2023-10-27 13:52:23.313  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Did+Rawson+Marshall+Thurber%2C+the+director+of+Red+Notice+also+direct+Titanic%3F&confidence=0.1 -2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Did+Rawson+Marshall+Thurber%2C+the+director+of+Red+Notice+also+direct+Titanic%3F&confidence=0.1 -2023-10-27 13:52:23.313 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:23.313  INFO 28725 --- [io-10008-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1474854843 -2023-10-27 13:52:23.343 DEBUG 28725 --- [io-10008-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6b6c6bd0 -2023-10-27 13:52:23.343 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:23.343 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:23.344  INFO 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Rawson_Marshall_Thurber","support":"41","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Rawson Marshall Thurber","offset":"4","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"director","offset":"33","similarityScore":"0.9935109066259407","percentageOfSecondRank":"0.0028499295491229756"},{"URI":"http:\/\/dbpedia.org\/resource\/Interpol_notice","support":"188","types":"","surfaceForm":"Red Notice","offset":"45","similarityScore":"0.952693397965474","percentageOfSecondRank":"0.049648248444500956"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"direct","offset":"61","similarityScore":"0.9944131801858351","percentageOfSecondRank":"0.0022430474175467487"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:23.344  WARN 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?": <200,{"types":"","confidence":"0.1","text":"Did Rawson Marshall Thurber, the director of Red Notice also direct Titanic?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Rawson_Marshall_Thurber","support":"41","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Rawson Marshall Thurber","offset":"4","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"director","offset":"33","similarityScore":"0.9935109066259407","percentageOfSecondRank":"0.0028499295491229756"},{"URI":"http:\/\/dbpedia.org\/resource\/Interpol_notice","support":"188","types":"","surfaceForm":"Red Notice","offset":"45","similarityScore":"0.952693397965474","percentageOfSecondRank":"0.049648248444500956"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"direct","offset":"61","similarityScore":"0.9944131801858351","percentageOfSecondRank":"0.0022430474175467487"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:23 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=96", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Rawson_Marshall_Thurber at (4,27) -2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Film_director at (33,41) -2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Interpol_notice at (45,55) -2023-10-27 13:52:23.344 DEBUG 28725 --- [io-10008-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Film_director at (61,67) -2023-10-27 13:52:23.351 DEBUG 28725 --- [io-10008-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bc40b8ca-22b0-43f1-b4ae-5766ffe227bc -2023-10-27 13:52:23.351  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f53f265 -2023-10-27 13:52:23.351 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:23.353  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "27"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.354  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "27"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.354 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "27"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.361  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a5161eb -2023-10-27 13:52:23.362 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:23.363  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9935109066259407 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.363  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9935109066259407 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.363 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9935109066259407 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.370  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@130b2685 -2023-10-27 13:52:23.370 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:23.371  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "45"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.952693397965474 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.372  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "45"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.952693397965474 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.372 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "45"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.952693397965474 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.380  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1bb1eddf -2023-10-27 13:52:23.380 DEBUG 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:23.382  INFO 28725 --- [io-10008-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "61"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9944131801858351 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.382  INFO 28725 --- [io-10008-exec-8] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "61"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9944131801858351 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.382 DEBUG 28725 --- [io-10008-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "61"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9944131801858351 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:23.388 DEBUG 28725 --- [io-10008-exec-8] e.w.q.component.QanaryServiceController  : processing took: 94 ms -2023-10-27 13:52:23.988  INFO 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"} -2023-10-27 13:52:23.988  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"} -2023-10-27 13:52:23.989  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"},"inGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8","outGraph":"urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8"} -2023-10-27 13:52:24.004  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d53732c -2023-10-27 13:52:24.004 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:24.006  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:24.006  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:24.014 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_15571e2d-6d21-470b-a97c-1e395e13c7da -2023-10-27 13:52:24.014  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_15571e2d-6d21-470b-a97c-1e395e13c7da found in urn:graph:8fa3af6c-e2c6-4f2e-97a9-42516dc50cb8 at http://localhost:8080/sparql -2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the coordinate location of Shenzhen ? -2023-10-27 13:52:24.016  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What is the coordinate location of Shenzhen ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+is+the+coordinate+location+of+Shenzhen+%3F&confidence=0.1 -2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+is+the+coordinate+location+of+Shenzhen+%3F&confidence=0.1 -2023-10-27 13:52:24.016 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:24.016  INFO 28725 --- [io-10008-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=657487733 -2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6b34f05b -2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:24.044  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:24.044 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What is the coordinate location of Shenzhen ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.848898628798749","percentageOfSecondRank":"0.16960161018835834"},{"URI":"http:\/\/dbpedia.org\/resource\/Coordinate_system","support":"2288","types":"","surfaceForm":"coordinate","offset":"12","similarityScore":"0.9654862683991126","percentageOfSecondRank":"0.017906224396750568"},{"URI":"http:\/\/dbpedia.org\/resource\/Location","support":"717","types":"","surfaceForm":"location","offset":"23","similarityScore":"0.7800701412643027","percentageOfSecondRank":"0.16029785187279852"},{"URI":"http:\/\/dbpedia.org\/resource\/Shenzhen","support":"5612","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Shenzhen","offset":"35","similarityScore":"0.9962300724760995","percentageOfSecondRank":"0.0030891484870061102"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:24.045  WARN 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "What is the coordinate location of Shenzhen ?": <200,{"types":"","confidence":"0.1","text":"What is the coordinate location of Shenzhen ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.848898628798749","percentageOfSecondRank":"0.16960161018835834"},{"URI":"http:\/\/dbpedia.org\/resource\/Coordinate_system","support":"2288","types":"","surfaceForm":"coordinate","offset":"12","similarityScore":"0.9654862683991126","percentageOfSecondRank":"0.017906224396750568"},{"URI":"http:\/\/dbpedia.org\/resource\/Location","support":"717","types":"","surfaceForm":"location","offset":"23","similarityScore":"0.7800701412643027","percentageOfSecondRank":"0.16029785187279852"},{"URI":"http:\/\/dbpedia.org\/resource\/Shenzhen","support":"5612","types":"Wikidata:Q515,Wikidata:Q486972,Schema:Place,Schema:City,DBpedia:Settlement,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:City","surfaceForm":"Shenzhen","offset":"35","similarityScore":"0.9962300724760995","percentageOfSecondRank":"0.0030891484870061102"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:23 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=95", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/String_theory at (0,4) -2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Coordinate_system at (12,22) -2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Location at (23,31) -2023-10-27 13:52:24.045 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Shenzhen at (35,43) -2023-10-27 13:52:24.051 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_15571e2d-6d21-470b-a97c-1e395e13c7da -2023-10-27 13:52:24.052  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d782402 -2023-10-27 13:52:24.052 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:24.053  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.848898628798749 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.054  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.848898628798749 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.054 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.848898628798749 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.063  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13c8f3f7 -2023-10-27 13:52:24.063 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:24.064  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "22"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9654862683991126 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.065  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "22"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9654862683991126 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.065 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "22"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9654862683991126 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.071  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c418658 -2023-10-27 13:52:24.071 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:24.072  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7800701412643027 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.073  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7800701412643027 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.073 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7800701412643027 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.082  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@703b0fa3 -2023-10-27 13:52:24.082 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:24.084  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9962300724760995 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.084  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9962300724760995 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.084 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9962300724760995 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:24.093 DEBUG 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : processing took: 105 ms -2023-10-27 13:52:30.225  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"} -2023-10-27 13:52:30.225  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"} -2023-10-27 13:52:30.226  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"},"inGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75","outGraph":"urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75"} -2023-10-27 13:52:30.237  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cfff4dd -2023-10-27 13:52:30.237 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:30.238  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:30.238  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:30.248 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_22ccb670-39f1-4a49-8bcb-c2d702495ede -2023-10-27 13:52:30.248  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_22ccb670-39f1-4a49-8bcb-c2d702495ede found in urn:graph:d941ef0f-b021-42b8-ae1c-a518c2a4eb75 at http://localhost:8080/sparql -2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many scholary articles have ImageNet as a subject? -2023-10-27 13:52:30.250  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many scholary articles have ImageNet as a subject?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+scholary+articles+have+ImageNet+as+a+subject%3F&confidence=0.1 -2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+scholary+articles+have+ImageNet+as+a+subject%3F&confidence=0.1 -2023-10-27 13:52:30.250 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:30.250  INFO 28725 --- [io-10008-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=524970162 -2023-10-27 13:52:30.326 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4728eef6 -2023-10-27 13:52:30.326 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:30.326 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:30.327  INFO 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many scholary articles have ImageNet as a subject?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Article_(grammar)","support":"4109","types":"","surfaceForm":"articles","offset":"18","similarityScore":"0.2920539084268482","percentageOfSecondRank":"0.8311226859318112"},{"URI":"http:\/\/dbpedia.org\/resource\/ImageNet","support":"46","types":"","surfaceForm":"ImageNet","offset":"32","similarityScore":"0.9999998612810782","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Subject_(grammar)","support":"3141","types":"","surfaceForm":"subject","offset":"46","similarityScore":"0.8903607032225217","percentageOfSecondRank":"0.04662432546818081"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:30.327  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "How many scholary articles have ImageNet as a subject?": <200,{"types":"","confidence":"0.1","text":"How many scholary articles have ImageNet as a subject?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Article_(grammar)","support":"4109","types":"","surfaceForm":"articles","offset":"18","similarityScore":"0.2920539084268482","percentageOfSecondRank":"0.8311226859318112"},{"URI":"http:\/\/dbpedia.org\/resource\/ImageNet","support":"46","types":"","surfaceForm":"ImageNet","offset":"32","similarityScore":"0.9999998612810782","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Subject_(grammar)","support":"3141","types":"","surfaceForm":"subject","offset":"46","similarityScore":"0.8903607032225217","percentageOfSecondRank":"0.04662432546818081"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:30 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/How_(TV_series) at (0,3) -2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Article_(grammar) at (18,26) -2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/ImageNet at (32,40) -2023-10-27 13:52:30.327 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Subject_(grammar) at (46,53) -2023-10-27 13:52:30.333 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_22ccb670-39f1-4a49-8bcb-c2d702495ede -2023-10-27 13:52:30.334  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3402a3d2 -2023-10-27 13:52:30.334 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:30.335  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.336  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.336 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.344  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@177a79dc -2023-10-27 13:52:30.344 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:30.346  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.2920539084268482 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.346  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.2920539084268482 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.346 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.2920539084268482 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.353  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@118525f7 -2023-10-27 13:52:30.353 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:30.355  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999998612810782 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.355  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999998612810782 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.355 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999998612810782 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.363  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11da266f -2023-10-27 13:52:30.363 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:30.364  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "46"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8903607032225217 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.365  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "46"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8903607032225217 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.365 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "46"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8903607032225217 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:30.371 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 146 ms -2023-10-27 13:52:31.502  INFO 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"} -2023-10-27 13:52:31.502  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"} -2023-10-27 13:52:31.502  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"},"inGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf","outGraph":"urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf"} -2023-10-27 13:52:31.511  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d11dda8 -2023-10-27 13:52:31.511 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:31.512  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:31.512  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:31.519 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_547d5df7-57ad-4b82-904d-fa73ee930b5d -2023-10-27 13:52:31.519  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_547d5df7-57ad-4b82-904d-fa73ee930b5d found in urn:graph:36861bed-2f5e-4ce7-af5c-d2cbcbd4b5cf at http://localhost:8080/sparql -2023-10-27 13:52:31.521 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation On how many albums does Mariah Carey perform? -2023-10-27 13:52:31.521  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "On how many albums does Mariah Carey perform?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:31.522 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=On+how+many+albums+does+Mariah+Carey+perform%3F&confidence=0.1 -2023-10-27 13:52:31.522 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=On+how+many+albums+does+Mariah+Carey+perform%3F&confidence=0.1 -2023-10-27 13:52:31.522 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:31.522  INFO 28725 --- [io-10008-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1325119793 -2023-10-27 13:52:31.553 DEBUG 28725 --- [io-10008-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16ec1b79 -2023-10-27 13:52:31.553 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:31.553 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:31.554  INFO 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"On how many albums does Mariah Carey perform?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Kanji","support":"4731","types":"","surfaceForm":"On","offset":"0","similarityScore":"0.8905064018119542","percentageOfSecondRank":"0.0744885023707854"},{"URI":"http:\/\/dbpedia.org\/resource\/Mariah_Carey","support":"4066","types":"","surfaceForm":"Mariah Carey","offset":"24","similarityScore":"0.9999999998445048","percentageOfSecondRank":"1.5122382745755918E-10"},{"URI":"http:\/\/dbpedia.org\/resource\/Performance","support":"2175","types":"","surfaceForm":"perform","offset":"37","similarityScore":"0.7838549142520009","percentageOfSecondRank":"0.16223532183690642"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:31.554  WARN 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "On how many albums does Mariah Carey perform?": <200,{"types":"","confidence":"0.1","text":"On how many albums does Mariah Carey perform?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Kanji","support":"4731","types":"","surfaceForm":"On","offset":"0","similarityScore":"0.8905064018119542","percentageOfSecondRank":"0.0744885023707854"},{"URI":"http:\/\/dbpedia.org\/resource\/Mariah_Carey","support":"4066","types":"","surfaceForm":"Mariah Carey","offset":"24","similarityScore":"0.9999999998445048","percentageOfSecondRank":"1.5122382745755918E-10"},{"URI":"http:\/\/dbpedia.org\/resource\/Performance","support":"2175","types":"","surfaceForm":"perform","offset":"37","similarityScore":"0.7838549142520009","percentageOfSecondRank":"0.16223532183690642"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:31 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=99", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Kanji at (0,2) -2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Mariah_Carey at (24,36) -2023-10-27 13:52:31.554 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Performance at (37,44) -2023-10-27 13:52:31.562 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_547d5df7-57ad-4b82-904d-fa73ee930b5d -2023-10-27 13:52:31.562  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c36d678 -2023-10-27 13:52:31.562 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:31.563  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "2"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8905064018119542 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.564  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "2"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8905064018119542 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.564 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "2"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8905064018119542 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.571  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e214e16 -2023-10-27 13:52:31.571 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:31.573  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999998445048 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.573  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999998445048 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.573 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999998445048 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.581  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d3e22e7 -2023-10-27 13:52:31.582 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:31.583  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7838549142520009 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.583  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7838549142520009 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.583 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7838549142520009 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:31.590 DEBUG 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : processing took: 88 ms -2023-10-27 13:52:36.521  INFO 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"} -2023-10-27 13:52:36.522  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"} -2023-10-27 13:52:36.522  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"},"inGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6","outGraph":"urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6"} -2023-10-27 13:52:36.529  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d4acd5d -2023-10-27 13:52:36.530 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:36.530  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:36.531  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:36.562 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b272ba5-d8c6-4a86-a027-52c7ec737736 -2023-10-27 13:52:36.562  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b272ba5-d8c6-4a86-a027-52c7ec737736 found in urn:graph:b3758aa6-7187-4143-b5b0-fcb69ffd98e6 at http://localhost:8080/sparql -2023-10-27 13:52:36.564 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who developed the Erlangen program? -2023-10-27 13:52:36.564  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Who developed the Erlangen program?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:52:36.564 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+developed+the+Erlangen+program%3F&confidence=0.1 -2023-10-27 13:52:36.565 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+developed+the+Erlangen+program%3F&confidence=0.1 -2023-10-27 13:52:36.565 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:52:36.565  INFO 28725 --- [io-10008-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-318718257 -2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@57b2a62d -2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:52:36.638  INFO 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:52:36.638 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Who developed the Erlangen program?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9438186953215656","percentageOfSecondRank":"0.040569676027693354"},{"URI":"http:\/\/dbpedia.org\/resource\/Video_game_developer","support":"2721","types":"","surfaceForm":"developed","offset":"4","similarityScore":"0.45975786681391356","percentageOfSecondRank":"0.7141146124704578"},{"URI":"http:\/\/dbpedia.org\/resource\/Erlangen_program","support":"93","types":"","surfaceForm":"Erlangen program","offset":"18","similarityScore":"0.9999999999998295","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:52:36.638  WARN 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Who developed the Erlangen program?": <200,{"types":"","confidence":"0.1","text":"Who developed the Erlangen program?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9438186953215656","percentageOfSecondRank":"0.040569676027693354"},{"URI":"http:\/\/dbpedia.org\/resource\/Video_game_developer","support":"2721","types":"","surfaceForm":"developed","offset":"4","similarityScore":"0.45975786681391356","percentageOfSecondRank":"0.7141146124704578"},{"URI":"http:\/\/dbpedia.org\/resource\/Erlangen_program","support":"93","types":"","surfaceForm":"Erlangen program","offset":"18","similarityScore":"0.9999999999998295","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:36 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:52:36.639 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/The_Who at (0,3) -2023-10-27 13:52:36.639 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Video_game_developer at (4,13) -2023-10-27 13:52:36.639 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Erlangen_program at (18,34) -2023-10-27 13:52:36.646 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b272ba5-d8c6-4a86-a027-52c7ec737736 -2023-10-27 13:52:36.646  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@12b022bf -2023-10-27 13:52:36.646 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:36.649  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9438186953215656 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.649  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9438186953215656 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.649 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9438186953215656 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.655  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@191b2591 -2023-10-27 13:52:36.655 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:36.657  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.45975786681391356 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.657  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.45975786681391356 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.658 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.45975786681391356 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.665  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@23e8f73e -2023-10-27 13:52:36.665 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:36.667  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999998295 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.667  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999998295 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.667 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999998295 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:36.674 DEBUG 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : processing took: 153 ms -2023-10-27 13:53:05.454  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:05.455  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:05.455  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:05.469  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@790715e9 -2023-10-27 13:53:05.469 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:05.470  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:05.471  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:05.487 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:05.487  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql -2023-10-27 13:53:05.490 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? -2023-10-27 13:53:05.491  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What did the suffragettes stand for?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:53:05.492 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+did+the+suffragettes+stand+for%3F&confidence=0.1 -2023-10-27 13:53:05.492 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+did+the+suffragettes+stand+for%3F&confidence=0.1 -2023-10-27 13:53:05.493 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:53:05.494  INFO 28725 --- [io-10008-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1128502799 -2023-10-27 13:53:05.570 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@c8eaa07 -2023-10-27 13:53:05.570 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:05.570 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:53:05.571  INFO 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:53:05.571 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What did the suffragettes stand for?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9080684937318582","percentageOfSecondRank":"0.08213457538187201"},{"URI":"http:\/\/dbpedia.org\/resource\/Suffragette","support":"1843","types":"Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Agent,DBpedia:Organisation","surfaceForm":"suffragettes","offset":"13","similarityScore":"0.9936260057364261","percentageOfSecondRank":"0.00381878544551761"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:53:05.571  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "What did the suffragettes stand for?": <200,{"types":"","confidence":"0.1","text":"What did the suffragettes stand for?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9080684937318582","percentageOfSecondRank":"0.08213457538187201"},{"URI":"http:\/\/dbpedia.org\/resource\/Suffragette","support":"1843","types":"Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Agent,DBpedia:Organisation","surfaceForm":"suffragettes","offset":"13","similarityScore":"0.9936260057364261","percentageOfSecondRank":"0.00381878544551761"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:53:05 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:53:05.571 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/String_theory at (0,4) -2023-10-27 13:53:05.571 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Suffragette at (13,25) -2023-10-27 13:53:05.579 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:05.580  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4de75e22 -2023-10-27 13:53:05.580 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:53:05.582  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9080684937318582 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:05.582  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9080684937318582 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:05.582 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9080684937318582 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:05.588  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4a19f5c -2023-10-27 13:53:05.588 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:53:05.590  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9936260057364261 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:05.590  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9936260057364261 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:05.590 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9936260057364261 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:05.597 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 143 ms -2023-10-27 13:53:56.262  INFO 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:56.262  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:56.262  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:56.270  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c4f6d92 -2023-10-27 13:53:56.270 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:56.270  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:56.271  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:56.279 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 -2023-10-27 13:53:56.279  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql -2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? -2023-10-27 13:53:56.281  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What is TNFAIP1 ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+is+TNFAIP1+%3F&confidence=0.1 -2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+is+TNFAIP1+%3F&confidence=0.1 -2023-10-27 13:53:56.281 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:53:56.281  INFO 28725 --- [io-10008-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1008774932 -2023-10-27 13:53:56.367 DEBUG 28725 --- [io-10008-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@10e10815 -2023-10-27 13:53:56.367 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:56.367 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:53:56.368  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:53:56.368 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What is TNFAIP1 ?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.903590836203973","percentageOfSecondRank":"0.09371359627225814"}},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:53:56.369  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : The web service response for 'What is TNFAIP1 ?' was empty. However, the JSON response was valid. -2023-10-27 13:53:56.369  WARN 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : nothing recognized for "What is TNFAIP1 ?": <200,{"types":"","confidence":"0.1","text":"What is TNFAIP1 ?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.903590836203973","percentageOfSecondRank":"0.09371359627225814"}},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:53:56 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:53:56.369 DEBUG 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : processing took: 107 ms -2023-10-27 13:54:23.742  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:23.742  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:23.742  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:23.756  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30e70bb5 -2023-10-27 13:54:23.757 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:23.757  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:23.757  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:23.765 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:23.765  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql -2023-10-27 13:54:23.766 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:23.766  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What are the German names of academic disciplines containing “linguistik”?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:54:23.767 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 -2023-10-27 13:54:23.767 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 -2023-10-27 13:54:23.767 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:54:23.767  INFO 28725 --- [io-10008-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-822409499 -2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4c050914 -2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:54:23.836  INFO 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:54:23.836 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What are the German names of academic disciplines containing \u201Clinguistik\u201D?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9163943050124096","percentageOfSecondRank":"0.07950895145913986"},{"URI":"http:\/\/dbpedia.org\/resource\/German_name","support":"266","types":"","surfaceForm":"German names","offset":"13","similarityScore":"0.9999999793085694","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Outline_of_academic_disciplines","support":"167","types":"","surfaceForm":"academic disciplines","offset":"29","similarityScore":"0.9987039161368536","percentageOfSecondRank":"0.0012977655012844157"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:54:23.836  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "What are the German names of academic disciplines containing “linguistik”?": <200,{"types":"","confidence":"0.1","text":"What are the German names of academic disciplines containing \u201Clinguistik\u201D?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9163943050124096","percentageOfSecondRank":"0.07950895145913986"},{"URI":"http:\/\/dbpedia.org\/resource\/German_name","support":"266","types":"","surfaceForm":"German names","offset":"13","similarityScore":"0.9999999793085694","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Outline_of_academic_disciplines","support":"167","types":"","surfaceForm":"academic disciplines","offset":"29","similarityScore":"0.9987039161368536","percentageOfSecondRank":"0.0012977655012844157"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:54:23 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:54:23.837 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/String_theory at (0,4) -2023-10-27 13:54:23.837 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/German_name at (13,25) -2023-10-27 13:54:23.837 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Outline_of_academic_disciplines at (29,49) -2023-10-27 13:54:23.844 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:23.844  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c2ca7a5 -2023-10-27 13:54:23.844 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:23.846  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9163943050124096 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.846  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9163943050124096 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.846 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9163943050124096 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.852  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49ebf36 -2023-10-27 13:54:23.852 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:23.853  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999793085694 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.854  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999793085694 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.854 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999793085694 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.862  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49436f09 -2023-10-27 13:54:23.862 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:23.863  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9987039161368536 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.863  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9987039161368536 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.863 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9987039161368536 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.870 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 128 ms -2023-10-27 13:54:34.153  INFO 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.153  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.153  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.163  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61a9aea0 -2023-10-27 13:54:34.163 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:34.164  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.164  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.189 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 -2023-10-27 13:54:34.189  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql -2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? -2023-10-27 13:54:34.192  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many things are part of the "One Piece" Franchise?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F&confidence=0.1 -2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F&confidence=0.1 -2023-10-27 13:54:34.192 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:54:34.193  INFO 28725 --- [io-10008-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-415470739 -2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@32e8599f -2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:54:34.262  INFO 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:54:34.262 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many things are part of the \"One Piece\" Franchise?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643751403"},{"URI":"http:\/\/dbpedia.org\/resource\/One_Piece","support":"1742","types":"Wikidata:Q8274,Wikidata:Q386724,Wikidata:Q245068,Wikidata:Q234460,Schema:CreativeWork,DBpedia:WrittenWork,DBpedia:Work,DBpedia:Comic,DBpedia:Manga","surfaceForm":"One Piece","offset":"33","similarityScore":"0.9999905828971725","percentageOfSecondRank":"9.366625940786954E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Franchising","support":"2226","types":"","surfaceForm":"Franchise","offset":"44","similarityScore":"0.9613956253946947","percentageOfSecondRank":"0.02985893960630292"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:54:34.262  WARN 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "How many things are part of the "One Piece" Franchise?": <200,{"types":"","confidence":"0.1","text":"How many things are part of the \"One Piece\" Franchise?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643751403"},{"URI":"http:\/\/dbpedia.org\/resource\/One_Piece","support":"1742","types":"Wikidata:Q8274,Wikidata:Q386724,Wikidata:Q245068,Wikidata:Q234460,Schema:CreativeWork,DBpedia:WrittenWork,DBpedia:Work,DBpedia:Comic,DBpedia:Manga","surfaceForm":"One Piece","offset":"33","similarityScore":"0.9999905828971725","percentageOfSecondRank":"9.366625940786954E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Franchising","support":"2226","types":"","surfaceForm":"Franchise","offset":"44","similarityScore":"0.9613956253946947","percentageOfSecondRank":"0.02985893960630292"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:54:34 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:54:34.263 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/How_2 at (0,3) -2023-10-27 13:54:34.263 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/One_Piece at (33,42) -2023-10-27 13:54:34.263 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Franchising at (44,53) -2023-10-27 13:54:34.270 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 -2023-10-27 13:54:34.271  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@565d19fb -2023-10-27 13:54:34.271 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:34.273  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7274040260671994 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.274  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7274040260671994 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.274 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7274040260671994 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.285  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7aad613e -2023-10-27 13:54:34.285 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:34.287  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999905828971725 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.287  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999905828971725 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.287 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999905828971725 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.295  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76d143c6 -2023-10-27 13:54:34.295 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:34.297  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "44"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9613956253946947 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.297  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "44"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9613956253946947 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.297 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "44"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9613956253946947 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:34.304 DEBUG 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : processing took: 151 ms -2023-10-27 13:57:49.514  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:49.543  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:49.544  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:49.653  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@464840bc -2023-10-27 13:57:49.657 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:49.687  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:49.688  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:49.747 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:49.747  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql -2023-10-27 13:57:49.766 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? -2023-10-27 13:57:49.766  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many movies does the Scream franchise have?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:57:49.768 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+does+the+Scream+franchise+have%3F&confidence=0.1 -2023-10-27 13:57:49.773 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+does+the+Scream+franchise+have%3F&confidence=0.1 -2023-10-27 13:57:49.774 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:57:49.784  INFO 28725 --- [io-10008-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=404956697 -2023-10-27 13:57:49.935 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@480e5b71 -2023-10-27 13:57:49.935 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:49.936 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:57:49.942  INFO 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:57:49.944 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many movies does the Scream franchise have?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643750376"},{"URI":"http:\/\/dbpedia.org\/resource\/Scream_(franchise)","support":"247","types":"","surfaceForm":"Scream franchise","offset":"25","similarityScore":"0.9999999494800716","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:57:49.945  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "How many movies does the Scream franchise have?": <200,{"types":"","confidence":"0.1","text":"How many movies does the Scream franchise have?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_2","support":"30","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.7274040260671994","percentageOfSecondRank":"0.36207568643750376"},{"URI":"http:\/\/dbpedia.org\/resource\/Scream_(franchise)","support":"247","types":"","surfaceForm":"Scream franchise","offset":"25","similarityScore":"0.9999999494800716","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:57:49 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:57:49.946 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/How_2 at (0,3) -2023-10-27 13:57:49.946 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Scream_(franchise) at (25,41) -2023-10-27 13:57:49.954 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:49.957  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40dd7653 -2023-10-27 13:57:49.957 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:49.963  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7274040260671994 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:49.964  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7274040260671994 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:49.964 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7274040260671994 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:49.973  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44148354 -2023-10-27 13:57:49.974 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:49.977  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999494800716 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:49.978  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999494800716 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:49.978 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999494800716 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:49.988 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 455 ms -2023-10-27 13:58:04.338  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:04.338  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:04.338  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:04.416  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b72f533 -2023-10-27 13:58:04.416 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:04.417  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:04.418  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:04.424 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:04.425  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql -2023-10-27 13:58:04.428 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:04.428  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Who is the oldest cast member of the Netflix show “Queer Eye” ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 13:58:04.428 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+is+the+oldest+cast+member+of+the+Netflix+show+%E2%80%9CQueer+Eye%E2%80%9D+%3F&confidence=0.1 -2023-10-27 13:58:04.429 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+is+the+oldest+cast+member+of+the+Netflix+show+%E2%80%9CQueer+Eye%E2%80%9D+%3F&confidence=0.1 -2023-10-27 13:58:04.429 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:58:04.430  INFO 28725 --- [io-10008-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=849537852 -2023-10-27 13:58:04.526 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@afd4518 -2023-10-27 13:58:04.526 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:04.526 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:58:04.527  INFO 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:58:04.527 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Who is the oldest cast member of the Netflix show \u201CQueer Eye\u201D ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9794783090805582","percentageOfSecondRank":"0.013722891902927413"},{"URI":"http:\/\/dbpedia.org\/resource\/Casting","support":"1454","types":"","surfaceForm":"cast","offset":"18","similarityScore":"0.5942742748907281","percentageOfSecondRank":"0.3553503799296916"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"23","similarityScore":"0.8647330455124939","percentageOfSecondRank":"0.08640125357159367"},{"URI":"http:\/\/dbpedia.org\/resource\/Netflix","support":"15512","types":"","surfaceForm":"Netflix","offset":"37","similarityScore":"0.9999999951971574","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Queer_Eye","support":"279","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"Queer Eye","offset":"51","similarityScore":"0.9999999779308271","percentageOfSecondRank":"2.2069162187046626E-8"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 13:58:04.528  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Who is the oldest cast member of the Netflix show “Queer Eye” ?": <200,{"types":"","confidence":"0.1","text":"Who is the oldest cast member of the Netflix show \u201CQueer Eye\u201D ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9794783090805582","percentageOfSecondRank":"0.013722891902927413"},{"URI":"http:\/\/dbpedia.org\/resource\/Casting","support":"1454","types":"","surfaceForm":"cast","offset":"18","similarityScore":"0.5942742748907281","percentageOfSecondRank":"0.3553503799296916"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"23","similarityScore":"0.8647330455124939","percentageOfSecondRank":"0.08640125357159367"},{"URI":"http:\/\/dbpedia.org\/resource\/Netflix","support":"15512","types":"","surfaceForm":"Netflix","offset":"37","similarityScore":"0.9999999951971574","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Queer_Eye","support":"279","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"Queer Eye","offset":"51","similarityScore":"0.9999999779308271","percentageOfSecondRank":"2.2069162187046626E-8"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:58:04 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/The_Who at (0,3) -2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Casting at (18,22) -2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Member_of_parliament at (23,29) -2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Netflix at (37,44) -2023-10-27 13:58:04.529 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Queer_Eye at (51,60) -2023-10-27 13:58:04.535 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:04.536  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@453ba599 -2023-10-27 13:58:04.536 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:04.539  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9794783090805582 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.539  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9794783090805582 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.539 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9794783090805582 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.548  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@92c0b60 -2023-10-27 13:58:04.548 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:04.550  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "22"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5942742748907281 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.550  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "22"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5942742748907281 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.550 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "22"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5942742748907281 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.557  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e866619 -2023-10-27 13:58:04.558 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:04.560  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8647330455124939 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.561  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8647330455124939 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.561 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8647330455124939 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.569  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@eb33b54 -2023-10-27 13:58:04.570 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:04.573  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999951971574 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.573  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999951971574 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.573 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999951971574 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.582  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16bc5076 -2023-10-27 13:58:04.582 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:04.585  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "51"^^xsd:nonNegativeInteger . - _:b1 oa:end "60"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999779308271 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.585  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "51"^^xsd:nonNegativeInteger . - _:b1 oa:end "60"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999779308271 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.585 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "51"^^xsd:nonNegativeInteger . - _:b1 oa:end "60"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999779308271 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:04.591 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 253 ms -2023-10-27 14:00:40.548  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.548  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.549  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.585  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13b0e530 -2023-10-27 14:00:40.585 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:40.586  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:40.586  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:40.592 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:40.593  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql -2023-10-27 14:00:40.594 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? -2023-10-27 14:00:40.594  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many movies were directed by Akira Kurosawa ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:00:40.595 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&confidence=0.1 -2023-10-27 14:00:40.595 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&confidence=0.1 -2023-10-27 14:00:40.595 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:00:40.595  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-827169913 -2023-10-27 14:00:40.684 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@42779f4a -2023-10-27 14:00:40.684 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:40.684 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:00:40.684  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many movies were directed by Akira Kurosawa ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"directed","offset":"21","similarityScore":"0.9998732497684211","percentageOfSecondRank":"3.78019656320863E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Akira_Kurosawa","support":"1212","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Akira Kurosawa","offset":"33","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:00:40.685  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "How many movies were directed by Akira Kurosawa ?": <200,{"types":"","confidence":"0.1","text":"How many movies were directed by Akira Kurosawa ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Film_director","support":"17791","types":"","surfaceForm":"directed","offset":"21","similarityScore":"0.9998732497684211","percentageOfSecondRank":"3.78019656320863E-5"},{"URI":"http:\/\/dbpedia.org\/resource\/Akira_Kurosawa","support":"1212","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"Akira Kurosawa","offset":"33","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:00:40 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/How_(TV_series) at (0,3) -2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Film_director at (21,29) -2023-10-27 14:00:40.685 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Akira_Kurosawa at (33,47) -2023-10-27 14:00:40.690 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:40.690  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7b05e441 -2023-10-27 14:00:40.690 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:00:40.691  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.691  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.692 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.699  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f080774 -2023-10-27 14:00:40.699 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:00:40.700  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9998732497684211 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.701  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9998732497684211 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.701 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9998732497684211 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.706  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@384ae400 -2023-10-27 14:00:40.706 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:00:40.708  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.708  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.708 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.718 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 170 ms -2023-10-27 14:03:01.026  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.027  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.027  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.109  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fa23eca -2023-10-27 14:03:01.109 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:01.111  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:01.112  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:01.139 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:01.139  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql -2023-10-27 14:03:01.142 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:01.142  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:03:01.143 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 -2023-10-27 14:03:01.143 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=who+has+won+more+NBA+awards%2C+Michael+Jordan+or+Kobe+Bean+Bryant%EF%BC%9F&confidence=0.1 -2023-10-27 14:03:01.143 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:01.224 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@72356d8 -2023-10-27 14:03:01.225 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:01.225 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:03:01.226  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:03:01.227 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:03:01.229  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 6 resources recognized for "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?": <200,{"types":"","confidence":"0.1","text":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/South_Korean_won","support":"868","types":"DBpedia:Currency","surfaceForm":"won","offset":"8","similarityScore":"0.9871424863560028","percentageOfSecondRank":"0.010413472831868647"},{"URI":"http:\/\/dbpedia.org\/resource\/National_Basketball_Association","support":"37554","types":"Wikidata:Q623109,Wikidata:Q43229,Wikidata:Q24229398,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:SportsLeague,DBpedia:Organisation,DBpedia:Agent,DBpedia:BasketballLeague","surfaceForm":"NBA","offset":"17","similarityScore":"0.9982751030641623","percentageOfSecondRank":"9.355278857822242E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Michael_Jordan","support":"4066","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Michael Jordan","offset":"29","similarityScore":"0.9999981796071551","percentageOfSecondRank":"1.8203961075367774E-6"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"47","similarityScore":"0.9988244763302297","percentageOfSecondRank":"0.0011769070794117272"},{"URI":"http:\/\/dbpedia.org\/resource\/Bean","support":"2814","types":"","surfaceForm":"Bean","offset":"52","similarityScore":"0.9513692458761086","percentageOfSecondRank":"0.05111413467648018"},{"URI":"http:\/\/dbpedia.org\/resource\/Kobe_Bryant","support":"3650","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"57","similarityScore":"0.9999997963240682","percentageOfSecondRank":"2.036753748459949E-7"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 11:52:13 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 5): http://dbpedia.org/resource/South_Korean_won at (8,11) -2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 5): http://dbpedia.org/resource/National_Basketball_Association at (17,20) -2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 5): http://dbpedia.org/resource/Michael_Jordan at (29,43) -2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 5): http://dbpedia.org/resource/Kobe_Bryant at (47,51) -2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 5): http://dbpedia.org/resource/Bean at (52,56) -2023-10-27 14:03:01.230 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (5 of 5): http://dbpedia.org/resource/Kobe_Bryant at (57,63) -2023-10-27 14:03:01.238 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:01.238  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72fa9b8b -2023-10-27 14:03:01.239 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:01.242  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9871424863560028 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.242  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9871424863560028 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.243 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9871424863560028 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.252  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5890a8a0 -2023-10-27 14:03:01.253 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:01.255  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9982751030641623 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.256  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9982751030641623 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.256 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9982751030641623 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.265  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32876920 -2023-10-27 14:03:01.266 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:01.269  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999981796071551 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.270  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999981796071551 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.270 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999981796071551 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.277  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@294bf578 -2023-10-27 14:03:01.278 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:01.281  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988244763302297 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.282  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988244763302297 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.283 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988244763302297 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.292  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fcb1519 -2023-10-27 14:03:01.293 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:01.297  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "52"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9513692458761086 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.297  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "52"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9513692458761086 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.297 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "52"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9513692458761086 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.306  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@524379e8 -2023-10-27 14:03:01.306 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:01.309  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "57"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999997963240682 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.310  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "57"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999997963240682 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.310 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "57"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999997963240682 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.320 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 293 ms -2023-10-27 14:03:07.837  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:07.837  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:07.838  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:07.946  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4639a18c -2023-10-27 14:03:07.946 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:07.949  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:07.949  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:07.958 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf -2023-10-27 14:03:07.959  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql -2023-10-27 14:03:07.961 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? -2023-10-27 14:03:07.961  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "Which animal participated in a military operation with the Australian Defence Force?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:03:07.961 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&confidence=0.1 -2023-10-27 14:03:07.961 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&confidence=0.1 -2023-10-27 14:03:07.962 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:07.962  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=311124984 -2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3dd6e46c -2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:03:08.055  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:03:08.055 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"Which animal participated in a military operation with the Australian Defence Force?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Animal","support":"6891","types":"","surfaceForm":"animal","offset":"6","similarityScore":"0.9976860064269304","percentageOfSecondRank":"9.095230306847032E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/World_War_II_by_country","support":"255","types":"","surfaceForm":"participated","offset":"13","similarityScore":"0.7748438370930263","percentageOfSecondRank":"0.07694255204149524"},{"URI":"http:\/\/dbpedia.org\/resource\/Military_operation","support":"1641","types":"","surfaceForm":"military operation","offset":"31","similarityScore":"0.9988028023598351","percentageOfSecondRank":"5.312097700293826E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Australian_Defence_Force","support":"1600","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q176799,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Organisation,DBpedia:Agent,DBpedia:MilitaryUnit","surfaceForm":"Australian Defence Force","offset":"59","similarityScore":"0.9999960921043443","percentageOfSecondRank":"3.9079109235556665E-6"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:03:08.055  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Which animal participated in a military operation with the Australian Defence Force?": <200,{"types":"","confidence":"0.1","text":"Which animal participated in a military operation with the Australian Defence Force?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http:\/\/dbpedia.org\/resource\/Animal","support":"6891","types":"","surfaceForm":"animal","offset":"6","similarityScore":"0.9976860064269304","percentageOfSecondRank":"9.095230306847032E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/World_War_II_by_country","support":"255","types":"","surfaceForm":"participated","offset":"13","similarityScore":"0.7748438370930263","percentageOfSecondRank":"0.07694255204149524"},{"URI":"http:\/\/dbpedia.org\/resource\/Military_operation","support":"1641","types":"","surfaceForm":"military operation","offset":"31","similarityScore":"0.9988028023598351","percentageOfSecondRank":"5.312097700293826E-4"},{"URI":"http:\/\/dbpedia.org\/resource\/Australian_Defence_Force","support":"1600","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q176799,DUL:SocialPerson,DUL:Agent,Schema:Organization,DBpedia:Organisation,DBpedia:Agent,DBpedia:MilitaryUnit","surfaceForm":"Australian Defence Force","offset":"59","similarityScore":"0.9999960921043443","percentageOfSecondRank":"3.9079109235556665E-6"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:03:08 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/Langues_d'oïl at (0,5) -2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Animal at (6,12) -2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/World_War_II_by_country at (13,25) -2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Military_operation at (31,49) -2023-10-27 14:03:08.056 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Australian_Defence_Force at (59,83) -2023-10-27 14:03:08.062 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf -2023-10-27 14:03:08.062  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52d36d32 -2023-10-27 14:03:08.062 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:08.067  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8956483894223672 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.068  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8956483894223672 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.068 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8956483894223672 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.073  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@59ed9325 -2023-10-27 14:03:08.074 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:08.075  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "12"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9976860064269304 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.075  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "12"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9976860064269304 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.075 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "12"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9976860064269304 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.082  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18f187bc -2023-10-27 14:03:08.083 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:08.084  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7748438370930263 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.084  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7748438370930263 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.084 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.7748438370930263 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.090  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@128ef54a -2023-10-27 14:03:08.090 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:08.091  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988028023598351 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.092  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988028023598351 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.092 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988028023598351 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.099  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5bfda0d4 -2023-10-27 14:03:08.099 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:03:08.101  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "83"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999960921043443 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.102  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "83"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999960921043443 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.102 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "83"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999960921043443 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.111 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 274 ms -2023-10-27 14:03:47.620  INFO 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:47.620  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:47.620  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:47.702  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d49b993 -2023-10-27 14:03:47.702 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:47.702  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:47.703  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:47.709 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 -2023-10-27 14:03:47.709  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql -2023-10-27 14:03:47.710 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? -2023-10-27 14:03:47.711  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "who is the youngested member in g-idle?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:03:47.711 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=who+is+the+youngested+member+in+g-idle%3F&confidence=0.1 -2023-10-27 14:03:47.711 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=who+is+the+youngested+member+in+g-idle%3F&confidence=0.1 -2023-10-27 14:03:47.711 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:47.711  INFO 28725 --- [o-10008-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=777548155 -2023-10-27 14:03:47.798 DEBUG 28725 --- [o-10008-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67b1d2e3 -2023-10-27 14:03:47.798 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:47.799 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:03:47.799  INFO 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:03:47.799 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"who is the youngested member in g-idle?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"22","similarityScore":"0.8544546570249796","percentageOfSecondRank":"0.11873696956800564"}},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:03:47.800  INFO 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : The web service response for 'who is the youngested member in g-idle?' was empty. However, the JSON response was valid. -2023-10-27 14:03:47.800  WARN 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : nothing recognized for "who is the youngested member in g-idle?": <200,{"types":"","confidence":"0.1","text":"who is the youngested member in g-idle?","Resources":{"Resource":{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"member","offset":"22","similarityScore":"0.8544546570249796","percentageOfSecondRank":"0.11873696956800564"}},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:03:47 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:03:47.800 DEBUG 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : processing took: 180 ms -2023-10-27 14:04:06.099  INFO 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:06.100  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:06.100  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:06.110  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7bffd7ea -2023-10-27 14:04:06.110 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:06.111  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:06.111  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:06.119 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:06.119  INFO 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql -2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? -2023-10-27 14:04:06.121  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "When was Rumi born?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 -2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 -2023-10-27 14:04:06.121 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:04:06.121  INFO 28725 --- [io-10008-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1680371682 -2023-10-27 14:04:06.210 DEBUG 28725 --- [io-10008-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7525e631 -2023-10-27 14:04:06.210 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:04:06.210 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:04:06.211  INFO 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"When was Rumi born?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.89590991274047","percentageOfSecondRank":"0.05696410439286022"},{"URI":"http:\/\/dbpedia.org\/resource\/Rumi","support":"1111","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q2566598,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Religious","surfaceForm":"Rumi","offset":"9","similarityScore":"0.9981752230789295","percentageOfSecondRank":"0.00143775838733992"},{"URI":"http:\/\/dbpedia.org\/resource\/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"14","similarityScore":"0.4669742058601906","percentageOfSecondRank":"0.390265943553758"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:04:06.211  WARN 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "When was Rumi born?": <200,{"types":"","confidence":"0.1","text":"When was Rumi born?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.89590991274047","percentageOfSecondRank":"0.05696410439286022"},{"URI":"http:\/\/dbpedia.org\/resource\/Rumi","support":"1111","types":"Http:\/\/xmlns.com\/foaf\/0.1\/Person,Wikidata:Q5,Wikidata:Q2566598,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Religious","surfaceForm":"Rumi","offset":"9","similarityScore":"0.9981752230789295","percentageOfSecondRank":"0.00143775838733992"},{"URI":"http:\/\/dbpedia.org\/resource\/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"14","similarityScore":"0.4669742058601906","percentageOfSecondRank":"0.390265943553758"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:04:06 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Time at (0,4) -2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Rumi at (9,13) -2023-10-27 14:04:06.211 DEBUG 28725 --- [io-10008-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Childbirth at (14,18) -2023-10-27 14:04:06.217 DEBUG 28725 --- [io-10008-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:06.218  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@970db68 -2023-10-27 14:04:06.218 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:06.219  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.89590991274047 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.219  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.89590991274047 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.219 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.89590991274047 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.225  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cb51d2b -2023-10-27 14:04:06.225 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:06.226  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9981752230789295 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.227  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9981752230789295 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.227 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9981752230789295 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.234  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1f69d0d5 -2023-10-27 14:04:06.234 DEBUG 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:06.235  INFO 28725 --- [io-10008-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.4669742058601906 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.235  INFO 28725 --- [io-10008-exec-2] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.4669742058601906 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.235 DEBUG 28725 --- [io-10008-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.4669742058601906 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.241 DEBUG 28725 --- [io-10008-exec-2] e.w.q.component.QanaryServiceController  : processing took: 141 ms -2023-10-27 14:04:14.265  INFO 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:14.265  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:14.265  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:14.277  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@299cb972 -2023-10-27 14:04:14.277 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:14.278  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:14.278  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:14.285 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd -2023-10-27 14:04:14.285  INFO 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql -2023-10-27 14:04:14.286 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? -2023-10-27 14:04:14.286  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What are the titles of the Star Wars series movies?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:04:14.286 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+titles+of+the+Star+Wars+series+movies%3F&confidence=0.1 -2023-10-27 14:04:14.287 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+titles+of+the+Star+Wars+series+movies%3F&confidence=0.1 -2023-10-27 14:04:14.287 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:04:14.287  INFO 28725 --- [io-10008-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=590740854 -2023-10-27 14:04:14.376 DEBUG 28725 --- [io-10008-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7d4386bb -2023-10-27 14:04:14.376 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:04:14.376 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:04:14.377  INFO 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:04:14.377 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What are the titles of the Star Wars series movies?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.8963853949271124","percentageOfSecondRank":"0.0964307397389478"},{"URI":"http:\/\/dbpedia.org\/resource\/Star_Wars","support":"12318","types":"","surfaceForm":"Star Wars","offset":"27","similarityScore":"0.9988338397513731","percentageOfSecondRank":"0.0010522775858442745"},{"URI":"http:\/\/dbpedia.org\/resource\/Television_show","support":"19172","types":"","surfaceForm":"series","offset":"37","similarityScore":"0.9412726722103787","percentageOfSecondRank":"0.024803508522485185"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:04:14.377  WARN 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "What are the titles of the Star Wars series movies?": <200,{"types":"","confidence":"0.1","text":"What are the titles of the Star Wars series movies?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.8963853949271124","percentageOfSecondRank":"0.0964307397389478"},{"URI":"http:\/\/dbpedia.org\/resource\/Star_Wars","support":"12318","types":"","surfaceForm":"Star Wars","offset":"27","similarityScore":"0.9988338397513731","percentageOfSecondRank":"0.0010522775858442745"},{"URI":"http:\/\/dbpedia.org\/resource\/Television_show","support":"19172","types":"","surfaceForm":"series","offset":"37","similarityScore":"0.9412726722103787","percentageOfSecondRank":"0.024803508522485185"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:04:14 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:04:14.377 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/String_theory at (0,4) -2023-10-27 14:04:14.378 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Star_Wars at (27,36) -2023-10-27 14:04:14.378 DEBUG 28725 --- [io-10008-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Television_show at (37,43) -2023-10-27 14:04:14.382 DEBUG 28725 --- [io-10008-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd -2023-10-27 14:04:14.383  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@940b580 -2023-10-27 14:04:14.383 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:14.384  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8963853949271124 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.385  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8963853949271124 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.385 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8963853949271124 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.391  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45dbcaf3 -2023-10-27 14:04:14.391 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:14.392  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988338397513731 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.393  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988338397513731 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.393 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9988338397513731 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.398  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68deda1c -2023-10-27 14:04:14.398 DEBUG 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:14.400  INFO 28725 --- [io-10008-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9412726722103787 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.400  INFO 28725 --- [io-10008-exec-3] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9412726722103787 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.400 DEBUG 28725 --- [io-10008-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9412726722103787 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.405 DEBUG 28725 --- [io-10008-exec-3] e.w.q.component.QanaryServiceController  : processing took: 140 ms -2023-10-27 14:05:30.736  INFO 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:30.737  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:30.737  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:30.747  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c17897f -2023-10-27 14:05:30.748 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:30.748  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:30.749  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:30.754 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:30.754  INFO 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql -2023-10-27 14:05:30.756 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 14:05:30.757  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "in which language does the united stated have the shortest short name?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:05:30.757 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 -2023-10-27 14:05:30.757 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 -2023-10-27 14:05:30.757 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:05:30.757  INFO 28725 --- [io-10008-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-996304361 -2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1fc90623 -2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:05:30.864  INFO 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:05:30.864 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"in which language does the united stated have the shortest short name?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Language","support":"21994","types":"","surfaceForm":"language","offset":"9","similarityScore":"0.9742593246572685","percentageOfSecondRank":"0.01094758442766131"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"united stated","offset":"27","similarityScore":"0.9999999994779074","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Short_film","support":"11379","types":"","surfaceForm":"short","offset":"59","similarityScore":"0.9774975252379949","percentageOfSecondRank":"0.011209388443481693"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:05:30.864  WARN 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "in which language does the united stated have the shortest short name?": <200,{"types":"","confidence":"0.1","text":"in which language does the united stated have the shortest short name?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Language","support":"21994","types":"","surfaceForm":"language","offset":"9","similarityScore":"0.9742593246572685","percentageOfSecondRank":"0.01094758442766131"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"united stated","offset":"27","similarityScore":"0.9999999994779074","percentageOfSecondRank":"0.0"},{"URI":"http:\/\/dbpedia.org\/resource\/Short_film","support":"11379","types":"","surfaceForm":"short","offset":"59","similarityScore":"0.9774975252379949","percentageOfSecondRank":"0.011209388443481693"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:05:30 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:05:30.865 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Language at (9,17) -2023-10-27 14:05:30.865 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/United_States at (27,40) -2023-10-27 14:05:30.865 DEBUG 28725 --- [io-10008-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Short_film at (59,64) -2023-10-27 14:05:30.869 DEBUG 28725 --- [io-10008-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:30.869  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f7528d4 -2023-10-27 14:05:30.869 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:05:30.870  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9742593246572685 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.871  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9742593246572685 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.871 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9742593246572685 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.876  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@188d9607 -2023-10-27 14:05:30.876 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:05:30.877  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999994779074 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.877  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999994779074 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.878 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999994779074 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.883  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f0f0c49 -2023-10-27 14:05:30.883 DEBUG 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:05:30.885  INFO 28725 --- [io-10008-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9774975252379949 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.885  INFO 28725 --- [io-10008-exec-9] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9774975252379949 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.885 DEBUG 28725 --- [io-10008-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9774975252379949 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:30.891 DEBUG 28725 --- [io-10008-exec-9] e.w.q.component.QanaryServiceController  : processing took: 155 ms -2023-10-27 14:08:25.927  INFO 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:25.928  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:25.929  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:25.949  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22b35071 -2023-10-27 14:08:25.950 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:25.953  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:25.954  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:25.961 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:25.961  INFO 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql -2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 14:08:25.963  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "How many countries have never been members of the UN?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+countries+have+never+been+members+of+the+UN%3F&confidence=0.1 -2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+countries+have+never+been+members+of+the+UN%3F&confidence=0.1 -2023-10-27 14:08:25.963 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:08:25.963  INFO 28725 --- [o-10008-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=680584588 -2023-10-27 14:08:26.083 DEBUG 28725 --- [o-10008-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@13dbb687 -2023-10-27 14:08:26.084 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:26.084 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:08:26.085  INFO 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"How many countries have never been members of the UN?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"members","offset":"35","similarityScore":"0.8842831295006407","percentageOfSecondRank":"0.10859340190053006"},{"URI":"http:\/\/dbpedia.org\/resource\/United_Nations","support":"62254","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"UN","offset":"50","similarityScore":"0.9995876881324613","percentageOfSecondRank":"2.1951930462405043E-4"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:08:26.086  WARN 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "How many countries have never been members of the UN?": <200,{"types":"","confidence":"0.1","text":"How many countries have never been members of the UN?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http:\/\/dbpedia.org\/resource\/Member_of_parliament","support":"40858","types":"","surfaceForm":"members","offset":"35","similarityScore":"0.8842831295006407","percentageOfSecondRank":"0.10859340190053006"},{"URI":"http:\/\/dbpedia.org\/resource\/United_Nations","support":"62254","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"UN","offset":"50","similarityScore":"0.9995876881324613","percentageOfSecondRank":"2.1951930462405043E-4"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:08:26 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/How_(TV_series) at (0,3) -2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Member_of_parliament at (35,42) -2023-10-27 14:08:26.086 DEBUG 28725 --- [o-10008-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/United_Nations at (50,52) -2023-10-27 14:08:26.092 DEBUG 28725 --- [o-10008-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:26.092  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a1448d5 -2023-10-27 14:08:26.092 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:26.094  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.094  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.094 DEBUG 28725 --- [o-10008-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8927646989181806 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.100  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@429caf3e -2023-10-27 14:08:26.101 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:26.102  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8842831295006407 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.103  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8842831295006407 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.103 DEBUG 28725 --- [o-10008-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.8842831295006407 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.108  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@77bbfda0 -2023-10-27 14:08:26.109 DEBUG 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:26.110  INFO 28725 --- [o-10008-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9995876881324613 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.110  INFO 28725 --- [o-10008-exec-10] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9995876881324613 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.110 DEBUG 28725 --- [o-10008-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9995876881324613 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.115 DEBUG 28725 --- [o-10008-exec-10] e.w.q.component.QanaryServiceController  : processing took: 187 ms -2023-10-27 14:08:30.322  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:08:30.322  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:08:30.322  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:08:30.334  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2dea829c -2023-10-27 14:08:30.334 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:30.335  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:30.335  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:30.343 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 -2023-10-27 14:08:30.343  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql -2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? -2023-10-27 14:08:30.345  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F&confidence=0.1 -2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F&confidence=0.1 -2023-10-27 14:08:30.345 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:08:30.346  INFO 28725 --- [io-10008-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=129621281 -2023-10-27 14:08:30.398 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4492090b -2023-10-27 14:08:30.398 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:30.398 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:08:30.399  INFO 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Interrogative_word","support":"265","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.5112861131261499","percentageOfSecondRank":"0.955850817201625"},{"URI":"http:\/\/dbpedia.org\/resource\/Television","support":"34737","types":"","surfaceForm":"TV","offset":"21","similarityScore":"0.6177782034114327","percentageOfSecondRank":"0.5973823288423435"},{"URI":"http:\/\/dbpedia.org\/resource\/The_Flintstones","support":"1313","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"The Flintstones","offset":"29","similarityScore":"0.9999999999546674","percentageOfSecondRank":"4.5257197727663274E-11"},{"URI":"http:\/\/dbpedia.org\/resource\/Racial_discrimination","support":"628","types":"","surfaceForm":"racial discrimination","offset":"59","similarityScore":"0.9906362874219914","percentageOfSecondRank":"0.002843090980497325"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"US","offset":"98","similarityScore":"0.9972981277971957","percentageOfSecondRank":"0.001967101671796666"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:08:30.399  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?": <200,{"types":"","confidence":"0.1","text":"What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/Interrogative_word","support":"265","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.5112861131261499","percentageOfSecondRank":"0.955850817201625"},{"URI":"http:\/\/dbpedia.org\/resource\/Television","support":"34737","types":"","surfaceForm":"TV","offset":"21","similarityScore":"0.6177782034114327","percentageOfSecondRank":"0.5973823288423435"},{"URI":"http:\/\/dbpedia.org\/resource\/The_Flintstones","support":"1313","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"The Flintstones","offset":"29","similarityScore":"0.9999999999546674","percentageOfSecondRank":"4.5257197727663274E-11"},{"URI":"http:\/\/dbpedia.org\/resource\/Racial_discrimination","support":"628","types":"","surfaceForm":"racial discrimination","offset":"59","similarityScore":"0.9906362874219914","percentageOfSecondRank":"0.002843090980497325"},{"URI":"http:\/\/dbpedia.org\/resource\/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"US","offset":"98","similarityScore":"0.9972981277971957","percentageOfSecondRank":"0.001967101671796666"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:08:30 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=99", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/Interrogative_word at (0,4) -2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Television at (21,23) -2023-10-27 14:08:30.399 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/The_Flintstones at (29,44) -2023-10-27 14:08:30.400 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Racial_discrimination at (59,80) -2023-10-27 14:08:30.400 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/United_States at (98,100) -2023-10-27 14:08:30.406 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 -2023-10-27 14:08:30.407  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@350479a0 -2023-10-27 14:08:30.407 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:30.409  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5112861131261499 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.409  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5112861131261499 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.409 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5112861131261499 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.419  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@676d632e -2023-10-27 14:08:30.419 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:30.420  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.6177782034114327 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.420  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.6177782034114327 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.420 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.6177782034114327 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.427  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e6af33d -2023-10-27 14:08:30.428 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:30.431  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999546674 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.431  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999546674 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.431 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9999999999546674 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.440  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ae46baa -2023-10-27 14:08:30.440 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:30.443  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "80"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9906362874219914 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.443  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "80"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9906362874219914 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.443 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "80"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9906362874219914 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.451  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c3bc22f -2023-10-27 14:08:30.452 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:30.455  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "98"^^xsd:nonNegativeInteger . - _:b1 oa:end "100"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9972981277971957 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.455  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "98"^^xsd:nonNegativeInteger . - _:b1 oa:end "100"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9972981277971957 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.455 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "98"^^xsd:nonNegativeInteger . - _:b1 oa:end "100"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.9972981277971957 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:30.470 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 148 ms -2023-10-27 14:09:42.906  INFO 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:42.906  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:42.906  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:42.915  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6ebc6435 -2023-10-27 14:09:42.915 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:42.917  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:42.917  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:42.928 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:42.928  INFO 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql -2023-10-27 14:09:42.929 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:09:42.929  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:09:42.929 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:09:42.930 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:09:42.930 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:09:42.930  INFO 28725 --- [io-10008-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2056941755 -2023-10-27 14:09:43.005 DEBUG 28725 --- [io-10008-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e -2023-10-27 14:09:43.005 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:43.005 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:09:43.006  INFO 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:09:43.006 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:09:43.006  WARN 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:09:43.006 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:09:43.006 DEBUG 28725 --- [io-10008-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:09:43.010 DEBUG 28725 --- [io-10008-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:43.011  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@78511bd2 -2023-10-27 14:09:43.011 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:09:43.012  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.012  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.012 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.022  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4da5c95e -2023-10-27 14:09:43.022 DEBUG 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:09:43.023  INFO 28725 --- [io-10008-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.024  INFO 28725 --- [io-10008-exec-7] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.024 DEBUG 28725 --- [io-10008-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.030 DEBUG 28725 --- [io-10008-exec-7] e.w.q.component.QanaryServiceController  : processing took: 124 ms -2023-10-27 14:10:25.777  INFO 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:25.777  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:25.777  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:25.858  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5043be95 -2023-10-27 14:10:25.861 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:25.862  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.862  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.875 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:25.876  INFO 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql -2023-10-27 14:10:25.877 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:10:25.877  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:10:25.878 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:10:25.878 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:10:25.878 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e -2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:10:25.879  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:10:25.879 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:10:25.879  WARN 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:10:25.880 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:10:25.880 DEBUG 28725 --- [io-10008-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:10:25.890 DEBUG 28725 --- [io-10008-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:25.893  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19794cbb -2023-10-27 14:10:25.894 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:10:25.896  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.896  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.896 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.908  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7029cd05 -2023-10-27 14:10:25.909 DEBUG 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:10:25.911  INFO 28725 --- [io-10008-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.911  INFO 28725 --- [io-10008-exec-1] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.911 DEBUG 28725 --- [io-10008-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.923 DEBUG 28725 --- [io-10008-exec-1] e.w.q.component.QanaryServiceController  : processing took: 146 ms -2023-10-27 14:11:01.590  INFO 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} -2023-10-27 14:11:01.590  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} -2023-10-27 14:11:01.590  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} -2023-10-27 14:11:01.607  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@210f3806 -2023-10-27 14:11:01.607 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:01.608  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:01.609  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:01.615 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 -2023-10-27 14:11:01.615  INFO 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 found in urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d at http://localhost:8080/sparql -2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:01.617  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e -2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:11:01.617 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:11:01.618  WARN 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:11:01.618 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:11:01.618  WARN 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:11:01.618 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:11:01.618 DEBUG 28725 --- [io-10008-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:11:01.623 DEBUG 28725 --- [io-10008-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 -2023-10-27 14:11:01.623  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b036a3f -2023-10-27 14:11:01.624 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:11:01.625  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.625  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.625 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.632  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@315e27c1 -2023-10-27 14:11:01.632 DEBUG 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:11:01.633  INFO 28725 --- [io-10008-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.633  INFO 28725 --- [io-10008-exec-4] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.633 DEBUG 28725 --- [io-10008-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.639 DEBUG 28725 --- [io-10008-exec-4] e.w.q.component.QanaryServiceController  : processing took: 49 ms -2023-10-27 14:11:05.662  INFO 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.663  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.663  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.671  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39bd722 -2023-10-27 14:11:05.671 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:05.671  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:05.672  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:05.677 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e -2023-10-27 14:11:05.677  INFO 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e found in urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf at http://localhost:8080/sparql -2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:05.679  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e -2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:11:05.679 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:11:05.680  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:11:05.680 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:11:05.680  WARN 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:11:05.680 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:11:05.680 DEBUG 28725 --- [io-10008-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:11:05.687 DEBUG 28725 --- [io-10008-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e -2023-10-27 14:11:05.687  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3974c1f3 -2023-10-27 14:11:05.687 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:11:05.689  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.689  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.689 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.695  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@12305760 -2023-10-27 14:11:05.696 DEBUG 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:11:05.697  INFO 28725 --- [io-10008-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.697  INFO 28725 --- [io-10008-exec-5] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.697 DEBUG 28725 --- [io-10008-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.702 DEBUG 28725 --- [io-10008-exec-5] e.w.q.component.QanaryServiceController  : processing took: 39 ms -2023-10-27 14:11:16.519  INFO 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.519  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.519  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.535  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b84c4e9 -2023-10-27 14:11:16.535 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:16.536  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:16.536  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:16.542 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:16.542  INFO 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql -2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:16.543  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at 'https://api.dbpedia-spotlight.org/en/annotate' and minimum confidence: 0.1 -2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:16.543 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2478e06e -2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:11:16.544  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:11:16.544 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : JsonParser.parseString({"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"}) -2023-10-27 14:11:16.544  WARN 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": <200,{"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http:\/\/dbpedia.org\/resource\/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http:\/\/dbpedia.org\/resource\/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"},[Date:"Fri, 27 Oct 2023 12:09:42 GMT", Server:"grizzly/1.9.48", Access-Control-Allow-Origin:"*", Content-Type:"application/xml", Vary:"Accept-Encoding", Keep-Alive:"timeout=5, max=100", Connection:"Keep-Alive", Transfer-Encoding:"chunked"]> -2023-10-27 14:11:16.545 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:11:16.545 DEBUG 28725 --- [io-10008-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:11:16.550 DEBUG 28725 --- [io-10008-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:16.550  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d120ad4 -2023-10-27 14:11:16.550 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:11:16.552  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.552  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.552 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 0.5118103110636382 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.558  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7aa6a1b2 -2023-10-27 14:11:16.558 DEBUG 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:score ?score . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:11:16.559  INFO 28725 --- [io-10008-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.559  INFO 28725 --- [io-10008-exec-6] e.w.q.c.d.ned.DBpediaSpotlightNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.559 DEBUG 28725 --- [io-10008-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:score 1.0 . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.565 DEBUG 28725 --- [io-10008-exec-6] e.w.q.component.QanaryServiceController  : processing took: 46 ms diff --git a/qanary-component-NED-DBpediaSpotlight/pom.xml b/qanary-component-NED-DBpediaSpotlight/pom.xml index 497bfc9b6..e4bd89b04 100644 --- a/qanary-component-NED-DBpediaSpotlight/pom.xml +++ b/qanary-component-NED-DBpediaSpotlight/pom.xml @@ -39,11 +39,6 @@ org.springframework.boot spring-boot-starter-web - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.springframework.boot spring-boot-starter-test diff --git a/qanary-component-NED-Dandelion/nohup.out b/qanary-component-NED-Dandelion/nohup.out deleted file mode 100644 index 232e97153..000000000 --- a/qanary-component-NED-Dandelion/nohup.out +++ /dev/null @@ -1,7553 +0,0 @@ -Error: Unable to access jarfile target/*.jar - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNED -- DandelionNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:01:32.777  INFO 7849 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 7849 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) -2023-10-27 12:01:32.784 DEBUG 7849 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:01:32.802  INFO 7849 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" -2023-10-27 12:01:39.411  WARN 7849 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:01:39.579  WARN 7849 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:01:39.628  WARN 7849 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelionNED' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ned/DandelionNED.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ned.DandelionNED]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException -2023-10-27 12:01:39.856 ERROR 7849 --- [ main] o.s.boot.SpringApplication  : Application run failed - -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelionNED' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ned/DandelionNED.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ned.DandelionNED]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] - at eu.wdaqua.qanary.component.dandelion.ned.Application.main(Application.java:50) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NED-Dandelion-3.4.0.jar:3.4.0] -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ned.DandelionNED]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 25 common frames omitted -Caused by: eu.wdaqua.qanary.component.dandelion.ned.exception.ApiTokenIsNullOrEmptyException: null - at eu.wdaqua.qanary.component.dandelion.ned.DandelionNED.(DandelionNED.java:64) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 27 common frames omitted - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNED -- DandelionNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:03:53.665  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 8575 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) -2023-10-27 12:03:53.669 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:03:53.669  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" -2023-10-27 12:03:55.932  WARN 8575 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:03:55.993  WARN 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:03:56.007  INFO 8575 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 -2023-10-27 12:03:56.009  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 12:03:56.025 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:03:56.032 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:03:56.035 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:03:56.040  INFO 8575 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 12:03:56.542 DEBUG 8575 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b -2023-10-27 12:03:56.544 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:03:56.547 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:03:56.550  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:03:56.585 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:03:56.513"} -2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 12:03:56.589 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 12:03:56.589  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 12:03:56.604  INFO 8575 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 -2023-10-27 12:03:56.604  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 12:03:56.604 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:03:56.605 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:03:56.605 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:03:56.605  INFO 8575 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 12:03:56.664 DEBUG 8575 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 -2023-10-27 12:03:56.665 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:03:56.665 DEBUG 8575 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:03:56.665  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:03:56.666 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:03:56.636"} -2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 12:03:56.667 DEBUG 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 12:03:56.667  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 12:03:56.668  INFO 8575 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@497570fb -2023-10-27 12:03:56.672  INFO 8575 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8088 -spring.application.name = DandelionNED -spring.application.description = DandelionNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:03:56.683  INFO 8575 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl -2023-10-27 12:03:57.107  WARN 8575 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:03:57.118  INFO 8575 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 12:03:57.985  INFO 8575 --- [ main] e.w.q.c.dandelion.ned.Application  : Started Application in 4.85 seconds (JVM running for 5.445) -2023-10-27 12:03:58.117  INFO 8575 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as f1fddc3c27f7 -2023-10-27 12:08:47.994  WARN 8575 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNED, managementUrl=http://0.0.0.0:8088/actuator, healthUrl=http://0.0.0.0:8088/actuator/health, serviceUrl=http://0.0.0.0:8088/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNED -- DandelionNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:22.439  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9646 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) -2023-10-27 12:09:22.466 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.469  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" -2023-10-27 12:09:41.537  WARN 9646 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:42.172  WARN 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:42.302  INFO 9646 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 -2023-10-27 12:09:42.310  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 12:09:42.426 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:09:42.484 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:09:42.488 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:09:42.525  INFO 9646 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 12:09:44.644 DEBUG 9646 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@27494e46 -2023-10-27 12:09:44.648 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:09:44.673 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:09:44.689  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:09:44.970 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:09:44.614"} -2023-10-27 12:09:44.993 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 12:09:44.993 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 12:09:44.993 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 12:09:45.008 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 12:09:45.008 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 12:09:45.008 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 12:09:45.009  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 12:09:45.100  INFO 9646 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6622a690 -2023-10-27 12:09:45.100  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 12:09:45.100 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:09:45.108 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:09:45.109 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:09:45.109  INFO 9646 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 12:09:45.191 DEBUG 9646 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30b9eadd -2023-10-27 12:09:45.191 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:09:45.192 DEBUG 9646 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:09:45.192  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:09:45.198 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:09:45.166"} -2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 12:09:45.202 DEBUG 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 12:09:45.202  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 12:09:45.203  INFO 9646 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@412c995d -2023-10-27 12:09:45.230  INFO 9646 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8088 -spring.application.name = DandelionNED -spring.application.description = DandelionNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:45.295  INFO 9646 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl -2023-10-27 12:09:48.877  WARN 9646 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:48.998  INFO 9646 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 12:09:55.814  INFO 9646 --- [ main] e.w.q.c.dandelion.ned.Application  : Started Application in 38.036 seconds (JVM running for 44.925) -2023-10-27 12:09:56.485  WARN 9646 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNED, managementUrl=http://0.0.0.0:8088/actuator, healthUrl=http://0.0.0.0:8088/actuator/health, serviceUrl=http://0.0.0.0:8088/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:06.244  INFO 9646 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as f1fddc3c27f7 - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNED -- DandelionNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:50.866  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11759 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) -2023-10-27 12:15:50.878 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:50.923  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" -2023-10-27 12:16:17.974  WARN 11759 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:18.759  WARN 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:18.914  INFO 11759 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 -2023-10-27 12:16:18.944  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 12:16:19.166 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:19.217 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:19.240 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:19.332  INFO 11759 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 12:16:22.845 DEBUG 11759 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@27494e46 -2023-10-27 12:16:22.888 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:22.914 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:16:22.978  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.508 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:16:22.810"} -2023-10-27 12:16:23.519 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 12:16:23.521 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 12:16:23.522 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 12:16:23.524 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 12:16:23.524 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 12:16:23.529 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 12:16:23.530  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 12:16:23.725  INFO 11759 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6622a690 -2023-10-27 12:16:23.725  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 12:16:23.726 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.726 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.740 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:23.743  INFO 11759 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 12:16:23.809 DEBUG 11759 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30b9eadd -2023-10-27 12:16:23.809 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:23.810 DEBUG 11759 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:16:23.810  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.826 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T10:16:23.789"} -2023-10-27 12:16:23.827 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 12:16:23.827 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 12:16:23.828 DEBUG 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 12:16:23.828  INFO 11759 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 12:16:23.835  INFO 11759 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@412c995d -2023-10-27 12:16:23.919  INFO 11759 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8088 -spring.application.name = DandelionNED -spring.application.description = DandelionNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:24.232  INFO 11759 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl -2023-10-27 12:16:29.657  WARN 11759 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:29.822  INFO 11759 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 12:16:39.633  WARN 11759 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8088 is already in use -2023-10-27 12:16:40.698 ERROR 11759 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8088 was already in use. - -Action: - -Identify and stop the process that's listening on port 8088 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNED -- DandelionNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:49.534  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28726 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) -2023-10-27 13:37:49.573 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:49.610  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" -2023-10-27 13:38:09.974  WARN 28726 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:10.709  WARN 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:10.969  INFO 28726 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 -2023-10-27 13:38:10.987  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 13:38:11.218 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:11.353 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:11.372 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:11.417  INFO 28726 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 13:38:13.821 DEBUG 28726 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b -2023-10-27 13:38:13.849 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:13.901 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:38:13.909  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:14.357 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:38:13.780"} -2023-10-27 13:38:14.417 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 13:38:14.417 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 13:38:14.418 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 13:38:14.420 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 13:38:14.421 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 13:38:14.421 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 13:38:14.422  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 13:38:14.595  INFO 28726 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 -2023-10-27 13:38:14.596  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 13:38:14.597 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:14.597 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:14.603 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:14.603  INFO 28726 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 13:38:14.656 DEBUG 28726 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 -2023-10-27 13:38:14.656 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:14.656 DEBUG 28726 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:38:14.657  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:14.658 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:38:14.633"} -2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 13:38:14.663 DEBUG 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 13:38:14.663  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 13:38:14.672  INFO 28726 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@497570fb -2023-10-27 13:38:14.706  INFO 28726 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8088 -spring.application.name = DandelionNED -spring.application.description = DandelionNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:14.854  INFO 28726 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl -2023-10-27 13:38:18.882  WARN 28726 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:19.110  INFO 28726 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:38:29.615  INFO 28726 --- [ main] e.w.q.c.dandelion.ned.Application  : Started Application in 46.386 seconds (JVM running for 52.407) -2023-10-27 13:38:30.372  WARN 28726 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNED, managementUrl=http://0.0.0.0:8088/actuator, healthUrl=http://0.0.0.0:8088/actuator/health, serviceUrl=http://0.0.0.0:8088/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 13:38:39.699  INFO 28726 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as f1fddc3c27f7 - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNED -- DandelionNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:52.992  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30117 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/target/qanary-component-NED-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion) -2023-10-27 13:38:53.014 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:53.027  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.Application  : The following 1 profile is active: "local" -2023-10-27 13:39:16.593  WARN 30117 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:17.487  WARN 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:17.658  INFO 30117 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 -2023-10-27 13:39:17.661  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 13:39:17.712 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:17.724 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:17.731 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:17.744  INFO 30117 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 13:39:21.230 DEBUG 30117 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b -2023-10-27 13:39:21.235 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:21.303 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:39:21.349  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:21.850 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:39:21.183"} -2023-10-27 13:39:21.915 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 13:39:21.915 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 13:39:21.919 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 13:39:21.925 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 13:39:21.925 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 13:39:21.930 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 13:39:21.931  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 13:39:22.078  INFO 30117 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 -2023-10-27 13:39:22.078  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : API live testing is activated -2023-10-27 13:39:22.079 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:22.079 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:22.079 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:22.079  INFO 30117 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2115841900 -2023-10-27 13:39:22.135 DEBUG 30117 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 -2023-10-27 13:39:22.136 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:22.136 DEBUG 30117 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:39:22.137  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+birthplace+of+Albert+Einstein%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:22.138 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":22,"spot":"birthplace","confidence":0.6254,"id":11206044,"title":"Place of birth","uri":"http://en.wikipedia.org/wiki/Place_of_birth","abstract":"The place of birth (POB) or birthplace is the place where a person was born. This place is often used in legal documents, together with name and date of birth, to uniquely identify a person. Practice regarding whether this place should be a country, a territory or a city/town/locality differs in different countries, but often city or territory is used for native-born citizen passports and countries for foreign-born ones.","label":"POB","categories":["Birthplaces","Human migration","Nationality law"],"types":[]},{"start":26,"end":41,"spot":"Albert Einstein","confidence":0.8922,"id":736,"title":"Albert Einstein","uri":"http://en.wikipedia.org/wiki/Albert_Einstein","abstract":"Albert Einstein (14 March 1879 – 18 April 1955) was a German-born theoretical physicist, widely held to be one of the greatest and most influential scientists of all time. Best known for developing the theory of relativity, he also made important contributions to quantum mechanics, and was thus a central figure in the revolutionary reshaping of the scientific understanding of nature that modern physics accomplished in the first decades of the twentieth century. His mass–energy equivalence formula, which arises from relativity theory, has been called \"the world's most famous equation\". He received the 1921 Nobel Prize in Physics \"for his services to theoretical physics, and especially for his discovery of the law of the photoelectric effect\", a pivotal step in the development of quantum theory. His work is also known for its influence on the philosophy of science. In a 1999 poll of 130 leading physicists worldwide by the British journal Physics World, Einstein was ranked the greatest physicist of all time. His intellectual achievements and originality have made Einstein synonymous with genius.","label":"Albert Einstein","categories":["1879 births","1955 deaths","19th-century German Jews","20th-century American engineers","20th-century American inventors","20th-century American physicists","20th-century American writers","20th-century Swiss inventors","Albert Einstein","American Ashkenazi Jews","American Nobel laureates","American Zionists","American agnostics","American democratic socialists","American humanists","American letter writers","American pacifists","American relativity theorists","American science writers","Charles University faculty","Deaths from abdominal aortic aneurysm","Denaturalized citizens of Germany","ETH Zurich alumni","ETH Zurich faculty","Einstein family","European democratic socialists","German Ashkenazi Jews","German Nobel laureates","German agnostics","German emigrants to Switzerland","German humanists","German relativity theorists","Institute for Advanced Study faculty","Jewish American physicists","Jewish agnostics","Jewish emigrants from Nazi Germany to the United States","Jewish physicists","Members of the Royal Netherlands Academy of Arts and Sciences","Members of the United States National Academy of Sciences","Naturalised citizens of Austria","Naturalised citizens of Switzerland","Naturalized citizens of the United States","New Jersey Hall of Fame inductees","Nobel laureates in Physics","Pantheists","Patent examiners","People who lost German citizenship","Philosophers of mathematics","Philosophers of science","Philosophy of science","Quantum physicists","Scientists from Munich","Spinozists","Stateless people","Swiss Ashkenazi Jews","Swiss Nobel laureates","Swiss agnostics","Swiss cosmologists","Swiss emigrants to the United States","Swiss physicists","University of Bern faculty","University of Zurich alumni","University of Zurich faculty","Winners of the Max Planck Medal","Württemberger emigrants to the United States"],"types":["http://dbpedia.org/ontology/Scientist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.518,"timestamp":"2023-10-27T11:39:22.113"} -2023-10-27 13:39:22.139 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 13:39:22.139 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 22 -2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Place_of_birth -2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 13:39:22.143 DEBUG 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Albert_Einstein -2023-10-27 13:39:22.143  INFO 30117 --- [ main] e.w.q.c.dandelion.ned.DandelionNED  : Functionality works as expected -2023-10-27 13:39:22.144  INFO 30117 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ned.DandelionNED@497570fb -2023-10-27 13:39:22.166  INFO 30117 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8088 -spring.application.name = DandelionNED -spring.application.description = DandelionNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:22.361  INFO 30117 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl -2023-10-27 13:39:26.826  WARN 30117 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:27.009  INFO 30117 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:39:35.106  WARN 30117 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8088 is already in use -2023-10-27 13:39:35.446 ERROR 30117 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8088 was already in use. - -Action: - -Identify and stop the process that's listening on port 8088 or configure this application to listen on another port. - -2023-10-27 13:51:55.977  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"} -2023-10-27 13:51:55.992  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"} -2023-10-27 13:51:56.083  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"},"inGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18","outGraph":"urn:graph:0025b33f-5860-475c-b315-98d75dc69c18"} -2023-10-27 13:51:56.230  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@8890f1c -2023-10-27 13:51:56.349  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@506a6d77 -2023-10-27 13:51:56.376 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:51:56.706  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:51:56.708  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:51:56.961 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43bddf4c-aa92-4123-886c-5c988690ecf6 -2023-10-27 13:51:56.962  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43bddf4c-aa92-4123-886c-5c988690ecf6 found in urn:graph:0025b33f-5860-475c-b315-98d75dc69c18 at http://localhost:8080/sparql -2023-10-27 13:51:56.972 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries are on the continent of South America ? -2023-10-27 13:51:56.973 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question How many countries are on the continent of South America ? -2023-10-27 13:51:56.976 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+are+on+the+continent+of+South+America+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:51:56.977 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+are+on+the+continent+of+South+America+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:51:56.977 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:51:57.075  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1903797592 -2023-10-27 13:51:57.339 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@70e9d57d -2023-10-27 13:51:57.339 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:51:57.340 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:51:57.340  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+are+on+the+continent+of+South+America+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:51:57.340 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":9,"end":18,"spot":"countries","confidence":0.7148,"id":21754,"title":"Nation","uri":"http://en.wikipedia.org/wiki/Nation","abstract":"A nation is a large type of social organization where a collective identity has emerged from a combination of shared features across a given population, such as language, history, ethnicity, culture, territory and/or society. Some nations are constructed around ethnicity (see ethnic nationalism) while others are bound by political constitutions (see civic nationalism and multiculturalism).","label":"Nation","categories":["Ethnicity","Nation","Pages using page needed template with unknown parameters","Political geography","Political science terminology","Types of communities"],"types":[]},{"start":30,"end":39,"spot":"continent","confidence":0.7702,"id":19630739,"title":"Continent","uri":"http://en.wikipedia.org/wiki/Continent","abstract":"A continent is any of several large geographical regions. Continents are generally identified by convention rather than any strict criteria. A continent could be a single landmass or a part of a very large landmass, as in the case of Asia or Europe. Due to this, the number of continents varies; up to seven or as few as four geographical regions are commonly regarded as continents. Most English-speaking countries recognize seven regions as continents. In order from largest to smallest in area, these seven regions are Asia, Africa, North America, South America, Antarctica, Europe, and Australia. Different variations with fewer continents merge some of these regions; examples of this are merging North America and South America into America, Asia and Europe into Eurasia, and Africa, Asia, and Europe into Afro-Eurasia.","label":"Continent","categories":["Continents"],"types":[]},{"start":43,"end":56,"spot":"South America","confidence":0.817,"id":26769,"title":"South America","uri":"http://en.wikipedia.org/wiki/South_America","abstract":"South America is a continent entirely in the Western Hemisphere and mostly in the Southern Hemisphere, with a relatively small portion in the Northern Hemisphere at the northern tip of the continent. It can also be described as the southern subregion of a single continent called America.","label":"South America","categories":["Continents","South America"],"types":["http://dbpedia.org/ontology/Continent","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:51:57.318"} -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 18 -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Nation -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 30 -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 39 -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Continent -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 43 -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 56 -2023-10-27 13:51:57.341 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/South_America -2023-10-27 13:51:57.350 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43bddf4c-aa92-4123-886c-5c988690ecf6 -2023-10-27 13:51:57.350  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55dfa4c9 -2023-10-27 13:51:57.350 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:51:57.364  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nation" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.364  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nation" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.365 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nation" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.376  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50bc3239 -2023-10-27 13:51:57.377 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:51:57.380  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Continent" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.381  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Continent" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.381 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Continent" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.390  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5081279b -2023-10-27 13:51:57.391 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:51:57.393  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "43"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/South_America" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.394  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "43"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/South_America" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.394 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "43"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/South_America" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:57.403 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 1415 ms -2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"} -2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"} -2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"},"inGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8","outGraph":"urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8"} -2023-10-27 13:51:58.647  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6328fe70 -2023-10-27 13:51:58.661  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@671766cd -2023-10-27 13:51:58.675 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:51:58.677  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:51:58.679  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:51:58.722 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d8576d33-c3ea-4658-bee6-96c95b479221 -2023-10-27 13:51:58.722  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d8576d33-c3ea-4658-bee6-96c95b479221 found in urn:graph:ff28e353-7c7e-4a8f-8e10-2ab0e86c51c8 at http://localhost:8080/sparql -2023-10-27 13:51:58.725 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation For what literature prize was Simone de Beauvoir nominated? -2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Question For what literature prize was Simone de Beauvoir nominated? -2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=For+what+literature+prize+was+Simone+de+Beauvoir+nominated%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=For+what+literature+prize+was+Simone+de+Beauvoir+nominated%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:51:58.726 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:51:58.726  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1388700230 -2023-10-27 13:51:58.782 DEBUG 28726 --- [nio-8088-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2215f44b -2023-10-27 13:51:58.782 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:51:58.782 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:51:58.783  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=For+what+literature+prize+was+Simone+de+Beauvoir+nominated%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:51:58.783 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":9,"end":25,"spot":"literature prize","confidence":0.71,"id":23385442,"title":"Nobel Prize in Literature","uri":"http://en.wikipedia.org/wiki/Nobel_Prize_in_Literature","abstract":"The Nobel Prize in Literature (here meaning for literature) is a Swedish literature prize that is awarded annually, since 1901, to an author from any country who has, in the words of the will of Swedish industrialist Alfred Nobel, \"in the field of literature, produced the most outstanding work in an idealistic direction\" (original). Though individual works are sometimes cited as being particularly noteworthy, the award is based on an author's body of work as a whole. The Swedish Academy decides who, if anyone, will receive the prize. The academy announces the name of the laureate in early October. It is one of the five Nobel Prizes established by the will of Alfred Nobel in 1895. Literature is traditionally the final award presented at the Nobel Prize ceremony. On some occasions the award has been postponed to the following year, most recently in 2018 as of July 2023.","label":"Nobel Prize in Literature","categories":["International literary awards","Literary awards honoring writers","Nobel Prize","Nobel Prize in Literature","Swedish Academy"],"types":["http://dbpedia.org/ontology/Award"]},{"start":30,"end":48,"spot":"Simone de Beauvoir","confidence":0.9034,"id":62034,"title":"Simone de Beauvoir","uri":"http://en.wikipedia.org/wiki/Simone_de_Beauvoir","abstract":"Simone Lucie Ernestine Marie Bertrand de Beauvoir (9 January 1908 – 14 April 1986) was a French existentialist philosopher, writer, social theorist, and feminist activist. Though she did not consider herself a philosopher, nor was she considered one at the time of her death, she had a significant influence on both feminist existentialism and feminist theory.","label":"Simone de Beauvoir","categories":["1908 births","1986 deaths","20th-century French memoirists","20th-century French non-fiction writers","20th-century French novelists","20th-century French philosophers","20th-century French women writers","20th-century LGBT people","Atheist feminists","Atheist philosophers","Bisexual feminists","Bisexual women","Bisexual writers","Burials at Montparnasse Cemetery","Communist women writers","Continental philosophers","Critical theorists","Cultural critics","Deaths from pneumonia in France","Epistemologists","Existentialists","Feminist philosophers","Feminist studies scholars","Feminist theorists","Former Roman Catholics","French LGBT novelists","French Marxist writers","French Marxists","French abortion-rights activists","French anti-war activists","French atheists","French communists","French ethicists","French feminist writers","French literary critics","French magazine founders","French political philosophers","French social commentators","French socialist feminists","French socialists","French women critics","French women memoirists","French women non-fiction writers","French women novelists","French women philosophers","Jerusalem Prize recipients","LGBT memoirists","LGBT philosophers","Légion d'honneur refusals","Marxist feminists","Materialist feminists","Metaphysicians","Moral philosophers","Ontologists","Phenomenologists","Philosophers of art","Philosophers of culture","Philosophers of education","Philosophers of ethics and morality","Philosophers of literature","Philosophers of nihilism","Philosophers of sexuality","Political philosophers","Prix Goncourt winners","Signatories of the 1971 Manifesto of the 343","Simone de Beauvoir","Social critics","Social philosophers","University of Paris alumni","Women literary critics","Writers from Paris"],"types":["http://dbpedia.org/ontology/Philosopher","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:51:58.756"} -2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 -2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 -2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Nobel_Prize_in_Literature -2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 30 -2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 48 -2023-10-27 13:51:58.785 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Simone_de_Beauvoir -2023-10-27 13:51:58.805 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d8576d33-c3ea-4658-bee6-96c95b479221 -2023-10-27 13:51:58.805  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37828751 -2023-10-27 13:51:58.805 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:51:58.812  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nobel_Prize_in_Literature" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:58.813  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nobel_Prize_in_Literature" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:58.813 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nobel_Prize_in_Literature" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:58.833  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13fd34af -2023-10-27 13:51:58.834 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:51:58.836  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Simone_de_Beauvoir" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:58.837  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Simone_de_Beauvoir" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:58.837 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Simone_de_Beauvoir" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:58.848 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : processing took: 201 ms -2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"} -2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"} -2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"},"inGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42","outGraph":"urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42"} -2023-10-27 13:52:06.446  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4c57c324 -2023-10-27 13:52:06.490  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@429034de -2023-10-27 13:52:06.490 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:06.492  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:06.493  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:06.502 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b1a79c7a-4106-461b-b919-cd5de1aec6c6 -2023-10-27 13:52:06.502  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b1a79c7a-4106-461b-b919-cd5de1aec6c6 found in urn:graph:bc7bd7da-e63b-4810-98d3-bd483babda42 at http://localhost:8080/sparql -2023-10-27 13:52:06.504 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:06.505 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:52:06.505  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=987631136 -2023-10-27 13:52:06.643 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3ad3ee5 -2023-10-27 13:52:06.643 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:06.644 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:52:06.644  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":9,"end":15,"spot":"Oscars","confidence":0.7615,"id":324,"title":"Academy Awards","uri":"http://en.wikipedia.org/wiki/Academy_Awards","abstract":"The Academy Awards, mainly known as the Oscars, are awards for artistic and technical merit for the film industry. They are presented annually by the Academy of Motion Picture Arts and Sciences (AMPAS), in recognition of excellence in cinematic achievements as assessed by the Academy's voting membership. The Academy Awards are regarded by many as the most prestigious, significant awards in the entertainment industry in the United States and worldwide. The Oscar statuette depicts a knight rendered in the Art Deco style.","label":"Academy Award","categories":["1929 establishments in California","Academy Awards","American annual television specials","American film awards","American live television shows","Annual events in Los Angeles County, California","Awards established in 1929","Cinema of Southern California","Culture of Hollywood, Los Angeles","Events in Los Angeles","Performing arts trophies"],"types":["http://dbpedia.org/ontology/Award"]},{"start":47,"end":61,"spot":"Hayao Miyazaki","confidence":0.907,"id":20312,"title":"Hayao Miyazaki","uri":"http://en.wikipedia.org/wiki/Hayao_Miyazaki","abstract":"is a Japanese animator, filmmaker, and manga artist. A co-founder of Studio Ghibli, he has attained international acclaim as a masterful storyteller and creator of Japanese animated feature films, and is widely regarded as one of the most accomplished filmmakers in the history of animation.","label":"Hayao Miyazaki","categories":["1941 births","Academy Honorary Award recipients","Anime character designers","Anime directors","Annie Award winners","Anti–nuclear power activists","Directors of Best Animated Feature Academy Award winners","Directors of Golden Bear winners","Ecofeminists","Environmental writers","Fantasy artists","Fantasy film directors","Feminist artists","Feminist writers","Gakushuin University alumni","Hayao Miyazaki","Inkpot Award winners","Japanese Shintoists","Japanese animated film directors","Japanese animated film producers","Japanese animators","Japanese cartoonists","Japanese environmentalists","Japanese feminists","Japanese pacifists","Japanese production designers","Japanese screenwriters","Japanese speculative fiction artists","Japanese storyboard artists","Living people","Male feminists","Manga artists","Nebula Award winners","People from Bunkyō","Persons of Cultural Merit","Science Fiction Hall of Fame inductees","Studio Ghibli people","Topcraft","World Masterpiece Theater series"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:06.618"} -2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 -2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 15 -2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Academy_Awards -2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 47 -2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 61 -2023-10-27 13:52:06.645 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Hayao_Miyazaki -2023-10-27 13:52:06.655 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b1a79c7a-4106-461b-b919-cd5de1aec6c6 -2023-10-27 13:52:06.656  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71118357 -2023-10-27 13:52:06.656 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:06.660  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Academy_Awards" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:06.661  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Academy_Awards" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:06.661 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Academy_Awards" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:06.670  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32647f6f -2023-10-27 13:52:06.670 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:06.673  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "62"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hayao_Miyazaki" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:06.674  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "62"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hayao_Miyazaki" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:06.674 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "62"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hayao_Miyazaki" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:06.684 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 238 ms -2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"} -2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"} -2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"},"inGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929","outGraph":"urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929"} -2023-10-27 13:52:15.010  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@70e9f86a -2023-10-27 13:52:15.018  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7e2e0807 -2023-10-27 13:52:15.018 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:15.020  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:15.021  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:15.030 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7562e139-8be2-4eca-a51f-e082c9c4ce91 -2023-10-27 13:52:15.030  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7562e139-8be2-4eca-a51f-e082c9c4ce91 found in urn:graph:f5b6b467-5e47-4ed3-bb8d-882543cfa929 at http://localhost:8080/sparql -2023-10-27 13:52:15.032 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was Funny Games and its remake directed by different persons? -2023-10-27 13:52:15.032 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question Was Funny Games and its remake directed by different persons? -2023-10-27 13:52:15.033 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Was+Funny+Games+and+its+remake+directed+by+different+persons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:15.033 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Was+Funny+Games+and+its+remake+directed+by+different+persons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:15.033 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:52:15.033  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=59805812 -2023-10-27 13:52:15.172 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3f13023c -2023-10-27 13:52:15.172 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:15.172 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:52:15.173  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Was+Funny+Games+and+its+remake+directed+by+different+persons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:15.173 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":4,"end":15,"spot":"Funny Games","confidence":0.8609,"id":3870912,"title":"Funny Games (1997 film)","uri":"http://en.wikipedia.org/wiki/Funny_Games_%281997_film%29","abstract":"Funny Games is a 1997 Austrian psychological horror film written and directed by Michael Haneke, and starring Susanne Lothar, Ulrich Mühe, and Arno Frisch. The plot involves two young men who hold a family hostage and torture them with sadistic games in their vacation home. The film was entered into the 1997 Cannes Film Festival. A shot-for-shot remake, filmed and set in the United States, was released in 2007, also directed by Haneke, this time with an English-speaking cast and a mostly American crew.","label":"Funny Games","categories":["1990s French-language films","1990s German-language films","1990s psychological thriller films","1990s serial killer films","1990s thriller drama films","1997 crime thriller films","1997 drama films","1997 films","1997 independent films","1997 multilingual films","Austrian drama films","Austrian independent films","Austrian multilingual films","Films directed by Michael Haneke","Films set in Austria","Films set in country houses","Home invasions in film","Self-reflexive films","Torture in films"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:15.151"} -2023-10-27 13:52:15.174 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 4 -2023-10-27 13:52:15.174 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 15 -2023-10-27 13:52:15.174 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Funny_Games_%281997_film%29 -2023-10-27 13:52:15.182 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7562e139-8be2-4eca-a51f-e082c9c4ce91 -2023-10-27 13:52:15.182  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6971c -2023-10-27 13:52:15.182 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:15.185  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Funny_Games_%281997_film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:15.186  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Funny_Games_%281997_film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:15.186 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Funny_Games_%281997_film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:15.196 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 186 ms -2023-10-27 13:52:22.203  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"} -2023-10-27 13:52:22.203  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"} -2023-10-27 13:52:22.204  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"},"inGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b","outGraph":"urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b"} -2023-10-27 13:52:22.204  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5283ae27 -2023-10-27 13:52:22.216  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c444a07 -2023-10-27 13:52:22.216 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:22.217  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:22.218  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:22.229 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9c339a0f-8630-4f2e-858c-0f6e60ccdd72 -2023-10-27 13:52:22.229  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9c339a0f-8630-4f2e-858c-0f6e60ccdd72 found in urn:graph:6bad6003-8387-4fe9-8658-6938e77c679b at http://localhost:8080/sparql -2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was K-pop star Lisa Manoban born? -2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Question Where was K-pop star Lisa Manoban born? -2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+K-pop+star+Lisa+Manoban+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+K-pop+star+Lisa+Manoban+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:22.231 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:52:22.231  INFO 28726 --- [io-8088-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=883534214 -2023-10-27 13:52:22.360 DEBUG 28726 --- [io-8088-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1d79403c -2023-10-27 13:52:22.360 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:52:22.361  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+K-pop+star+Lisa+Manoban+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":0,"annotations":[{"start":10,"end":20,"spot":"K-pop star","confidence":0.7598,"id":34346577,"title":"K-pop Star","uri":"http://en.wikipedia.org/wiki/K-pop_Star","abstract":"Survival Audition K-pop Star is a South Korean reality TV competition series where three entertainment/talent agencies in South Korea hold worldwide auditions to find the next potential K-Pop stars. Preliminary auditions are held around the world in Asia, North America, South America, Europe, and Australia. The final winner debuts with the company of his or her choice, along with a cash prize of three hundred million won (approx. 300,000 U.S. dollars), two brand new vehicles, opportunities to become commercial models and casting in dramas, and many more benefits.","label":"K-pop Star","categories":["2011 South Korean television series debuts","2017 South Korean television series endings","K-pop Star","Korean-language television shows","Music competitions in South Korea","Singing talent shows","South Korean reality television series","Talent shows","Television series by Chorokbaem Media"],"types":["http://dbpedia.org/ontology/TelevisionShow","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":0.5949,"timestamp":"2023-10-27T11:52:22.340"} -2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 10 -2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 20 -2023-10-27 13:52:22.361 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/K-pop_Star -2023-10-27 13:52:22.369 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9c339a0f-8630-4f2e-858c-0f6e60ccdd72 -2023-10-27 13:52:22.369  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52442722 -2023-10-27 13:52:22.369 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:22.371  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/K-pop_Star" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:22.371  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/K-pop_Star" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:22.371 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/K-pop_Star" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:22.380 DEBUG 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : processing took: 177 ms -2023-10-27 13:52:25.541  INFO 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"} -2023-10-27 13:52:25.542  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"} -2023-10-27 13:52:25.542  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"},"inGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb","outGraph":"urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb"} -2023-10-27 13:52:25.542  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@63a0a07c -2023-10-27 13:52:25.549  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76de75a7 -2023-10-27 13:52:25.549 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:25.550  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:25.550  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:25.557 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_04d8a21e-f3a7-4db1-93ab-47d03ee149d1 -2023-10-27 13:52:25.558  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_04d8a21e-f3a7-4db1-93ab-47d03ee149d1 found in urn:graph:619f4313-47d2-4cdf-a4e2-c6b97de0c7fb at http://localhost:8080/sparql -2023-10-27 13:52:25.560 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Joe Cocker play at the Woodstock festival? -2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Question Did Joe Cocker play at the Woodstock festival? -2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Joe+Cocker+play+at+the+Woodstock+festival%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Joe+Cocker+play+at+the+Woodstock+festival%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:25.561 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:52:25.561  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-567531903 -2023-10-27 13:52:25.610 DEBUG 28726 --- [nio-8088-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@26edb921 -2023-10-27 13:52:25.610 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:25.610 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:52:25.611  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Joe+Cocker+play+at+the+Woodstock+festival%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":4,"end":14,"spot":"Joe Cocker","confidence":0.9391,"id":88371,"title":"Joe Cocker","uri":"http://en.wikipedia.org/wiki/Joe_Cocker","abstract":"John Robert \"Joe\" Cocker (20 May 1944 – 22 December 2014) was an English singer known for his gritty, bluesy voice and dynamic stage performances that featured expressive body movements. Most of his best known singles, such as.","label":"Joe Cocker","categories":["1944 births","2014 deaths","20th-century English singers","21st-century English singers","A&M Records artists","Capitol Records artists","DJM Records artists","Deaths from cancer in Colorado","Deaths from lung cancer","English baritones","English expatriates in the United States","English pop singers","English rock singers","English soul singers","Gasfitters","Grammy Award winners","Island Records artists","Joe Cocker","Musicians from Sheffield","Officers of the Order of the British Empire","People deported from Australia","Rocket Records artists","The Grease Band members"],"types":["http://dbpedia.org/ontology/MusicalArtist","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Artist","http://dbpedia.org/ontology/Animal"]},{"start":15,"end":19,"spot":"play","confidence":0.6715,"id":52086,"title":"Word play","uri":"http://en.wikipedia.org/wiki/Word_play","abstract":"Word play or wordplay (also: play-on-words) is a literary technique and a form of wit in which words used become the main subject of the work, primarily for the purpose of intended effect or amusement. Examples of word play include puns, phonetic mix-ups such as spoonerisms, obscure words and meanings, clever rhetorical excursions, oddly formed sentences, double entendres, and telling character names (such as in the play The Importance of Being Earnest, Ernest being a given name that sounds exactly like the adjective earnest).","label":"Word play","categories":["Comedy genres","Rhetoric","Word games","Word play"],"types":[]},{"start":27,"end":45,"spot":"Woodstock festival","confidence":0.9108,"id":33884,"title":"Woodstock","uri":"http://en.wikipedia.org/wiki/Woodstock","abstract":"Woodstock Music and Art Fair, commonly referred to as Woodstock, was a music festival held during August 15–18, 1969, on Max Yasgur's dairy farm in Bethel, New York, United States, southwest of the town of Woodstock. Billed as \"an Aquarian Exposition: 3 Days of Peace & Music\" and alternatively referred to as the Woodstock Rock Festival, it attracted more than 400,000 attendees. Thirty-two acts performed outdoors despite sporadic rain. It was one of the largest music festivals in history.","label":"Woodstock","categories":["1969 festivals","1969 in American music","1969 in New York (state)","1969 in music","1969 music festivals","August 1969 events in the United States","Catskills","Commemorative stamps","Concerts in the United States","Counterculture festivals","Counterculture of the 1960s","Free festivals","Hippie movement","Jam band festivals","Mass media franchises","Music festivals established in 1969","National Register of Historic Places in Sullivan County, New York","Riots and civil disorder in New York (state)","Rock festivals in the United States","Timeline of 1960s counterculture","Tourist attractions in Sullivan County, New York","Woodstock Festival"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:25.591"} -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 4 -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 14 -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Joe_Cocker -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 15 -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 19 -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Word_play -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 27 -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 45 -2023-10-27 13:52:25.611 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Woodstock -2023-10-27 13:52:25.617 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_04d8a21e-f3a7-4db1-93ab-47d03ee149d1 -2023-10-27 13:52:25.618  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2132d272 -2023-10-27 13:52:25.618 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:25.620  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Joe_Cocker" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.621  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Joe_Cocker" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.621 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Joe_Cocker" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.631  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@47f73568 -2023-10-27 13:52:25.631 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:25.633  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "15"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Word_play" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.633  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "15"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Word_play" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.633 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "15"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Word_play" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.639  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4281037c -2023-10-27 13:52:25.641 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:25.644  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Woodstock" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.644  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Woodstock" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.644 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Woodstock" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:25.650 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : processing took: 108 ms -2023-10-27 13:52:29.513  INFO 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"} -2023-10-27 13:52:29.514  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"} -2023-10-27 13:52:29.514  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"},"inGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb","outGraph":"urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb"} -2023-10-27 13:52:29.514  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@694c14e2 -2023-10-27 13:52:29.527  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@784880a8 -2023-10-27 13:52:29.528 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:29.529  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:29.529  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:29.537 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a50f0b8-7640-4f89-ad2b-61d6b80426e2 -2023-10-27 13:52:29.537  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a50f0b8-7640-4f89-ad2b-61d6b80426e2 found in urn:graph:43d594f1-1d01-4af0-851c-f687f8d160bb at http://localhost:8080/sparql -2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When did Allen Ginsberg die? -2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Question When did Allen Ginsberg die? -2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=When+did+Allen+Ginsberg+die%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=When+did+Allen+Ginsberg+die%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:29.539 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:52:29.539  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1710231881 -2023-10-27 13:52:29.587 DEBUG 28726 --- [nio-8088-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@58efdeae -2023-10-27 13:52:29.587 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:29.587 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:52:29.587  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=When+did+Allen+Ginsberg+die%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":9,"end":23,"spot":"Allen Ginsberg","confidence":0.8609,"id":37352,"title":"Allen Ginsberg","uri":"http://de.wikipedia.org/wiki/Allen_Ginsberg","abstract":"Irwin Allen Ginsberg (* 3. Juni 1926 in Paterson, New Jersey; † 5. April 1997 in New York) war ein US-amerikanischer Dichter der Beat Generation. Er gilt als Vater der Flower-Power-Bewegung.","label":"Allen Ginsberg","categories":["Autor","Beat Generation","Geboren 1926","Gestorben 1997","Homosexualität in der Literatur","LGBT-Aktivist (Vereinigte Staaten)","Literatur (20. Jahrhundert)","Literatur (Englisch)","Literatur (Vereinigte Staaten)","Lyrik","Mann","Mitglied der American Academy of Arts and Letters","Mitglied der American Academy of Arts and Sciences","Person (Hippiebewegung)","Person (New York)","Person des Anarchismus","Person des Vajrayana-Buddhismus","Person des tibetischen Buddhismus","Träger des National Book Award","US-Amerikaner"],"types":["http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work"]}],"lang":"de","langConfidence":0.6424,"timestamp":"2023-10-27T11:52:29.569"} -2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 -2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 -2023-10-27 13:52:29.588 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Allen_Ginsberg -2023-10-27 13:52:29.595 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a50f0b8-7640-4f89-ad2b-61d6b80426e2 -2023-10-27 13:52:29.595  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1144b -2023-10-27 13:52:29.595 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:29.597  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Allen_Ginsberg" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:29.597  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Allen_Ginsberg" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:29.597 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Allen_Ginsberg" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:29.604 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : processing took: 90 ms -2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"} -2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"} -2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"},"inGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43","outGraph":"urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43"} -2023-10-27 13:52:33.601  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7bd7ad0e -2023-10-27 13:52:33.608  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@280684a8 -2023-10-27 13:52:33.609 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:33.610  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:33.610  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:33.616 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d04df65b-f42b-4906-8917-4bec7b66b02b -2023-10-27 13:52:33.617  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d04df65b-f42b-4906-8917-4bec7b66b02b found in urn:graph:09fb6f66-d368-40f6-88fc-7077bc4a0c43 at http://localhost:8080/sparql -2023-10-27 13:52:33.618 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What brand uses petroleum jelly? -2023-10-27 13:52:33.618 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question What brand uses petroleum jelly? -2023-10-27 13:52:33.619 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+brand+uses+petroleum+jelly%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:33.619 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+brand+uses+petroleum+jelly%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:33.619 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:52:33.619  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1866798781 -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4237b4cc -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:52:33.699  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+brand+uses+petroleum+jelly%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":5,"end":10,"spot":"brand","confidence":0.7055,"id":18950900,"title":"Brand","uri":"http://en.wikipedia.org/wiki/Brand","abstract":"A brand is a name, term, design, symbol or any other feature that distinguishes one seller's good or service from those of other sellers. Brands are used in business, marketing, and advertising for recognition and, importantly, to create and store value as brand equity for the object identified, to the benefit of the brand's customers, its owners and shareholders. Brand names are sometimes distinguished from generic or store brands.","label":"Brand","categories":["Brand management","Branding terminology","Brands","Communication design","Graphic design","Intangible assets","Product management"],"types":[]},{"start":16,"end":31,"spot":"petroleum jelly","confidence":0.8928,"id":271860,"title":"Petroleum jelly","uri":"http://en.wikipedia.org/wiki/Petroleum_jelly","abstract":"Petroleum jelly, petrolatum, white petrolatum, soft paraffin, or multi-hydrocarbon, CAS number 8009-03-8, is a semi-solid mixture of hydrocarbons (with carbon numbers mainly higher than 25), originally promoted as a topical ointment for its healing properties. Vaseline has been a well-known American brand of petroleum jelly since 1870.","label":"Petroleum jelly","categories":["American inventions","Amorphous solids","Cosmetics chemicals","Dosage forms","Personal lubricants","Petroleum products"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:52:33.665"} -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 5 -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 10 -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Brand -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 16 -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 31 -2023-10-27 13:52:33.699 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Petroleum_jelly -2023-10-27 13:52:33.705 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d04df65b-f42b-4906-8917-4bec7b66b02b -2023-10-27 13:52:33.705  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fe05d2d -2023-10-27 13:52:33.705 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:33.707  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Brand" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:33.707  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Brand" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:33.707 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Brand" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:33.714  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39992002 -2023-10-27 13:52:33.715 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:33.716  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Petroleum_jelly" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:33.716  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Petroleum_jelly" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:33.716 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Petroleum_jelly" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:33.722 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 121 ms -2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:35.695  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@ee6d92b -2023-10-27 13:53:35.702  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@781912ae -2023-10-27 13:53:35.702 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:35.703  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:35.703  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:35.714 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:35.714  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql -2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? -2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question Which universities have more than 200000 students? -2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:53:35.716 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:53:35.717 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:53:35.717  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-962009526 -2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@631d789b -2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:53:36.047  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:53:36.047 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":0,"annotations":[{"start":6,"end":18,"spot":"universities","confidence":0.7669,"id":19725260,"title":"University","uri":"http://en.wikipedia.org/wiki/University","abstract":"A university is an institution of higher (or tertiary) education and research which awards academic degrees in several academic disciplines. Universities typically offer both undergraduate and postgraduate programs. In the United States, the designation is reserved for colleges that have a graduate school.","label":"University","categories":["Educational stages","Higher education","Types of university or college","Universities and colleges"],"types":[]},{"start":41,"end":49,"spot":"students","confidence":0.7604,"id":155526,"title":"Student","uri":"http://en.wikipedia.org/wiki/Student","abstract":"A student is a person enrolled in a school or other educational institution. In the United Kingdom and most commonwealth countries, a \"student\" attends a secondary school or higher (e.g., college or university); those in primary or elementary schools are \"pupils\".","label":"Student","categories":["Students"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:53:36.027"} -2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 6 -2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 18 -2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/University -2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 41 -2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 49 -2023-10-27 13:53:36.048 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Student -2023-10-27 13:53:36.053 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:36.053  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b72c6ee -2023-10-27 13:53:36.053 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:53:36.055  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/University" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:36.055  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/University" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:36.055 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/University" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:36.063  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e1d3b8 -2023-10-27 13:53:36.063 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:53:36.065  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Student" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:36.065  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Student" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:36.065 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Student" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:36.071 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 376 ms -2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:10.881  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@96e9ebc -2023-10-27 13:54:10.888  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e786ca1 -2023-10-27 13:54:10.889 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:10.889  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:10.890  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:10.898 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 -2023-10-27 13:54:10.898  INFO 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql -2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? -2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Question Did Kobe Bryant leave the Lakers when LeBron James joined that team? -2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Kobe+Bryant+leave+the+Lakers+when+LeBron+James+joined+that+team%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Kobe+Bryant+leave+the+Lakers+when+LeBron+James+joined+that+team%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:54:10.900 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:54:10.900  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=321342393 -2023-10-27 13:54:11.035 DEBUG 28726 --- [nio-8088-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@776cd774 -2023-10-27 13:54:11.036 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:11.036 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:54:11.036  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Did+Kobe+Bryant+leave+the+Lakers+when+LeBron+James+joined+that+team%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:54:11.037 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":4,"end":15,"spot":"Kobe Bryant","confidence":0.9576,"id":246185,"title":"Kobe Bryant","uri":"http://en.wikipedia.org/wiki/Kobe_Bryant","abstract":"Kobe Bean Bryant (August 23, 1978 – January 26, 2020) was an American professional basketball player. A shooting guard, he spent his entire 20-year career with the Los Angeles Lakers in the National Basketball Association (NBA). Widely regarded as one of the greatest basketball players of all time, Bryant won five NBA championships, was an 18-time All-Star, a 15-time member of the All-NBA Team, a 12-time member of the All-Defensive Team, the 2008 NBA Most Valuable Player (MVP), and a two-time NBA Finals MVP. Bryant also led the NBA in scoring twice, and ranks fourth in league all-time regular season and postseason scoring. He was posthumously voted into the Naismith Memorial Basketball Hall of Fame in 2020 and named to the NBA 75th Anniversary Team in 2021.","label":"Kobe Bryant","categories":["1978 births","2020 deaths","Accidental deaths in California","African-American Catholics","African-American basketball players","American expatriate basketball people in Italy","American men's basketball players","American men podcasters","American philanthropists","American podcasters","Basketball players at the 2008 Summer Olympics","Basketball players at the 2012 Summer Olympics","Basketball players from Los Angeles","Basketball players from Philadelphia","Burials at Pacific View Memorial Park","Catholics from California","Catholics from Pennsylvania","Charlotte Hornets draft picks","Deaths from fire in the United States","Kobe Bryant","Los Angeles Lakers players","Lower Merion High School alumni","McDonald's High School All-Americans","Medalists at the 2008 Summer Olympics","Medalists at the 2012 Summer Olympics","Naismith Memorial Basketball Hall of Fame inductees","National Basketball Association All-Stars","National Basketball Association high school draftees","National Basketball Association players with retired numbers","Olympic gold medalists for the United States in basketball","Parade High School All-Americans (boys' basketball)","Philanthropists from California","Philanthropists from Pennsylvania","Producers who won the Best Animated Short Academy Award","Shooting guards","Sportspeople from Newport Beach, California","United States men's national basketball team players","Victims of aviation accidents or incidents in 2020","Victims of helicopter accidents or incidents in the United States"],"types":[]},{"start":26,"end":32,"spot":"Lakers","confidence":0.7934,"id":72893,"title":"Los Angeles Lakers","uri":"http://en.wikipedia.org/wiki/Los_Angeles_Lakers","abstract":"The Los Angeles Lakers are an American professional basketball team based in Los Angeles. The Lakers compete in the National Basketball Association (NBA) as a member of the league's Western Conference Pacific Division. The Lakers play their home games at Crypto.com Arena, an arena shared with the NBA's Los Angeles Clippers, the Los Angeles Sparks of the Women's National Basketball Association, and the Los Angeles Kings of the National Hockey League. The Lakers are one of the most successful teams in the history of the NBA, and have won 17 NBA championships, tied with the Boston Celtics for the most in NBA history.","label":"Los Angeles Lakers","categories":["1947 establishments in Minnesota","1960 establishments in California","Basketball teams established in 1947","Basketball teams in Los Angeles","Los Angeles Lakers","National Basketball Association teams","Relocated National Basketball Association teams"],"types":["http://dbpedia.org/ontology/BasketballTeam","http://dbpedia.org/ontology/SportsTeam","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]},{"start":38,"end":50,"spot":"LeBron James","confidence":0.9553,"id":240940,"title":"LeBron James","uri":"http://en.wikipedia.org/wiki/LeBron_James","abstract":"LeBron Raymone James Sr. (born December 30, 1984), also known as Bron for short, is an American professional basketball player for the Los Angeles Lakers of the National Basketball Association (NBA). Nicknamed \"King James\", he is widely regarded as one of the greatest players in the history of the sport and is often compared to Michael Jordan in debates over the greatest basketball player of all time. James is the all-time leading scorer in NBA history and ranks fourth in career assists. He has won four NBA championships (two with the Miami Heat, one each with the Lakers and Cleveland Cavaliers), and has competed in 10 NBA Finals, including eight consecutive Finals appearances from 2011 to 2018. He has also won four Most Valuable Player (MVP) Awards, four Finals MVP Awards, and two Olympic gold medals, and has been named an All-Star 19 times, selected to the All-NBA Team 19 times (including 13 First Team selections) and the All-Defensive Team six times, and was a runner-up for the NBA Defensive Player of the Year Award twice in his career.","label":"LeBron James","categories":["1984 births","2006 FIBA World Championship players","21st-century American male actors","African-American basketball players","African-American billionaires","African-American businesspeople","African-American film producers","African-American investors","African-American male actors","African-American television producers","Amateur Athletic Union men's basketball players","American film producers","American investors","American male film actors","American male television actors","American male voice actors","American men's basketball players","American philanthropists","American soccer chairmen and investors","Basketball players at the 2004 Summer Olympics","Basketball players at the 2008 Summer Olympics","Basketball players at the 2012 Summer Olympics","Basketball players from Akron, Ohio","Basketball players from Los Angeles","Businesspeople from Akron, Ohio","Businesspeople from Los Angeles","California Democrats","Cleveland Cavaliers draft picks","Cleveland Cavaliers players","Fenway Sports Group people","Film producers from California","Film producers from Ohio","Illeists","LeBron James","Liverpool F.C. chairmen and investors","Living people","Los Angeles Lakers players","Male actors from Akron, Ohio","Male actors from California","Male actors from Los Angeles","McDonald's High School All-Americans","Medalists at the 2004 Summer Olympics","Medalists at the 2008 Summer Olympics","Medalists at the 2012 Summer Olympics","Miami Heat players","National Basketball Association All-Stars","National Basketball Association high school draftees","Olympic bronze medalists for the United States in basketball","Olympic gold medalists for the United States in basketball","Parade High School All-Americans (boys' basketball)","People from Brentwood, Los Angeles","Power forwards (basketball)","Small forwards","St. Vincent–St. Mary High School alumni","Television producers from Ohio","United States men's national basketball team players"],"types":["http://dbpedia.org/ontology/BasketballPlayer","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Athlete","http://dbpedia.org/ontology/Animal"]},{"start":63,"end":67,"spot":"team","confidence":0.6687,"id":988407,"title":"Team sport","uri":"http://en.wikipedia.org/wiki/Team_sport","abstract":"A team sport includes any sport where individuals are organized into opposing teams which compete to win or cooperate to entertain their audience. Team members act together towards a shared objective. This can be done in a number of ways such as outscoring the opposing team. Team members set goals, make decisions, communicate, manage conflict, and solve problems in a supportive, trusting atmosphere in order to accomplish their objectives. Examples are basketball, volleyball, rugby, water polo, handball, lacrosse, cricket, baseball, and the various forms of football, and hockey. Team sports require internal coordination between members of the team in order to achieve success.","label":"Team sport","categories":["Sports terminology","Team activities","Team sports"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:54:11.015"} -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 4 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 15 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Kobe_Bryant -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 26 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 32 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Los_Angeles_Lakers -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 38 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 50 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/LeBron_James -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 63 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : End: 67 -2023-10-27 13:54:11.038 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Team_sport -2023-10-27 13:54:11.046 DEBUG 28726 --- [nio-8088-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 -2023-10-27 13:54:11.046  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a8ca05c -2023-10-27 13:54:11.046 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:11.048  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.048  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.048 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.054  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1857a2a4 -2023-10-27 13:54:11.054 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:11.056  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Los_Angeles_Lakers" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.056  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Los_Angeles_Lakers" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.056 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Los_Angeles_Lakers" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.064  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43993fc2 -2023-10-27 13:54:11.064 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:11.065  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/LeBron_James" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.066  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/LeBron_James" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.066 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/LeBron_James" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.072  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@525f97b2 -2023-10-27 13:54:11.072 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:11.074  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "63"^^xsd:nonNegativeInteger . - _:b1 oa:end "68"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Team_sport" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.074  INFO 28726 --- [nio-8088-exec-1] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "63"^^xsd:nonNegativeInteger . - _:b1 oa:end "68"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Team_sport" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.074 DEBUG 28726 --- [nio-8088-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "63"^^xsd:nonNegativeInteger . - _:b1 oa:end "68"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Team_sport" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:11.081 DEBUG 28726 --- [nio-8088-exec-1] e.w.q.component.QanaryServiceController  : processing took: 200 ms -2023-10-27 13:54:32.607  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:32.608  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:32.608  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:32.608  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@2526c05d -2023-10-27 13:54:32.617  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a4891e1 -2023-10-27 13:54:32.617 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:32.618  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:32.618  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:32.624 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c -2023-10-27 13:54:32.624  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql -2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:54:32.628 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:54:32.629  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1199248673 -2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@57d51b75 -2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:54:32.756  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":5,"end":16,"spot":"Bremerhaven","confidence":0.8733,"id":18933240,"title":"Bremerhaven","uri":"http://en.wikipedia.org/wiki/Bremerhaven","abstract":"Bremerhaven is a city at the seaport of the Free Hanseatic City of Bremen, a state of the Federal Republic of Germany.","label":"Bremerhaven","categories":["1827 establishments in Bremen","Bremerhaven","Enclaves and exclaves","Populated coastal places in Germany (North Sea)","Port cities and towns in Germany","Port cities and towns of the North Sea"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:54:32.736"} -2023-10-27 13:54:32.756 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 5 -2023-10-27 13:54:32.757 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 16 -2023-10-27 13:54:32.757 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Bremerhaven -2023-10-27 13:54:32.764 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c -2023-10-27 13:54:32.764  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44621dfa -2023-10-27 13:54:32.764 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:54:32.766  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Bremerhaven" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:32.766  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Bremerhaven" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:32.766 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Bremerhaven" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:32.772 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 164 ms -2023-10-27 13:57:36.290  INFO 28726 --- [nio-8088-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.291  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.292  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.292  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6c722b81 -2023-10-27 13:57:36.336  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@62b5d87f -2023-10-27 13:57:36.342 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:36.358  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:36.359  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:36.373 DEBUG 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:36.373  INFO 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql -2023-10-27 13:57:36.392 DEBUG 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? -2023-10-27 13:57:36.392 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : Question How many people died due to the Great Leap Forward according to the highest estimate? -2023-10-27 13:57:36.394 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:36.396 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:36.396 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:57:36.401  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1346854899 -2023-10-27 13:57:36.555 DEBUG 28726 --- [nio-8088-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2388d244 -2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:57:36.556  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":32,"end":50,"spot":"Great Leap Forward","confidence":0.8609,"id":71262,"title":"Great Leap Forward","uri":"http://en.wikipedia.org/wiki/Great_Leap_Forward","abstract":"The Great Leap Forward of the People's Republic of China (PRC) was an economic and social campaign led by the Chinese Communist Party (CCP) from 1958 to 1962. CCP Chairman Mao Zedong launched the campaign to reconstruct the country from an agrarian economy into an industrialized society through the formation of people's communes. Mao decreed that efforts to multiply grain yields and bring industry to the countryside should be increased. Local officials were fearful of Anti-Rightist Campaigns and they competed to fulfill or over-fulfill quotas which were based on Mao's exaggerated claims, collecting non-existent \"surpluses\" and leaving farmers to starve to death. Higher officials did not dare to report the economic disaster which was being caused by these policies, and national officials, blaming bad weather for the decline in food output, took little or no action. Millions of people died in China during the Great Leap, with estimates ranging from 15 to 55 million, making the Great Chinese Famine the largest or second-largest famine in human history.","label":"Great Leap Forward","categories":["1950s in China","1950s neologisms","1958 in China","1959 in China","1960 in China","1960s in China","Campaigns of the Chinese Communist Party","Cold War history of China","Crimes against humanity","Economic collapses","Economic history of the People's Republic of China","Famines in China","Great Leap Forward","Incidents of cannibalism","Industrial history of China","Man-made disasters in China","Maoist terminology","Political controversies in China","Politicides"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:36.538"} -2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 32 -2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : End: 50 -2023-10-27 13:57:36.556 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Great_Leap_Forward -2023-10-27 13:57:36.570 DEBUG 28726 --- [nio-8088-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:36.571  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e5bcb97 -2023-10-27 13:57:36.571 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:36.575  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Great_Leap_Forward" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.576  INFO 28726 --- [nio-8088-exec-4] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Great_Leap_Forward" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.576 DEBUG 28726 --- [nio-8088-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Great_Leap_Forward" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.598 DEBUG 28726 --- [nio-8088-exec-4] e.w.q.component.QanaryServiceController  : processing took: 307 ms -2023-10-27 13:57:59.694  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:57:59.694  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:57:59.695  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:57:59.695  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9329c7f -2023-10-27 13:57:59.710  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6382c1aa -2023-10-27 13:57:59.710 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:59.712  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:59.713  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:59.720 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 -2023-10-27 13:57:59.720  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql -2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:59.722 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:57:59.723  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1780760583 -2023-10-27 13:57:59.854 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@ffa7610 -2023-10-27 13:57:59.854 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:59.854 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:57:59.854  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":3,"annotations":[{"start":24,"end":35,"spot":"the witcher","confidence":0.8785,"id":33912861,"title":"The Witcher","uri":"http://en.wikipedia.org/wiki/The_Witcher","abstract":"The Witcher is a series of six fantasy novels and 15 short stories written by Polish author Andrzej Sapkowski. The series revolves around the eponymous \"witcher\", Geralt of Rivia. In Sapkowski's works, \"witchers\" are beast hunters who are given supernatural abilities at a young age to battle wild beasts and monsters. The Witcher began with a titular 1986 short story that Sapkowski entered into a competition held by Fantastyka magazine, marking his debut as an author. Due to reader demand, Sapkowski wrote 14 more stories before starting a series of novels in 1994. Known as The Witcher Saga, he wrote one book a year until the fifth and final installment in 1999. A standalone prequel novel, Season of Storms, was published in 2013.","label":"The Witcher","categories":["Book series introduced in 1986","Family saga novels","Novels adapted into comics","Novels adapted into video games","Polish fantasy","Polish novels","Polish novels adapted into films","Polish novels adapted into television shows","Polish short stories","Slavic mythology in popular culture","The Witcher"],"types":[]},{"start":69,"end":77,"spot":"Yennefer","confidence":0.7768,"id":64246707,"title":"Yennifer Toledo","uri":"http://en.wikipedia.org/wiki/Yennifer_Toledo","abstract":"Yennifer Amanda Toledo Abreu (born 1 October 2000) is a Cuban handball player for Villa Clara and the Cuban national team.","label":"Yennifer Toledo","categories":["2000 births","21st-century Cuban women","Central American and Caribbean Games bronze medalists for Cuba","Central American and Caribbean Games medalists in handball","Competitors at the 2018 Central American and Caribbean Games","Cuban female handball players","Handball players at the 2019 Pan American Games","Living people","Medalists at the 2019 Pan American Games","Pan American Games bronze medalists for Cuba","Pan American Games medalists in handball"],"types":["http://dbpedia.org/ontology/HandballPlayer","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Athlete","http://dbpedia.org/ontology/Animal"]},{"start":96,"end":101,"spot":"Triss","confidence":0.8054,"id":61317,"title":"Shannara","uri":"http://en.wikipedia.org/wiki/Shannara","abstract":"Shannara is a series of high fantasy novels written by Terry Brooks, beginning with The Sword of Shannara in 1977 and concluding with The Last Druid which was released in October 2020; there is also a prequel, First King of Shannara. The series blends magic and primitive technology and is set in the Four Lands, which are identified as Earth long after civilization was destroyed in a chemical and nuclear holocaust called the Great Wars. By the time of the prequel First King of Shannara, the world had reverted to a pre-industrial state and magic had re-emerged to supplement science.","label":"Shannara","categories":["American novels adapted into television shows","Book series introduced in 1977","High fantasy novels","Novels adapted into video games","Shannara"],"types":[]},{"start":102,"end":110,"spot":"Merigold","confidence":0.7486,"id":122224,"title":"Merigold, Mississippi","uri":"http://en.wikipedia.org/wiki/Merigold%2C_Mississippi","abstract":"Merigold (sometimes misspelled as Marigold or Merrigold) is a town in Bolivar County, Mississippi, United States. Per the 2020 census, the population was 379.","label":"Merigold","categories":["Mississippi Blues Trail","Towns in Bolivar County, Mississippi","Towns in Mississippi"],"types":["http://dbpedia.org/ontology/Town","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:59.833"} -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 24 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 35 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/The_Witcher -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 69 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 77 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Yennifer_Toledo -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 96 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 101 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Shannara -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 102 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 110 -2023-10-27 13:57:59.855 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Merigold%2C_Mississippi -2023-10-27 13:57:59.861 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 -2023-10-27 13:57:59.861  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1236d2f4 -2023-10-27 13:57:59.862 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:59.863  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/The_Witcher" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.864  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/The_Witcher" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.864 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/The_Witcher" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.870  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67ccde89 -2023-10-27 13:57:59.870 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:59.872  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "69"^^xsd:nonNegativeInteger . - _:b1 oa:end "78"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Yennifer_Toledo" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.872  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "69"^^xsd:nonNegativeInteger . - _:b1 oa:end "78"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Yennifer_Toledo" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.872 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "69"^^xsd:nonNegativeInteger . - _:b1 oa:end "78"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Yennifer_Toledo" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.881  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e6c168b -2023-10-27 13:57:59.881 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:59.882  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "96"^^xsd:nonNegativeInteger . - _:b1 oa:end "102"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Shannara" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.883  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "96"^^xsd:nonNegativeInteger . - _:b1 oa:end "102"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Shannara" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.883 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "96"^^xsd:nonNegativeInteger . - _:b1 oa:end "102"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Shannara" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.890  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@27ab1a0 -2023-10-27 13:57:59.890 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:59.892  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "102"^^xsd:nonNegativeInteger . - _:b1 oa:end "111"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Merigold%2C_Mississippi" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.892  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "102"^^xsd:nonNegativeInteger . - _:b1 oa:end "111"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Merigold%2C_Mississippi" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.892 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "102"^^xsd:nonNegativeInteger . - _:b1 oa:end "111"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Merigold%2C_Mississippi" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:59.900 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 206 ms -2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:43.865  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@2c2e5b1f -2023-10-27 13:58:43.892  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2af962b0 -2023-10-27 13:58:43.892 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:43.893  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:43.893  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:43.902 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:43.902  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql -2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Question Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:43.903 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:43.904 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:58:43.904  INFO 28726 --- [io-8088-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-612690955 -2023-10-27 13:58:44.087 DEBUG 28726 --- [io-8088-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3979fc7b -2023-10-27 13:58:44.087 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:58:44.088  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":24,"end":32,"spot":"Free Guy","confidence":0.9181,"id":60203476,"title":"Free Guy","uri":"http://en.wikipedia.org/wiki/Free_Guy","abstract":"Free Guy is a 2021 American action comedy film directed and produced by Shawn Levy from a screenplay by Matt Lieberman and Zak Penn, and a story by Lieberman. The film stars Ryan Reynolds, Jodie Comer, Lil Rel Howery, Utkarsh Ambudkar, Joe Keery, and Taika Waititi. It tells the story of a bank teller who discovers that he is a non-player character in a massively multiplayer online game who then partners with a player to find evidence that a gaming company's CEO stole the player's game's source code.","label":"Free Guy","categories":["2020s American films","2020s English-language films","2020s science fiction comedy films","2021 action comedy films","2021 films","2021 science fiction action films","20th Century Studios films","21 Laps Entertainment films","4DX films","American action comedy films","American science fiction action films","American science fiction comedy films","Films about video games","Films about virtual reality","Films directed by Shawn Levy","Films postponed due to the COVID-19 pandemic","Films produced by Greg Berlanti","Films produced by Ryan Reynolds","Films scored by Christophe Beck","Films set in the future","Films shot in Boston","Films shot in Massachusetts","IMAX films","Self-reflexive films","TSG Entertainment films","Works set in computers"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]},{"start":49,"end":57,"spot":"Deadpool","confidence":0.9265,"id":43867095,"title":"Deadpool (film)","uri":"http://en.wikipedia.org/wiki/Deadpool_%28film%29","abstract":"Deadpool is a 2016 American superhero film based on the Marvel Comics character of the same name. Distributed by 20th Century Fox, it is a spin-off in the X-Men film series and the eighth installment overall. Directed by Tim Miller (in his feature directorial debut) and written by Rhett Reese and Paul Wernick, it stars Ryan Reynolds in the title role alongside Morena Baccarin, Ed Skrein, T. J. Miller, Gina Carano, and Brianna Hildebrand. In the film, Wade Wilson hunts the man who gave him mutant abilities and a scarred physical appearance, becoming the antihero Deadpool.","label":"Deadpool","categories":["2010s American films","2010s English-language films","2010s superhero comedy films","2016 action comedy films","2016 black comedy films","2016 directorial debut films","2016 films","20th Century Fox films","American action comedy films","American black comedy films","American films about revenge","American superhero films","American vigilante films","Deadpool (film series)","Film spin-offs","Films directed by Tim Miller","Films produced by Lauren Shuler Donner","Films produced by Ryan Reynolds","Films produced by Simon Kinberg","Films scored by Junkie XL","Films set in Westchester County, New York","Films shot in Vancouver","Films using motion capture","Films with screenplays by Paul Wernick","Films with screenplays by Rhett Reese","Human experimentation in fiction","IMAX films","Live-action films based on Marvel Comics","Metafictional works","Self-reflexive films","Superhero black comedy films","TSG Entertainment films","X-Men (film series)"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:44.066"} -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 24 -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 32 -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Free_Guy -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 49 -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 57 -2023-10-27 13:58:44.088 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Deadpool_%28film%29 -2023-10-27 13:58:44.093 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:44.093  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ed919e -2023-10-27 13:58:44.093 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:44.095  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Free_Guy" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.096  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Free_Guy" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.096 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Free_Guy" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.103  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4894d42f -2023-10-27 13:58:44.103 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:44.104  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "58"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Deadpool_%28film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.105  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "58"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Deadpool_%28film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.105 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "58"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Deadpool_%28film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.111 DEBUG 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : processing took: 246 ms -2023-10-27 13:58:58.177  INFO 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.178  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.178  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.178  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@963ebad -2023-10-27 13:58:58.187  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@351267e9 -2023-10-27 13:58:58.188 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:58.189  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:58.189  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:58.196 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:58:58.196  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql -2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? -2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Question What notes does a C major chord consist of? -2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:58.199 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:58:58.199  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-709828756 -2023-10-27 13:58:58.320 DEBUG 28726 --- [nio-8088-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1b053829 -2023-10-27 13:58:58.320 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:58:58.321  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":18,"end":25,"spot":"C major","confidence":0.7995,"id":421402,"title":"C major","uri":"http://en.wikipedia.org/wiki/C_major","abstract":"C major (or the key of C) is a major scale based on C, consisting of the pitches C, D, E, F, G, A, and B. C major is one of the most common keys used in music. Its key signature has no flats or sharps. Its relative minor is A minor and its parallel minor is C minor.","label":"C major","categories":["Compositions in C major","Major scales","Musical keys"],"types":[]},{"start":20,"end":31,"spot":"major chord","confidence":0.7794,"id":417032,"title":"Major chord","uri":"http://en.wikipedia.org/wiki/Major_chord","abstract":"In music theory, a major chord is a chord that has a root, a major third, and a perfect fifth. When a chord comprises only these three notes, it is called a major triad. For example, the major triad built on C, called a C major triad, has pitches C–E–G:","label":"Major chord","categories":["Chords"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:58.301"} -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 18 -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/C_major -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 20 -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 31 -2023-10-27 13:58:58.321 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Major_chord -2023-10-27 13:58:58.327 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:58:58.327  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d2d9667 -2023-10-27 13:58:58.327 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:58.332  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/C_major" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.332  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/C_major" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.332 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/C_major" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.339  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ba68504 -2023-10-27 13:58:58.340 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:58.342  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Major_chord" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.342  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Major_chord" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.342 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Major_chord" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.350 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : processing took: 173 ms -2023-10-27 13:59:03.901  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:03.901  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:03.903  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:03.903  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5abb5b0e -2023-10-27 13:59:03.950  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1870efcf -2023-10-27 13:59:03.951 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:03.957  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:03.957  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:03.975 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f -2023-10-27 13:59:03.975  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql -2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question in which language does the united stated have the shortest short name? -2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:03.979 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:03.980 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:59:03.981  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-687015730 -2023-10-27 13:59:04.177 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@33d80dc0 -2023-10-27 13:59:04.177 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:59:04.178 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:59:04.179  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:04.179 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":9,"end":17,"spot":"language","confidence":0.671,"id":6880370,"title":"Philosophy of language","uri":"http://en.wikipedia.org/wiki/Philosophy_of_language","abstract":"In analytic philosophy, philosophy of language investigates the nature of language and the relations between language, language users, and the world. Investigations may include inquiry into the nature of meaning, intentionality, reference, the constitution of sentences, concepts, learning, and thought.","label":"Philosophy of language","categories":["Analytic philosophy","Meaning (philosophy of language)","Philosophy of language","Semantics","Semiotics"],"types":[]},{"start":59,"end":69,"spot":"short name","confidence":0.6764,"id":53430,"title":"Nickname","uri":"http://en.wikipedia.org/wiki/Nickname","abstract":"A nickname or short name is a substitute for the proper name of a person, place or thing. It is commonly used to express affection, amusement, a character trait or defamation of character. It is distinct from a pseudonym, stage name or title, although the concepts can overlap. Also known as sobriquet, it is typically informal.","label":"Nickname","categories":["Nicknames"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:59:04.093"} -2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 9 -2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 17 -2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Philosophy_of_language -2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 59 -2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 69 -2023-10-27 13:59:04.180 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Nickname -2023-10-27 13:59:04.190 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f -2023-10-27 13:59:04.190  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33bb539e -2023-10-27 13:59:04.190 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:59:04.193  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Philosophy_of_language" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.194  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Philosophy_of_language" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.194 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Philosophy_of_language" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.206  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2caadcb1 -2023-10-27 13:59:04.206 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:59:04.208  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "70"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nickname" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.209  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "70"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nickname" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.209 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "70"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Nickname" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.220 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 319 ms -2023-10-27 14:00:07.442  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:07.442  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:07.443  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:07.443  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5e7e97a3 -2023-10-27 14:00:07.474  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@562fe557 -2023-10-27 14:00:07.474 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:07.475  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:07.475  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:07.485 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 -2023-10-27 14:00:07.486  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql -2023-10-27 14:00:07.487 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? -2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question Which egyptian pyramid is the tallest? -2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+egyptian+pyramid+is+the+tallest%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+egyptian+pyramid+is+the+tallest%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:07.488 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:07.488  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1858310610 -2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@48090b40 -2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:00:07.651  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+egyptian+pyramid+is+the+tallest%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:00:07.633"} -2023-10-27 14:00:07.651 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 209 ms -2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:22.407  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@53c5a732 -2023-10-27 14:00:22.417  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25a91315 -2023-10-27 14:00:22.417 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:22.418  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:22.418  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:22.423 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f -2023-10-27 14:00:22.424  INFO 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql -2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? -2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Question What is the second letter in the Greek alphabet? -2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+letter+in+the+Greek+alphabet%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+letter+in+the+Greek+alphabet%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:22.426 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:22.426  INFO 28726 --- [io-8088-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1950581997 -2023-10-27 14:00:22.552 DEBUG 28726 --- [io-8088-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@267e97d8 -2023-10-27 14:00:22.552 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:00:22.553  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+letter+in+the+Greek+alphabet%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":25,"spot":"second letter","confidence":0.7412,"id":8859979,"title":"Epistles (Plato)","uri":"http://en.wikipedia.org/wiki/Epistles_%28Plato%29","abstract":"The Epistles (Greek: Ἐπιστολαί; Latin: Epistolae) of Plato are a series of thirteen letters traditionally included in the Platonic corpus. With the exception of the Seventh Letter, they are generally considered to be forgeries, although many scholars even reject the seventh.They were \"generally accepted as genuine until modern times\"; but by the close of the nineteenth century, many philologists believed that none of the letters were actually written by Plato.","label":"Epistles","categories":["Epistles of Plato"],"types":[]},{"start":33,"end":47,"spot":"Greek alphabet","confidence":0.8974,"id":3598847,"title":"History of the Greek alphabet","uri":"http://en.wikipedia.org/wiki/History_of_the_Greek_alphabet","abstract":"The history of the Greek alphabet starts with the adoption of Phoenician letter forms in the 9th–8th centuries BC during early Archaic Greece and continues to the present day. The Greek alphabet was developed during the Iron Age, centuries after the loss of Linear B, the syllabic script that was used for writing Mycenaean Greek until the Late Bronze Age collapse and Greek Dark Age. This article concentrates on the development of the alphabet before the modern codification of the standard Greek alphabet.","label":"History of the Greek alphabet","categories":["Greek alphabet","History of writing","Iron Age Greece","Palaeography"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:00:22.533"} -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Epistles_%28Plato%29 -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 33 -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : End: 47 -2023-10-27 14:00:22.553 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/History_of_the_Greek_alphabet -2023-10-27 14:00:22.560 DEBUG 28726 --- [io-8088-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f -2023-10-27 14:00:22.560  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58fc5812 -2023-10-27 14:00:22.560 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:00:22.562  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Epistles_%28Plato%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.562  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Epistles_%28Plato%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.562 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Epistles_%28Plato%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.570  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3520d9a3 -2023-10-27 14:00:22.570 DEBUG 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:00:22.571  INFO 28726 --- [io-8088-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "48"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/History_of_the_Greek_alphabet" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.571  INFO 28726 --- [io-8088-exec-10] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "48"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/History_of_the_Greek_alphabet" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.571 DEBUG 28726 --- [io-8088-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "48"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/History_of_the_Greek_alphabet" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.577 DEBUG 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : processing took: 170 ms -2023-10-27 14:02:10.707  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:10.710  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:10.710  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:10.710  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@26ff7269 -2023-10-27 14:02:10.725  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2746c8a9 -2023-10-27 14:02:10.725 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:10.725  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:10.726  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:10.736 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d -2023-10-27 14:02:10.736  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql -2023-10-27 14:02:10.737 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:02:10.737 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:02:10.738 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:02:10.738 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:02:10.738 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:02:10.738  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1694464597 -2023-10-27 14:02:10.863 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4e800fb1 -2023-10-27 14:02:10.863 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:02:10.864  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]},{"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]},{"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:02:10.844"} -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 21 -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 34 -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Impressionism -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 38 -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 51 -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Expressionism -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 53 -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 66 -2023-10-27 14:02:10.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Art_movement -2023-10-27 14:02:10.870 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d -2023-10-27 14:02:10.872  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13b14032 -2023-10-27 14:02:10.872 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:02:10.874  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Impressionism" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.874  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Impressionism" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.874 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Impressionism" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.882  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a3d16d -2023-10-27 14:02:10.882 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:02:10.883  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Expressionism" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.884  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Expressionism" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.884 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Expressionism" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.889  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19cc4fc7 -2023-10-27 14:02:10.890 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:02:10.891  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Art_movement" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.891  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Art_movement" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.891 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Art_movement" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:10.897 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 187 ms -2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:56.850  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@57ff36c8 -2023-10-27 14:04:56.864  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4e564cd5 -2023-10-27 14:04:56.864 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:56.866  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:56.866  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:56.872 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:04:56.872  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql -2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? -2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question What is the capital of the prefecture Tokyo ? -2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+capital+of+the+prefecture+Tokyo+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+capital+of+the+prefecture+Tokyo+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:04:56.875 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:04:56.875  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1800000773 -2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@547306af -2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:04:57.056  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+capital+of+the+prefecture+Tokyo+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:04:57.056 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":19,"spot":"capital","confidence":0.6717,"id":41188263,"title":"Madrid","uri":"http://en.wikipedia.org/wiki/Madrid","abstract":"Madrid is the capital and most populous city of Spain. The city has almost 3.4 million inhabitants and a metropolitan area population of approximately 6.7 million. It is the second-largest city in the European Union (EU), and its metropolitan area is the second-largest in the EU. The municipality covers geographical area. Madrid lies on the River Manzanares in the central part of the Iberian Peninsula. Capital city of both Spain (almost without interruption since 1561) and the surrounding autonomous community of Madrid (since 1983), it is also the political, economic and cultural centre of the country. The city is situated on an elevated plain about from the closest seaside location. The climate of Madrid features hot summers and cool winters.","label":"Madrid","categories":["9th-century establishments in Spain","Capitals in Europe","Madrid","Municipalities in the Community of Madrid","Populated places established in the 9th century"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]},{"start":38,"end":43,"spot":"Tokyo","confidence":0.8144,"id":30057,"title":"Tokyo","uri":"http://en.wikipedia.org/wiki/Tokyo","abstract":"Tokyo, officially the Tokyo Metropolis, is the capital and most populous city of Japan. Tokyo's metropolitan area (including neighboring prefectures) is the most populous in the world, with an estimated 37.468 million residents; although this number has been gradually decreasing since then, the prefecture itself has a population of 14.09 million people while the city's central 23 special wards have a population of 9.73 million. Located at the head of Tokyo Bay, the prefecture forms part of the Kantō region on the central coast of Honshu, Japan's largest island. Tokyo serves as Japan's economic center and is the seat of both the Japanese government and the Emperor of Japan.","label":"Tokyo","categories":["1457 establishments in Asia","15th-century establishments in Japan","Capitals in Asia","Kantō region","Populated coastal places in Japan","Populated places established in the 1450s","Port settlements in Japan","States and territories established in the 1450s","Tokyo"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:04:57.037"} -2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 19 -2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Madrid -2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 38 -2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 43 -2023-10-27 14:04:57.057 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Tokyo -2023-10-27 14:04:57.062 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:04:57.062  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e5b3458 -2023-10-27 14:04:57.062 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:57.064  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Madrid" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.064  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Madrid" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.064 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Madrid" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.071  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f2c5368 -2023-10-27 14:04:57.071 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:04:57.072  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Tokyo" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.073  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Tokyo" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.073 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Tokyo" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.079 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 229 ms -2023-10-27 14:06:40.228  INFO 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.228  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.228  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.229  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4f801913 -2023-10-27 14:06:40.237  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1b83bcda -2023-10-27 14:06:40.238 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:40.238  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.238  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.244 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 -2023-10-27 14:06:40.244  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql -2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? -2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Question How many female Chinese Empresses have there been? -2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+female+Chinese+Empresses+have+there+been%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+female+Chinese+Empresses+have+there+been%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:06:40.246 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:06:40.246  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1612962465 -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@46743587 -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:06:40.385  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+female+Chinese+Empresses+have+there+been%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":16,"end":23,"spot":"Chinese","confidence":0.7501,"id":5760,"title":"History of China","uri":"http://en.wikipedia.org/wiki/History_of_China","abstract":"The history of China spans several millennia across a wide geographical area. The notion of \"China\" can be understood under many diverse historiographical, cultural, geographic, and political lenses, and has evolved tremendously over time. Each region now understood to be part of the Chinese world has alternated between many periods of unity, fracture, prosperity, and hardship. Classical Chinese civilization first emerged in the Yellow River valley, which along with the Yangtze and Pearl valleys now constitute the geographic core of China and have for the majority of its imperial history. China maintains a rich diversity of ethnic and linguistic people groups. The traditional lens for viewing Chinese history is the dynastic cycle: imperial dynasties rise and fall, and are ascribed certain achievements. Throughout pervades the narrative that Chinese civilization can be traced as an unbroken thread many thousands of years into the past, making it one of the cradles of civilization. At various times, states representative of a dominant Chinese culture have directly controlled areas stretching as far west as the Tian Shan, the Tarim Basin, and the Himalayas, as far north as the Sayan Mountains, and as far south as the delta of the Red River.","label":"Chinese","categories":["History of China"],"types":[]},{"start":24,"end":33,"spot":"Empresses","confidence":0.716,"id":10111,"title":"Emperor","uri":"http://en.wikipedia.org/wiki/Emperor","abstract":"The word emperor (from, via) can mean the male absolute ruler of an empire. Empress, the female equivalent, may indicate an emperor's wife (empress consort), mother/grandmother (empress dowager/grand empress dowager), or a woman who rules in her own right and name (empress regnant). Emperors are generally recognized to be of the highest monarchic honor and rank, surpassing kings. In Europe, the title of Emperor has been used since the Middle Ages, considered in those times equal or almost equal in dignity to that of Pope due to the latter's position as visible head of the Church and spiritual leader of the Catholic part of Western Europe. The emperor of Japan is the only currently reigning monarch whose title is translated into English as \"Emperor\".","label":"Emperor","categories":["Emperors","Gendered occupations","Heads of state","Imperial titles","Political philosophy"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:06:40.363"} -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 16 -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/History_of_China -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 24 -2023-10-27 14:06:40.385 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 33 -2023-10-27 14:06:40.386 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Emperor -2023-10-27 14:06:40.391 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 -2023-10-27 14:06:40.392  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a19f008 -2023-10-27 14:06:40.392 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:06:40.393  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/History_of_China" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.393  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/History_of_China" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.393 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/History_of_China" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.399  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c7afcfd -2023-10-27 14:06:40.400 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:06:40.401  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Emperor" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.401  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Emperor" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.401 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Emperor" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.407 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : processing took: 179 ms -2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.408  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@306fa53a -2023-10-27 14:07:12.414  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ce59be6 -2023-10-27 14:07:12.414 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:12.415  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:12.415  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:12.421 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:12.421  INFO 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql -2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? -2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Question can i play don't starve on play station 4? -2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=can+i+play+don%27t+starve+on+play+station+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=can+i+play+don%27t+starve+on+play+station+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:12.422 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:07:12.422  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1532633591 -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@79552b5 -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:07:12.604  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=can+i+play+don%27t+starve+on+play+station+4%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":11,"end":23,"spot":"don't starve","confidence":0.891,"id":37858394,"title":"Don't Starve","uri":"http://en.wikipedia.org/wiki/Don%27t_Starve","abstract":"Don't Starve is a survival video game developed by the Canadian indie video game developer Klei Entertainment. The game was initially released for Microsoft Windows, OS X, and Linux on April 23, 2013. A PlayStation 4 port, renamed Don't Starve: Giant Edition, became available the following year (with PlayStation Vita and PlayStation 3 versions released in September 2014 and June 2015 respectively, and an Xbox One version released in August 2015). Don't Starve for iOS, renamed Don't Starve: Pocket Edition was released on July 9, 2015. An Android version was released on October 20, 2016. Downloadable content titled Reign of Giants was released on April 30, 2014, and a multiplayer standalone expansion called Don't Starve Together became free for existing users on June 3, 2015. On Steam, this game is able to be purchased with a free copy for a friend. A Nintendo Switch port came out on April 12, 2018.","label":"Don't Starve","categories":["2013 video games","505 Games games","Action-adventure games","Android (operating system) games","Game jam video games","IOS games","Indie video games","Klei Entertainment games","Linux games","Lua (programming language)-scripted video games","MacOS games","Multiplayer and single-player video games","Nintendo Switch games","Open-world video games","PlayStation 3 games","PlayStation 4 games","PlayStation Network games","PlayStation Vita games","Single-player video games","Survival video games","Video games developed in Canada","Video games using procedural generation","Video games with Steam Workshop support","Video games with expansion packs","Wii U eShop games","Wii U games","Windows games","Xbox Cloud Gaming games","Xbox One games"],"types":["http://dbpedia.org/ontology/VideoGame","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Software"]},{"start":27,"end":41,"spot":"play station 4","confidence":0.9078,"id":35723752,"title":"PlayStation 4","uri":"http://en.wikipedia.org/wiki/PlayStation_4","abstract":"The PlayStation 4 (PS4) is a home video game console developed by Sony Interactive Entertainment. Announced as the successor to the PlayStation 3 in February 2013, it was launched on November 15, 2013, in North America, November 29, 2013 in Europe, South America and Australia, and on February 22, 2014 in Japan. A console of the eighth generation, it competes with Microsoft's Xbox One and Nintendo's Wii U and Switch.","label":"PlayStation 4","categories":["2010s toys","2013 in video gaming","Computer-related introductions in 2013","Eighth-generation video game consoles","Home video game consoles","PlayStation (brand)","PlayStation 4","Products introduced in 2013","Regionless game consoles","Sony consoles","X86-based game consoles"],"types":["http://dbpedia.org/ontology/InformationAppliance","http://dbpedia.org/ontology/Device"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:12.583"} -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 11 -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Don%27t_Starve -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 27 -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : End: 41 -2023-10-27 14:07:12.604 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/PlayStation_4 -2023-10-27 14:07:12.610 DEBUG 28726 --- [nio-8088-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:12.610  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9de55e5 -2023-10-27 14:07:12.610 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:12.611  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "11"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Don%27t_Starve" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.612  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "11"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Don%27t_Starve" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.612 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "11"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Don%27t_Starve" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.618  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cb38eea -2023-10-27 14:07:12.618 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:12.620  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/PlayStation_4" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.620  INFO 28726 --- [nio-8088-exec-7] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/PlayStation_4" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.620 DEBUG 28726 --- [nio-8088-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/PlayStation_4" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.630 DEBUG 28726 --- [nio-8088-exec-7] e.w.q.component.QanaryServiceController  : processing took: 222 ms -2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:22.626  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7430d977 -2023-10-27 14:07:22.634  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7af73981 -2023-10-27 14:07:22.636 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:22.637  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:22.638  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:22.643 DEBUG 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 -2023-10-27 14:07:22.643  INFO 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql -2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? -2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Question In how many movies did Carey Mulligan and Ryan Gosling star together? -2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=In+how+many+movies+did+Carey+Mulligan+and+Ryan+Gosling+star+together%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=In+how+many+movies+did+Carey+Mulligan+and+Ryan+Gosling+star+together%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:22.644 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:07:22.645  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-711100201 -2023-10-27 14:07:22.779 DEBUG 28726 --- [nio-8088-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3bca33ba -2023-10-27 14:07:22.779 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:07:22.779 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:07:22.779  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=In+how+many+movies+did+Carey+Mulligan+and+Ryan+Gosling+star+together%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":2,"annotations":[{"start":12,"end":18,"spot":"movies","confidence":0.6759,"id":21555729,"title":"Film","uri":"http://en.wikipedia.org/wiki/Film","abstract":"A film also called a movie, motion picture, moving picture, picture, photoplay or (slang) flick is a work of visual art that simulates experiences and otherwise communicates ideas, stories, perceptions, feelings, beauty, or atmosphere through the use of moving images. These images are generally accompanied by sound and, more rarely, other sensory stimulations. The word \"cinema\", short for cinematography, is often used to refer to filmmaking and the film industry, and the art form that is the result of it.","label":"Film","categories":["19th-century inventions","Articles containing video clips","Film","French inventions","Media formats","Visual arts media"],"types":[]},{"start":23,"end":37,"spot":"Carey Mulligan","confidence":0.9381,"id":4311446,"title":"Carey Mulligan","uri":"http://en.wikipedia.org/wiki/Carey_Mulligan","abstract":"Carey Hannah Mulligan (born 28 May 1985) is an English actress. She has received various accolades, including a British Academy Film Award, in addition to nominations for two Academy Awards, three Golden Globe Awards, and a Tony Award.","label":"Carey Mulligan","categories":["1985 births","21st-century English actresses","Actresses from London","Audiobook narrators","Best Actress BAFTA Award winners","English expatriates in the United States","English film actresses","English health activists","English people of Irish descent","English people of Welsh descent","English radio actresses","English stage actresses","English television actresses","English voice actresses","Independent Spirit Award for Best Female Lead winners","Living people","People educated at Woldingham School","Sexual abuse victim advocates","WFTV Award winners"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":42,"end":54,"spot":"Ryan Gosling","confidence":0.9383,"id":891226,"title":"Ryan Gosling","uri":"http://en.wikipedia.org/wiki/Ryan_Gosling","abstract":"Ryan Thomas Gosling (born November 12, 1980) is a Canadian actor. Prominent in both independent film and major studio features of varying genres, his films have accrued a worldwide box office gross of over 1.9 billion USD. He has received various accolades, including a Golden Globe Award, and nominations for two Academy Awards and a BAFTA Award.","label":"Ryan Gosling","categories":["1980 births","20th-century Canadian male actors","21st-century Canadian male actors","21st-century Canadian male musicians","Best Musical or Comedy Actor Golden Globe (film) winners","Canadian documentary film producers","Canadian expatriate film directors in the United States","Canadian expatriate male actors in the United States","Canadian expatriate musicians in the United States","Canadian expatriate writers in the United States","Canadian film producers","Canadian folk rock musicians","Canadian indie rock musicians","Canadian male child actors","Canadian male film actors","Canadian male television actors","Canadian male voice actors","Canadian people of English descent","Canadian people of French descent","Canadian people of German descent","Canadian people of Irish descent","Canadian people of Scottish descent","Canadian philanthropists","Canadian restaurateurs","Film directors from London, Ontario","Former Latter Day Saints","Franco-Ontarian people","Independent Spirit Award for Best Male Lead winners","Living people","Male actors from London, Ontario","Mouseketeers","Musicians from London, Ontario","People from Burlington, Ontario","People from Cornwall, Ontario","Writers from London, Ontario"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":55,"end":59,"spot":"star","confidence":0.7404,"id":7767613,"title":"Star! (film)","uri":"http://en.wikipedia.org/wiki/Star%21_%28film%29","abstract":"Star! (re-titled Those Were the Happy Times for its 1969 re-release) is a 1968 American biographical musical film directed by Robert Wise and starring Julie Andrews. The screenplay by William Fairchild is based on the life and career of British performer Gertrude Lawrence.","label":"Star!","categories":["1960s American films","1960s English-language films","1968 films","1968 musical films","20th Century Fox films","American biographical films","American musical films","Biographical films about actors","Films directed by Robert Wise","Films featuring a Best Supporting Actor Golden Globe winning performance","Films scored by Lennie Hayton","Films set in London","Films set in New York City","Films set in the 1910s","Films set in the 1940s","Musical films based on actual events"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:22.758"} -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 18 -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Film -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 23 -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 37 -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Carey_Mulligan -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 42 -2023-10-27 14:07:22.780 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 54 -2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Ryan_Gosling -2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 55 -2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : End: 59 -2023-10-27 14:07:22.781 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Star%21_%28film%29 -2023-10-27 14:07:22.786 DEBUG 28726 --- [nio-8088-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 -2023-10-27 14:07:22.786  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4943aed5 -2023-10-27 14:07:22.786 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:22.788  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Film" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.788  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Film" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.788 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Film" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.794  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@abbad4d -2023-10-27 14:07:22.794 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:22.796  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Carey_Mulligan" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.796  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Carey_Mulligan" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.796 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Carey_Mulligan" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.803  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31d86e97 -2023-10-27 14:07:22.803 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:22.805  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Ryan_Gosling" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.805  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Ryan_Gosling" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.805 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Ryan_Gosling" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.813  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5be5ccf5 -2023-10-27 14:07:22.813 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:22.815  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "55"^^xsd:nonNegativeInteger . - _:b1 oa:end "60"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Star%21_%28film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.815  INFO 28726 --- [nio-8088-exec-9] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "55"^^xsd:nonNegativeInteger . - _:b1 oa:end "60"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Star%21_%28film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.816 DEBUG 28726 --- [nio-8088-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "55"^^xsd:nonNegativeInteger . - _:b1 oa:end "60"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Star%21_%28film%29" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:22.822 DEBUG 28726 --- [nio-8088-exec-9] e.w.q.component.QanaryServiceController  : processing took: 196 ms -2023-10-27 14:08:04.726  INFO 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:04.728  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:04.728  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:04.728  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4e4789b6 -2023-10-27 14:08:04.737  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c313427 -2023-10-27 14:08:04.737 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:04.738  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:04.738  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:04.745 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 -2023-10-27 14:08:04.745  INFO 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql -2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? -2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Question is there female main character in hunter x hunter? -2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:04.746 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:04.746  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-191225740 -2023-10-27 14:08:04.948 DEBUG 28726 --- [nio-8088-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4a28311c -2023-10-27 14:08:04.948 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:04.948 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:04.949  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":16,"end":30,"spot":"main character","confidence":0.6301,"id":68315,"title":"Protagonist","uri":"http://en.wikipedia.org/wiki/Protagonist","abstract":"A protagonist is the main character of a story. The protagonist makes key decisions that affect the plot, primarily influencing the story and propelling it forward, and is often the character who faces the most significant obstacles. If a story contains a subplot, or is a narrative made up of several stories, then each subplot may have its own protagonist.","label":"Protagonist","categories":["Ancient Greek theatre","Protagonists by role","Psychodrama"],"types":[]},{"start":34,"end":49,"spot":"hunter x hunter","confidence":0.8917,"id":771172,"title":"Hunter × Hunter","uri":"http://en.wikipedia.org/wiki/Hunter_%C3%97_Hunter","abstract":"Hunter × Hunter (stylized as HUNTER×HUNTER and pronounced \"hunter hunter\") is a Japanese manga series written and illustrated by Yoshihiro Togashi. It has been serialized in Shueisha's shōnen manga magazine Weekly Shōnen Jump since March 1998, although the manga has frequently gone on extended hiatuses since 2006. Its chapters have been collected in 37 tankōbon volumes as of November 2022. The story focuses on a young boy named Gon Freecss who discovers that his father, who left him at a young age, is actually a world-renowned Hunter, a licensed professional who specializes in fantastical pursuits such as locating rare or unidentified animal species, treasure hunting, surveying unexplored enclaves, or hunting down lawless individuals. Gon departs on a journey to become a Hunter and eventually find his father. Along the way, Gon meets various other Hunters and encounters the paranormal.","label":"Hunter × Hunter","categories":["1998 manga","1999 anime television series debuts","2002 anime OVAs","2011 Japanese television series debuts","Adventure anime and manga","Animated films based on manga","Anime series based on manga","Coming-of-age anime and manga","Fantasy anime and manga","Fuji TV original programming","Hunter × Hunter","Japanese-language films","Madhouse (company)","Manga adapted into films","Martial arts anime and manga","Muse Communication","Musicals based on anime and manga","Nippon Animation","Nippon TV original programming","Odex","Shueisha franchises","Shueisha manga","Shōnen manga","Toonami","Viz Media anime","Viz Media manga"],"types":["http://dbpedia.org/ontology/Manga","http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Comic"]}],"lang":"en","langConfidence":0.9999,"timestamp":"2023-10-27T12:08:04.928"} -2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 16 -2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 30 -2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Protagonist -2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 34 -2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : End: 49 -2023-10-27 14:08:04.949 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Hunter_%C3%97_Hunter -2023-10-27 14:08:04.954 DEBUG 28726 --- [nio-8088-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 -2023-10-27 14:08:04.954  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70c8ae95 -2023-10-27 14:08:04.954 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:04.956  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Protagonist" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:04.956  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Protagonist" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:04.956 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Protagonist" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:04.961  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4a45115e -2023-10-27 14:08:04.962 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:04.963  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hunter_%C3%97_Hunter" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:04.963  INFO 28726 --- [nio-8088-exec-2] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hunter_%C3%97_Hunter" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:04.963 DEBUG 28726 --- [nio-8088-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hunter_%C3%97_Hunter" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:04.969 DEBUG 28726 --- [nio-8088-exec-2] e.w.q.component.QanaryServiceController  : processing took: 242 ms -2023-10-27 14:08:06.189  INFO 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.190  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.190  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.190  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@414e395a -2023-10-27 14:08:06.197  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@328b9abe -2023-10-27 14:08:06.197 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:06.197  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:06.198  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:06.203 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:06.204  INFO 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql -2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? -2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Question What caused Kobe Bryant's Death? -2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+caused+Kobe+Bryant%27s+Death%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+caused+Kobe+Bryant%27s+Death%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:06.205 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:06.205  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-851927106 -2023-10-27 14:08:06.257 DEBUG 28726 --- [nio-8088-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5bc508d2 -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:06.258  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+caused+Kobe+Bryant%27s+Death%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":12,"end":23,"spot":"Kobe Bryant","confidence":0.9751,"id":246185,"title":"Kobe Bryant","uri":"http://en.wikipedia.org/wiki/Kobe_Bryant","abstract":"Kobe Bean Bryant (August 23, 1978 – January 26, 2020) was an American professional basketball player. A shooting guard, he spent his entire 20-year career with the Los Angeles Lakers in the National Basketball Association (NBA). Widely regarded as one of the greatest basketball players of all time, Bryant won five NBA championships, was an 18-time All-Star, a 15-time member of the All-NBA Team, a 12-time member of the All-Defensive Team, the 2008 NBA Most Valuable Player (MVP), and a two-time NBA Finals MVP. Bryant also led the NBA in scoring twice, and ranks fourth in league all-time regular season and postseason scoring. He was posthumously voted into the Naismith Memorial Basketball Hall of Fame in 2020 and named to the NBA 75th Anniversary Team in 2021.","label":"Kobe Bryant","categories":["1978 births","2020 deaths","Accidental deaths in California","African-American Catholics","African-American basketball players","American expatriate basketball people in Italy","American men's basketball players","American men podcasters","American philanthropists","American podcasters","Basketball players at the 2008 Summer Olympics","Basketball players at the 2012 Summer Olympics","Basketball players from Los Angeles","Basketball players from Philadelphia","Burials at Pacific View Memorial Park","Catholics from California","Catholics from Pennsylvania","Charlotte Hornets draft picks","Deaths from fire in the United States","Kobe Bryant","Los Angeles Lakers players","Lower Merion High School alumni","McDonald's High School All-Americans","Medalists at the 2008 Summer Olympics","Medalists at the 2012 Summer Olympics","Naismith Memorial Basketball Hall of Fame inductees","National Basketball Association All-Stars","National Basketball Association high school draftees","National Basketball Association players with retired numbers","Olympic gold medalists for the United States in basketball","Parade High School All-Americans (boys' basketball)","Philanthropists from California","Philanthropists from Pennsylvania","Producers who won the Best Animated Short Academy Award","Shooting guards","Sportspeople from Newport Beach, California","United States men's national basketball team players","Victims of aviation accidents or incidents in 2020","Victims of helicopter accidents or incidents in the United States"],"types":[]},{"start":17,"end":31,"spot":"Bryant's Death","confidence":0.8532,"id":62938434,"title":"2020 Calabasas helicopter crash","uri":"http://en.wikipedia.org/wiki/2020_Calabasas_helicopter_crash","abstract":"On January 26, 2020, a Sikorsky S-76B helicopter crashed in the city of Calabasas, California, around northwest of Downtown Los Angeles, while en route from John Wayne Airport to Camarillo Airport. All nine people on board were killed: retired professional basketball player Kobe Bryant, his 13-year-old daughter Gianna, baseball coach John Altobelli, his wife Keri, his daughter Alyssa, Payton Chester, her mother Sarah, basketball coach Christina Mauser, and the pilot, Ara Zobayan.","label":"2020 Calabasas helicopter crash","categories":["2020 in Los Angeles County, California","2020 in basketball","Accidents and incidents involving the Sikorsky S-76","Articles containing video clips","Aviation accidents and incidents caused by pilot error","Aviation accidents and incidents in California","Aviation accidents and incidents in the United States in 2020","Aviation accidents and incidents involving controlled flight into terrain","Calabasas, California","January 2020 events in the United States","Kobe Bryant","Los Angeles Lakers","Sports-related aviation accidents and incidents"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:06.235"} -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 12 -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 23 -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Kobe_Bryant -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 17 -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : End: 31 -2023-10-27 14:08:06.258 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/2020_Calabasas_helicopter_crash -2023-10-27 14:08:06.263 DEBUG 28726 --- [nio-8088-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:06.263  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2170084f -2023-10-27 14:08:06.263 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:06.265  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.265  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.265 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Kobe_Bryant" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.270  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@114461d2 -2023-10-27 14:08:06.270 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:06.272  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/2020_Calabasas_helicopter_crash" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.272  INFO 28726 --- [nio-8088-exec-3] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/2020_Calabasas_helicopter_crash" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.272 DEBUG 28726 --- [nio-8088-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/2020_Calabasas_helicopter_crash" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.278 DEBUG 28726 --- [nio-8088-exec-3] e.w.q.component.QanaryServiceController  : processing took: 89 ms -2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:24.296  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5b387afc -2023-10-27 14:08:24.306  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c87a411 -2023-10-27 14:08:24.306 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:24.307  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:24.307  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:24.315 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c -2023-10-27 14:08:24.316  INFO 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql -2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? -2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Question How often was Naomi Novik nominated for a Hugo Award? -2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+often+was+Naomi+Novik+nominated+for+a+Hugo+Award%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+often+was+Naomi+Novik+nominated+for+a+Hugo+Award%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:24.318 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:24.319  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1146220859 -2023-10-27 14:08:24.453 DEBUG 28726 --- [nio-8088-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@229d18ef -2023-10-27 14:08:24.453 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:24.453 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:24.454  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+often+was+Naomi+Novik+nominated+for+a+Hugo+Award%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":14,"end":25,"spot":"Naomi Novik","confidence":0.964,"id":4734491,"title":"Naomi Novik","uri":"http://en.wikipedia.org/wiki/Naomi_Novik","abstract":"Naomi Novik (born 1973) is an American author of speculative fiction. She is known for the Temeraire series (2006–2016), an alternate history of the Napoleonic Wars involving dragons, and her Scholomance fantasy series (2020–2022). Her standalone fantasy novels Uprooted (2015) and Spinning Silver (2018) were inspired by Polish folklore and the Rumpelstiltskin fairy tale respectively. Novik has won many awards for her work, including the Alex, Audie, British Fantasy, Locus, Mythopoeic and Nebula Awards.","label":"Naomi Novik","categories":["1973 births","21st-century American novelists","21st-century American women writers","American alternate history writers","American fantasy writers","American historical novelists","American people of Lithuanian-Jewish descent","American people of Polish-Jewish descent","American women novelists","Brown University alumni","Columbia Graduate School of Arts and Sciences alumni","Fan fiction writers","John W. Campbell Award for Best New Writer winners","Living people","Nebula Award winners","Novelists from New York (state)","People from Roslyn Heights, New York","Women historical novelists","Women science fiction and fantasy writers"],"types":["http://dbpedia.org/ontology/Writer","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":42,"end":52,"spot":"Hugo Award","confidence":0.9069,"id":28866471,"title":"Hugo Award","uri":"http://en.wikipedia.org/wiki/Hugo_Award","abstract":"The Hugo Award is an annual literary award for the best science fiction or fantasy works and achievements of the previous year, given at the World Science Fiction Convention and chosen by its members. The Hugo is widely considered the premier award in science fiction. The award is administered by the World Science Fiction Society. It is named after Hugo Gernsback, the founder of the pioneering science fiction magazine Amazing Stories. Hugos were first given in 1953, at the 11th World Science Fiction Convention, and have been awarded every year since 1955.","label":"Hugo Award","categories":["1953 establishments in the United States","Awards established in 1953","Fantasy awards","Hugo Awards","Science fiction awards"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:24.429"} -2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 14 -2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 25 -2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Naomi_Novik -2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 42 -2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : End: 52 -2023-10-27 14:08:24.454 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Hugo_Award -2023-10-27 14:08:24.462 DEBUG 28726 --- [nio-8088-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c -2023-10-27 14:08:24.462  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aea69da -2023-10-27 14:08:24.462 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:24.465  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Naomi_Novik" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.465  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Naomi_Novik" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.465 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Naomi_Novik" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.477  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b4cf5ba -2023-10-27 14:08:24.477 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:24.480  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hugo_Award" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.480  INFO 28726 --- [nio-8088-exec-5] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hugo_Award" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.480 DEBUG 28726 --- [nio-8088-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "53"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Hugo_Award" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.490 DEBUG 28726 --- [nio-8088-exec-5] e.w.q.component.QanaryServiceController  : processing took: 194 ms -2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:00.349  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@67a52fe5 -2023-10-27 14:09:00.358  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67933974 -2023-10-27 14:09:00.359 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:00.359  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:00.359  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:00.367 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf -2023-10-27 14:09:00.367  INFO 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql -2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? -2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Question What language do they speak in Poland ? -2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+language+do+they+speak+in+Poland+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+language+do+they+speak+in+Poland+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:00.369 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:09:00.370  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1792806726 -2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2d24c9f5 -2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:09:00.663  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+language+do+they+speak+in+Poland+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : JSON: {"time":1,"annotations":[{"start":31,"end":37,"spot":"Poland","confidence":0.7434,"id":343234,"title":"Polish–Lithuanian Commonwealth","uri":"http://en.wikipedia.org/wiki/Polish%E2%80%93Lithuanian_Commonwealth","abstract":"The Polish–Lithuanian Commonwealth, formally known as the Kingdom of Poland and the Grand Duchy of Lithuania, or simply Poland–Lithuania, was a bi-confederal state, sometimes called a federation, of Poland and Lithuania ruled by a common monarch in real union, who was both King of Poland and Grand Duke of Lithuania. It was one of the largest and most populous countries of 16th- to 17th-century Europe. At its largest territorial extent, in the early 17th century, the Commonwealth covered almost and as of 1618 sustained a multi-ethnic population of almost 12 million. Polish and Latin were the two co-official languages.","label":"Polish–Lithuanian Commonwealth","categories":["1569 establishments in Poland","16th century in Lithuania","16th century in Poland","16th century in Ukraine","1795 disestablishments in Poland","17th century in Lithuania","17th century in Poland","17th century in Ukraine","18th century in Lithuania","18th century in Poland","18th century in Ukraine","Christian states","Diarchies","Duchy of Livonia","Early Modern history of Belarus","Early Modern history of Lithuania","Early Modern history of Poland","Early Modern history of Ukraine","Former countries in Europe","Former monarchies of Europe","Former republics","Former state unions","History of Lithuania (1569–1795)","History of Transnistria","Lithuania–Poland relations","Polish–Lithuanian Commonwealth","Political history of Lithuania","Political history of Poland","Political history of Ukraine","States and territories disestablished in 1795","States and territories established in 1569"],"types":["http://dbpedia.org/ontology/Country","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:09:00.616"} -2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Begin: 31 -2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : End: 37 -2023-10-27 14:09:00.663 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : Link http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth -2023-10-27 14:09:00.671 DEBUG 28726 --- [nio-8088-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf -2023-10-27 14:09:00.672  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55708c22 -2023-10-27 14:09:00.672 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:09:00.675  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:00.675  INFO 28726 --- [nio-8088-exec-8] e.w.q.c.dandelion.ned.DandelionNED  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:00.675 DEBUG 28726 --- [nio-8088-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody "http://dbpedia.org/resource/Polish%E2%80%93Lithuanian_Commonwealth" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:00.683 DEBUG 28726 --- [nio-8088-exec-8] e.w.q.component.QanaryServiceController  : processing took: 334 ms -2023-10-27 14:15:38.592  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | spring.application.name -> spring_application_name=DandelionNED -2023-10-27 14:15:38.594  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | spring.application.description -> spring_application_description=DandelionNED is a Qanary component -2023-10-27 14:15:38.594  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | springdoc.swagger-ui.path -> springdoc_swagger_ui_path=This text is shown as the property springdoc.swagger-ui.path is not defined (e.g., in application.properties). -2023-10-27 14:15:38.594  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | spring.boot.admin.url -> spring_boot_admin_url=http://localhost:8080 -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | rdfcomponentdescription=/component-description -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | ImplementationVersion=3.7.2 -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | SpecificationVendor=null -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | SpecificationVersion=3.7 -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | ImplementationTitle=qa.component -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | component_description_file=description -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | component_description_url=/description -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | SpecificationTitle=qa.component -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | ImplementationVendor=null -2023-10-27 14:15:38.595  INFO 28726 --- [io-8088-exec-10] e.w.q.component.QanaryServiceController  : session | Name=eu.wdaqua.qanary.component diff --git a/qanary-component-NED-Dandelion/pom.xml b/qanary-component-NED-Dandelion/pom.xml index b2991ceeb..e9b537859 100644 --- a/qanary-component-NED-Dandelion/pom.xml +++ b/qanary-component-NED-Dandelion/pom.xml @@ -27,11 +27,6 @@ qa.component ${qanary.component.version} - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-NED-Dandelion/src/main/resources/config/application.properties b/qanary-component-NED-Dandelion/src/main/resources/config/application.properties index d98f25a1f..9a1fd05c5 100644 --- a/qanary-component-NED-Dandelion/src/main/resources/config/application.properties +++ b/qanary-component-NED-Dandelion/src/main/resources/config/application.properties @@ -44,4 +44,4 @@ server.ssl.enabled=false qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # dandelion configuration dandelion.api.live.test.active=true -dandelion.api.key=7d29f867b39a432e8884e99f69c194c9 +dandelion.api.key= diff --git a/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml b/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml index 81580c517..2b3c9b235 100644 --- a/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml +++ b/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml @@ -27,11 +27,6 @@ qa.component ${qanary.version} - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.springframework.boot spring-boot-starter-web diff --git a/qanary-component-NED-MeaningCloud/pom.xml b/qanary-component-NED-MeaningCloud/pom.xml index 7007da9c1..4310f59e9 100644 --- a/qanary-component-NED-MeaningCloud/pom.xml +++ b/qanary-component-NED-MeaningCloud/pom.xml @@ -25,11 +25,6 @@ com.google.code.gson gson - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.component diff --git a/qanary-component-NED-Ontotext/nohup.out b/qanary-component-NED-Ontotext/nohup.out deleted file mode 100644 index 07f06d2df..000000000 --- a/qanary-component-NED-Ontotext/nohup.out +++ /dev/null @@ -1,5519 +0,0 @@ -Error: Unable to access jarfile target/*.jar - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -OntoTextNED -- OntoTextNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.1.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080 - -2023-10-27 12:01:33.701 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 7851 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) -2023-10-27 12:01:33.706 DEBUG 7851 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:01:33.720 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:01:41.463 INFO 7851 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ab7a938 -2023-10-27 12:01:43.658 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 12:01:43.758 INFO 7851 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46baf579 -2023-10-27 12:01:44.363 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 12:01:44.365 INFO 7851 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@28952dea -2023-10-27 12:01:44.373 INFO 7851 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: -server.host = null -server.port = 8096 -spring.application.name = OntoTextNED -spring.application.description = OntoTextNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:01:44.410 INFO 7851 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl -2023-10-27 12:01:45.327 WARN 7851 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:01:45.381 WARN 7851 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized -2023-10-27 12:01:45.490 WARN 7851 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:01:45.505 INFO 7851 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: -2023-10-27 12:01:47.640 INFO 7851 --- [ main] e.w.q.c.ontotext.ned.Application : Started Application in 15.881 seconds (JVM running for 18.943) -2023-10-27 12:01:47.838 WARN 7851 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:01:57.692 INFO 7851 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Application registered itself as ca420f64ffcd -2023-10-27 12:08:47.657 WARN 7851 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -OntoTextNED -- OntoTextNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.1.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080 - -2023-10-27 12:09:22.538 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 9648 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) -2023-10-27 12:09:22.557 DEBUG 9648 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.558 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:46.064 INFO 9648 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29ef6856 -2023-10-27 12:09:49.591 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 12:09:49.858 INFO 9648 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f4f9acd -2023-10-27 12:09:50.357 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 12:09:50.358 INFO 9648 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@23eee4b8 -2023-10-27 12:09:50.369 INFO 9648 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: -server.host = null -server.port = 8096 -spring.application.name = OntoTextNED -spring.application.description = OntoTextNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:50.492 INFO 9648 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl -2023-10-27 12:09:53.979 WARN 9648 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:54.121 WARN 9648 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized -2023-10-27 12:09:54.639 WARN 9648 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:54.718 INFO 9648 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: -2023-10-27 12:10:00.177 INFO 9648 --- [ main] e.w.q.c.ontotext.ned.Application : Started Application in 42.306 seconds (JVM running for 49.286) -2023-10-27 12:10:00.542 WARN 9648 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:10.299 INFO 9648 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Application registered itself as ca420f64ffcd - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -OntoTextNED -- OntoTextNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.1.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080 - -2023-10-27 12:15:52.892 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 11761 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) -2023-10-27 12:15:52.899 DEBUG 11761 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:52.900 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:23.544 INFO 11761 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ab7a938 -2023-10-27 12:16:27.888 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 12:16:28.322 INFO 11761 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46baf579 -2023-10-27 12:16:28.833 INFO 11761 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 12:16:28.834 INFO 11761 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@28952dea -2023-10-27 12:16:28.994 INFO 11761 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: -server.host = null -server.port = 8096 -spring.application.name = OntoTextNED -spring.application.description = OntoTextNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:29.294 INFO 11761 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl -2023-10-27 12:16:33.736 WARN 11761 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:33.938 WARN 11761 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized -2023-10-27 12:16:34.688 WARN 11761 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:34.763 INFO 11761 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: -2023-10-27 12:16:43.766 WARN 11761 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8096 is already in use -2023-10-27 12:16:44.252 ERROR 11761 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8096 was already in use. - -Action: - -Identify and stop the process that's listening on port 8096 or configure this application to listen on another port. - -2023-10-27 13:37:20.228 WARN 9648 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -OntoTextNED -- OntoTextNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.1.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080 - -2023-10-27 13:37:48.236 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 28728 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) -2023-10-27 13:37:48.272 DEBUG 28728 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:48.295 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:11.282 INFO 28728 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ab7a938 -2023-10-27 13:38:16.044 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 13:38:16.181 INFO 28728 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46baf579 -2023-10-27 13:38:16.688 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 13:38:16.691 INFO 28728 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@28952dea -2023-10-27 13:38:16.712 INFO 28728 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: -server.host = null -server.port = 8096 -spring.application.name = OntoTextNED -spring.application.description = OntoTextNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:16.856 INFO 28728 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl -2023-10-27 13:38:20.957 WARN 28728 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:21.196 WARN 28728 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized -2023-10-27 13:38:22.027 WARN 28728 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:22.142 INFO 28728 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: -2023-10-27 13:38:32.594 INFO 28728 --- [ main] e.w.q.c.ontotext.ned.Application : Started Application in 49.589 seconds (JVM running for 55.381) -2023-10-27 13:38:33.281 WARN 28728 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Failed to register application as Application(name=OntoTextNED, managementUrl=http://0.0.0.0:8096/actuator, healthUrl=http://0.0.0.0:8096/actuator/health, serviceUrl=http://0.0.0.0:8096/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 13:38:42.944 INFO 28728 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator : Application registered itself as ca420f64ffcd - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -OntoTextNED -- OntoTextNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.1.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080 - -2023-10-27 13:38:52.915 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.Application : Starting Application v3.1.0 using Java 21 on fedora with PID 30119 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/target/qanary-component-NED-Ontotext-3.1.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext) -2023-10-27 13:38:52.922 DEBUG 30119 --- [ main] e.w.q.c.ontotext.ned.Application : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:52.934 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.Application : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:17.547 INFO 30119 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3faf2e7d -2023-10-27 13:39:21.627 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 13:39:22.090 INFO 30119 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4bf324f9 -2023-10-27 13:39:22.595 INFO 30119 --- [ main] e.w.q.c.ontotext.ned.OntoTextNED : Functionality works as expected -2023-10-27 13:39:22.597 INFO 30119 --- [ main] e.w.q.component.QanaryServiceController : qanaryComponent: eu.wdaqua.qanary.component.ontotext.ned.OntoTextNED@5a9800f8 -2023-10-27 13:39:22.624 INFO 30119 --- [ main] e.w.q.c.QanaryComponentConfiguration : Current Component Configuration: -server.host = null -server.port = 8096 -spring.application.name = OntoTextNED -spring.application.description = OntoTextNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:22.829 INFO 30119 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl -2023-10-27 13:39:27.545 WARN 30119 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Ontotext/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:27.759 WARN 30119 --- [ main] e.w.q.c.CacheOfRestTemplateResponse : CacheResponse: initialized -2023-10-27 13:39:28.442 WARN 30119 --- [ main] e.w.q.c.RestTemplateWithCaching : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:28.647 INFO 30119 --- [ main] e.w.qanary.commons.config.CacheConfig : cacheManager configuration: -2023-10-27 13:39:35.942 WARN 30119 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8096 is already in use -2023-10-27 13:39:36.163 ERROR 30119 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8096 was already in use. - -Action: - -Identify and stop the process that's listening on port 8096 or configure this application to listen on another port. - -2023-10-27 13:51:52.891 INFO 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"} -2023-10-27 13:51:52.902 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"} -2023-10-27 13:51:52.908 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"},"inGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad","outGraph":"urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad"} -2023-10-27 13:51:53.093 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@58b1d0f4 -2023-10-27 13:51:53.212 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7121165c -2023-10-27 13:51:53.244 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:51:53.530 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:51:53.532 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:51:54.025 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_b5b5627c-327e-4d2c-9e30-76c4450c97b1 -2023-10-27 13:51:54.025 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_b5b5627c-327e-4d2c-9e30-76c4450c97b1 found in urn:graph:3e3dfaaa-bab7-472c-be2d-acb71f7795ad at http://localhost:8080/sparql -2023-10-27 13:51:54.053 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation With how many countries does Australia share a border? -2023-10-27 13:51:54.053 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: With how many countries does Australia share a border? -2023-10-27 13:51:54.733 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Australia","startOffset":29,"endOffset":38,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:51:54.734 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":38,"startOffset":29,"name":"Australia","type":"Location"} -2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 29 -2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 38 -2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"} -2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 -2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 23 -2023-10-27 13:51:54.736 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Australia","startOffset":29,"endOffset":38,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:51:54.737 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Australia","http://dbpedia.org/resource/Австралия","http://dbpedia.org/resource/Australien"],"relevanceScore":0.625,"inst":"http://ontology.ontotext.com/resource/ncgp","confidence":0.682482333140415,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":38,"startOffset":29,"name":"Australia","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.7308307246794005,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"}] -2023-10-27 13:51:54.737 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:51:54.737 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:51:54.748 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b5b5627c-327e-4d2c-9e30-76c4450c97b1 -2023-10-27 13:51:54.748 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c7a17ee -2023-10-27 13:51:54.749 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:51:54.778 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:54.779 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:54.779 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:54.802 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fa555b8 -2023-10-27 13:51:54.803 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:51:54.824 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:54.825 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:54.825 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:51:54.836 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : processing took: 1936 ms -2023-10-27 13:52:02.986 INFO 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"} -2023-10-27 13:52:02.987 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"} -2023-10-27 13:52:02.987 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"},"inGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0","outGraph":"urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0"} -2023-10-27 13:52:02.987 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@18684ed6 -2023-10-27 13:52:03.041 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16afa3ab -2023-10-27 13:52:03.042 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:03.043 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:03.044 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:03.052 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_0b9cb1e6-7a14-4b5b-88dd-9b50c25beac4 -2023-10-27 13:52:03.052 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_0b9cb1e6-7a14-4b5b-88dd-9b50c25beac4 found in urn:graph:3e402407-e75b-4afa-ae6a-dcf86104b1e0 at http://localhost:8080/sparql -2023-10-27 13:52:03.054 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many languages are widely used in India? -2023-10-27 13:52:03.055 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many languages are widely used in India? -2023-10-27 13:52:03.611 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"languages","startOffset":9,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Language","confidence":0.5}},{"name":"India","startOffset":38,"endOffset":43,"type":"Location","features":{"isGenerated":"true","relevanceScore":0.17142857142857143,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"false","confidence":0.9848925387658187,"inst":"http://data.ontotext.com/publishing/location/India"}}]} -2023-10-27 13:52:03.611 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"languages","startOffset":9,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Language","confidence":0.5}},{"name":"India","startOffset":38,"endOffset":43,"type":"Location","features":{"isGenerated":"true","relevanceScore":0.17142857142857143,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"false","confidence":0.9848925387658187,"inst":"http://data.ontotext.com/publishing/location/India"}}]} -2023-10-27 13:52:03.611 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Language","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":18,"startOffset":9,"name":"languages","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":0.17142857142857143,"confidence":0.9848925387658187,"inst":"http://data.ontotext.com/publishing/location/India","class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"false"},"endOffset":43,"startOffset":38,"name":"India","type":"Location"}] -2023-10-27 13:52:03.612 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:52:03.612 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:52:03.612 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : processing took: 625 ms -2023-10-27 13:52:19.277 INFO 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"} -2023-10-27 13:52:19.278 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"} -2023-10-27 13:52:19.278 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"},"inGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24","outGraph":"urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24"} -2023-10-27 13:52:19.278 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@18f447ee -2023-10-27 13:52:19.288 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1633ba80 -2023-10-27 13:52:19.288 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:19.290 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:19.291 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:19.313 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_cdcd04d5-0468-463b-b599-54c9c9d675b5 -2023-10-27 13:52:19.313 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_cdcd04d5-0468-463b-b599-54c9c9d675b5 found in urn:graph:58db139d-52a2-4a20-acaa-e79a339c0f24 at http://localhost:8080/sparql -2023-10-27 13:52:19.315 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What is the area of the great lakes? -2023-10-27 13:52:19.315 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: What is the area of the great lakes? -2023-10-27 13:52:19.799 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"area","startOffset":12,"endOffset":16,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Area","confidence":0.5}}]} -2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"area","startOffset":12,"endOffset":16,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Area","confidence":0.5}}]} -2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Area","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":16,"startOffset":12,"name":"area","type":"Keyphrase"}] -2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:52:19.800 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:52:19.800 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : processing took: 523 ms -2023-10-27 13:52:21.163 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"} -2023-10-27 13:52:21.164 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"} -2023-10-27 13:52:21.164 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"},"inGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3","outGraph":"urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3"} -2023-10-27 13:52:21.164 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@142b52b2 -2023-10-27 13:52:21.171 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1aecae47 -2023-10-27 13:52:21.171 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:21.172 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:21.172 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:21.182 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7effcbe-b2a5-4862-8dbe-63b776c52673 -2023-10-27 13:52:21.182 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7effcbe-b2a5-4862-8dbe-63b776c52673 found in urn:graph:33badc6e-eabd-45f9-8607-7c6564010cb3 at http://localhost:8080/sparql -2023-10-27 13:52:21.184 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What event killed the most people in the years 1910 to 1920? -2023-10-27 13:52:21.184 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: What event killed the most people in the years 1910 to 1920? -2023-10-27 13:52:21.681 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"event","startOffset":5,"endOffset":10,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Event","confidence":0.5}}]} -2023-10-27 13:52:21.681 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"event","startOffset":5,"endOffset":10,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Event","confidence":0.5}}]} -2023-10-27 13:52:21.682 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Event","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":10,"startOffset":5,"name":"event","type":"Keyphrase"}] -2023-10-27 13:52:21.682 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:52:21.682 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:52:21.682 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 519 ms -2023-10-27 13:52:26.408 INFO 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"} -2023-10-27 13:52:26.408 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"} -2023-10-27 13:52:26.409 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"},"inGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b","outGraph":"urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b"} -2023-10-27 13:52:26.409 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@6865e89 -2023-10-27 13:52:26.418 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@841a029 -2023-10-27 13:52:26.418 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:26.420 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:26.421 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:26.429 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_d3d8a1ac-9a7a-4f06-8e70-302fbccedf8d -2023-10-27 13:52:26.429 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_d3d8a1ac-9a7a-4f06-8e70-302fbccedf8d found in urn:graph:22d0c0d0-bdbf-4aa4-8323-8a0466a6384b at http://localhost:8080/sparql -2023-10-27 13:52:26.431 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation From which country are the beagles originally from? -2023-10-27 13:52:26.431 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: From which country are the beagles originally from? -2023-10-27 13:52:27.007 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"country","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":18,"startOffset":11,"name":"country","type":"Keyphrase"} -2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 11 -2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 18 -2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"country","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:52:27.008 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.9356476055507623,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":18,"startOffset":11,"name":"country","type":"Keyphrase"}] -2023-10-27 13:52:27.009 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:52:27.009 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:52:27.016 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d3d8a1ac-9a7a-4f06-8e70-302fbccedf8d -2023-10-27 13:52:27.017 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b128ea6 -2023-10-27 13:52:27.017 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:27.021 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "11"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:27.022 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "11"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:27.022 DEBUG 28728 --- [nio-8096-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "11"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:27.032 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : processing took: 624 ms -2023-10-27 13:52:27.636 INFO 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"} -2023-10-27 13:52:27.636 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"} -2023-10-27 13:52:27.637 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"},"inGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba","outGraph":"urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba"} -2023-10-27 13:52:27.637 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@3a370891 -2023-10-27 13:52:27.686 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34f0e1a7 -2023-10-27 13:52:27.686 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:27.687 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:27.687 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:27.705 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_74f06030-502a-45c0-85dc-e3471296d600 -2023-10-27 13:52:27.706 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_74f06030-502a-45c0-85dc-e3471296d600 found in urn:graph:7c4292d0-cd3a-4ea5-9c74-28a8bb4f81ba at http://localhost:8080/sparql -2023-10-27 13:52:27.709 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:52:27.709 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:52:28.158 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Netflix","startOffset":37,"endOffset":44,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"cast member","startOffset":18,"endOffset":29,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":44,"startOffset":37,"name":"Netflix","type":"Location"} -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 37 -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 44 -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":29,"startOffset":18,"name":"cast member","type":"Keyphrase"} -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 18 -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 29 -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Netflix","startOffset":37,"endOffset":44,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"cast member","startOffset":18,"endOffset":29,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Netflix","http://dbpedia.org/resource/Нетфликс"],"relevanceScore":0.5777777777777777,"inst":"http://ontology.ontotext.com/resource/11kj99l","confidence":0.9419178994676595,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":44,"startOffset":37,"name":"Netflix","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Cast_member"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/400zxo9","confidence":0.8979280647527608,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":29,"startOffset":18,"name":"cast member","type":"Keyphrase"}] -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:52:28.159 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:52:28.166 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_74f06030-502a-45c0-85dc-e3471296d600 -2023-10-27 13:52:28.167 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@113e29ca -2023-10-27 13:52:28.167 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:28.169 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:28.169 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:28.169 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:28.178 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71d6e7e8 -2023-10-27 13:52:28.178 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:28.180 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:28.180 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:28.180 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:28.188 DEBUG 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : processing took: 552 ms -2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"} -2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"} -2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"},"inGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1","outGraph":"urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1"} -2023-10-27 13:52:35.471 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@47316724 -2023-10-27 13:52:35.484 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@62488ce2 -2023-10-27 13:52:35.484 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:35.486 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:35.486 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:35.495 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa123bd3-cc4c-4051-8b6d-626e9e6f94b7 -2023-10-27 13:52:35.495 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa123bd3-cc4c-4051-8b6d-626e9e6f94b7 found in urn:graph:5d73adab-ddd2-4df4-a601-362abab978b1 at http://localhost:8080/sparql -2023-10-27 13:52:35.497 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What are the occupations of Kazuo Ishiguro’s daughter? -2023-10-27 13:52:35.497 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: What are the occupations of Kazuo Ishiguro’s daughter? -2023-10-27 13:52:35.884 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Kazuo Ishiguro","startOffset":28,"endOffset":42,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"occupations","startOffset":13,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Occupation","confidence":0.5}}]} -2023-10-27 13:52:35.884 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":42,"startOffset":28,"name":"Kazuo Ishiguro","type":"Person"} -2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 -2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 42 -2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Kazuo Ishiguro","startOffset":28,"endOffset":42,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"occupations","startOffset":13,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Occupation","confidence":0.5}}]} -2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Kazuo_Ishiguro","http://dbpedia.org/resource/Казуо_Ишигуро"],"relevanceScore":0.6341463414634146,"inst":"http://ontology.ontotext.com/resource/4nn101","confidence":0.9388915311451234,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":42,"startOffset":28,"name":"Kazuo Ishiguro","type":"Person"},{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Occupation","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":24,"startOffset":13,"name":"occupations","type":"Keyphrase"}] -2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:52:35.885 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:52:35.892 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa123bd3-cc4c-4051-8b6d-626e9e6f94b7 -2023-10-27 13:52:35.893 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2e1c74ee -2023-10-27 13:52:35.893 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:52:35.895 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:35.896 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:35.896 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:52:35.903 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : processing took: 432 ms -2023-10-27 13:55:11.882 INFO 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:11.883 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:11.883 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:11.883 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@3a36ccec -2023-10-27 13:55:11.895 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5503d326 -2023-10-27 13:55:11.896 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:11.898 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:11.898 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:11.907 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 -2023-10-27 13:55:11.908 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql -2023-10-27 13:55:11.913 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation when was the magazine in which hunter x hunter is published established? -2023-10-27 13:55:11.913 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: when was the magazine in which hunter x hunter is published established? -2023-10-27 13:55:12.610 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"magazine","startOffset":13,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":21,"startOffset":13,"name":"magazine","type":"Keyphrase"} -2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 13 -2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 21 -2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"magazine","startOffset":13,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:55:12.611 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Zeitschrift","http://dbpedia.org/resource/Списание","http://dbpedia.org/resource/Magazine"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2az97d","confidence":0.9088419456750644,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":21,"startOffset":13,"name":"magazine","type":"Keyphrase"}] -2023-10-27 13:55:12.612 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:55:12.612 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:55:12.619 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 -2023-10-27 13:55:12.620 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4f0cce25 -2023-10-27 13:55:12.620 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:55:12.622 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.623 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.623 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.634 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : processing took: 751 ms -2023-10-27 13:55:25.469 INFO 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:25.469 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:25.470 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:25.470 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4afd9963 -2023-10-27 13:55:25.477 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@589e0376 -2023-10-27 13:55:25.477 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:25.478 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:25.479 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:25.485 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 -2023-10-27 13:55:25.485 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql -2023-10-27 13:55:25.487 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:25.487 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"NPR","startOffset":23,"endOffset":26,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Tiny Desk Concert","startOffset":30,"endOffset":47,"type":"Work","features":{"confidence":0.8613574048223805,"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"subclasses":["Work"],"string":"Tiny Desk Concert","overallScore":0.687435459167947,"inst":"http://ontology.ontotext.com/resource/7bzxpos9","isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","class":"http://ontology.ontotext.com/taxonomy/Thing","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"id":4205928,"isTrusted":"true"}},{"name":"website","startOffset":12,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":26,"startOffset":23,"name":"NPR","type":"Keyphrase"} -2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 23 -2023-10-27 13:55:25.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 26 -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"string":"Tiny Desk Concert","confidence":0.8613574048223805,"overallScore":0.687435459167947,"isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"inst":"http://ontology.ontotext.com/resource/7bzxpos9","id":4205928,"class":"http://ontology.ontotext.com/taxonomy/Thing","subclasses":["Work"],"isTrusted":"true"},"endOffset":47,"startOffset":30,"name":"Tiny Desk Concert","type":"Work"} -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 30 -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 47 -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"website","type":"Keyphrase"} -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 12 -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"NPR","startOffset":23,"endOffset":26,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Tiny Desk Concert","startOffset":30,"endOffset":47,"type":"Work","features":{"confidence":0.8613574048223805,"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"subclasses":["Work"],"string":"Tiny Desk Concert","overallScore":0.687435459167947,"inst":"http://ontology.ontotext.com/resource/7bzxpos9","isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","class":"http://ontology.ontotext.com/taxonomy/Thing","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"id":4205928,"isTrusted":"true"}},{"name":"website","startOffset":12,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/NPR","http://dbpedia.org/resource/National_Public_Radio"],"relevanceScore":0.7027027027027026,"inst":"http://ontology.ontotext.com/resource/4p4o1t","confidence":0.8547183642037347,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":26,"startOffset":23,"name":"NPR","type":"Keyphrase"},{"features":{"sentimentScore":0.5,"exactMatch":["http://dbpedia.org/resource/Tiny_Desk_Concerts","http://dbpedia.org/resource/List_of_Tiny_Desk_Concerts"],"string":"Tiny Desk Concert","confidence":0.8613574048223805,"overallScore":0.687435459167947,"isPositive":"true","rule":"RestoreTrustedThingsWithConcreteType","tokenFeature":"stem","noSP":"true","relevanceScore":0.5135135135135135,"preferredLabel":["Tiny Desk Concerts"],"inst":"http://ontology.ontotext.com/resource/7bzxpos9","id":4205928,"class":"http://ontology.ontotext.com/taxonomy/Thing","subclasses":["Work"],"isTrusted":"true"},"endOffset":47,"startOffset":30,"name":"Tiny Desk Concert","type":"Work"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уебсайт","http://dbpedia.org/resource/Website"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/l786x","confidence":0.9462226484868445,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"website","type":"Keyphrase"}] -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:55:25.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:55:25.869 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 -2023-10-27 13:55:25.870 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@209d3619 -2023-10-27 13:55:25.870 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:55:25.871 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.872 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.872 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.880 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58d21fc6 -2023-10-27 13:55:25.880 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:55:25.882 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.882 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.882 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "30"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.888 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@708fc055 -2023-10-27 13:55:25.888 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:55:25.890 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.891 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.891 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:25.898 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : processing took: 429 ms -2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:00.240 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@2667ecbb -2023-10-27 13:56:00.251 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@28a00607 -2023-10-27 13:56:00.251 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:56:00.252 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:00.252 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:00.259 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:00.259 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql -2023-10-27 13:56:00.262 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:00.263 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"president","startOffset":78,"endOffset":87,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"presidents","startOffset":15,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":87,"startOffset":78,"name":"president","type":"Keyphrase"} -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 78 -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 87 -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":25,"startOffset":15,"name":"presidents","type":"Keyphrase"} -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 15 -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 25 -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"president","startOffset":78,"endOffset":87,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"presidents","startOffset":15,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.7302490316834991,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":87,"startOffset":78,"name":"president","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/President"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/1ui16jlt","confidence":0.60837517375981,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":25,"startOffset":15,"name":"presidents","type":"Keyphrase"}] -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:56:01.128 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:56:01.134 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:01.135 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61f7f6d3 -2023-10-27 13:56:01.135 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:56:01.137 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "78"^^xsd:nonNegativeInteger . - _:b1 oa:end "87"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:01.138 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "78"^^xsd:nonNegativeInteger . - _:b1 oa:end "87"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:01.138 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "78"^^xsd:nonNegativeInteger . - _:b1 oa:end "87"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:01.145 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@258bfcd5 -2023-10-27 13:56:01.146 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:56:01.148 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "15"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:01.148 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "15"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:01.148 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "15"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:01.155 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 915 ms -2023-10-27 13:57:00.408 INFO 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:00.409 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:00.409 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:00.409 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@87248ef -2023-10-27 13:57:00.426 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33d0ddbc -2023-10-27 13:57:00.427 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:00.429 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:00.430 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:00.440 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:00.440 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql -2023-10-27 13:57:00.442 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation When was the University of Hamburg founded? -2023-10-27 13:57:00.442 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: When was the University of Hamburg founded? -2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"University of Hamburg","startOffset":13,"endOffset":34,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} -2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":34,"startOffset":13,"name":"University of Hamburg","type":"Organization"} -2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 13 -2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 34 -2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"University of Hamburg","startOffset":13,"endOffset":34,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} -2023-10-27 13:57:01.040 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Universität_Hamburg","http://dbpedia.org/resource/University_of_Hamburg"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2brqcx","confidence":0.9264260414611815,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":34,"startOffset":13,"name":"University of Hamburg","type":"Organization"}] -2023-10-27 13:57:01.041 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:57:01.041 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:57:01.049 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:01.049 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fa38b25 -2023-10-27 13:57:01.050 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:01.063 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:01.064 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:01.064 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:01.071 DEBUG 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : processing took: 662 ms -2023-10-27 13:57:21.516 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:21.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:21.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:21.517 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@6ce9b452 -2023-10-27 13:57:21.536 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55600528 -2023-10-27 13:57:21.537 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:21.541 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:21.541 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:21.556 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:21.556 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql -2023-10-27 13:57:21.562 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What is the twitter name of Running Wild? -2023-10-27 13:57:21.564 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: What is the twitter name of Running Wild? -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"name","startOffset":20,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"twitter","startOffset":12,"endOffset":19,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":24,"startOffset":20,"name":"name","type":"Keyphrase"} -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 20 -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 24 -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"twitter","type":"Location"} -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 12 -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"name","startOffset":20,"endOffset":24,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"twitter","startOffset":12,"endOffset":19,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} -2023-10-27 13:57:21.972 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Име","http://dbpedia.org/resource/Name"],"relevanceScore":0.7241379310344828,"inst":"http://ontology.ontotext.com/resource/9ceal5","confidence":0.8818343088575197,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":24,"startOffset":20,"name":"name","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Туитър","http://dbpedia.org/resource/Twitter"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/ncfd","confidence":0.01666326833899001,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":19,"startOffset":12,"name":"twitter","type":"Location"}] -2023-10-27 13:57:21.973 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:57:21.973 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:57:21.984 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:21.984 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4cfd5052 -2023-10-27 13:57:21.984 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:21.988 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:21.988 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:21.988 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:22.002 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e0b4216 -2023-10-27 13:57:22.003 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:22.007 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:22.007 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:22.008 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:22.020 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 504 ms -2023-10-27 13:57:29.265 INFO 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:29.266 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:29.266 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:29.266 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@73b94164 -2023-10-27 13:57:29.292 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a5d9cf4 -2023-10-27 13:57:29.293 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:29.295 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:29.296 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:29.308 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 -2023-10-27 13:57:29.308 INFO 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql -2023-10-27 13:57:29.314 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many different colors can water take? -2023-10-27 13:57:29.314 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many different colors can water take? -2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"can water","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"can water","type":"Keyphrase"} -2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 26 -2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: 35 -2023-10-27 13:57:29.863 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"can water","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:57:29.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Canned_water"],"relevanceScore":0.46875,"inst":"http://ontology.ontotext.com/resource/4k03ntl","confidence":0.7856093392428283,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"can water","type":"Keyphrase"}] -2023-10-27 13:57:29.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:57:29.864 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:57:29.873 DEBUG 28728 --- [nio-8096-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 -2023-10-27 13:57:29.874 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1b9ea62c -2023-10-27 13:57:29.874 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:57:29.880 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:29.881 INFO 28728 --- [nio-8096-exec-3] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:29.881 DEBUG 28728 --- [nio-8096-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:29.894 DEBUG 28728 --- [nio-8096-exec-3] e.w.q.component.QanaryServiceController : processing took: 628 ms -2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:13.849 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4e34ae41 -2023-10-27 13:58:13.863 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f75963c -2023-10-27 13:58:13.864 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:13.867 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:13.867 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:13.880 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 -2023-10-27 13:58:13.881 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql -2023-10-27 13:58:13.883 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation how many plays has William Shakespeare written in the 16th century. -2023-10-27 13:58:13.884 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: how many plays has William Shakespeare written in the 16th century. -2023-10-27 13:58:14.340 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"William Shakespeare","startOffset":19,"endOffset":38,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"plays","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":38,"startOffset":19,"name":"William Shakespeare","type":"Person"} -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 38 -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"plays","type":"Keyphrase"} -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 9 -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"William Shakespeare","startOffset":19,"endOffset":38,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"plays","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Уилям_Шекспир","http://dbpedia.org/resource/William_Shakespeare"],"relevanceScore":0.8275862068965517,"inst":"http://ontology.ontotext.com/resource/bpdt","confidence":0.9415687917878157,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":38,"startOffset":19,"name":"William Shakespeare","type":"Person"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Play_(activity)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/53fbhrl","confidence":0.5655903114098065,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"plays","type":"Keyphrase"}] -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:58:14.341 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:58:14.348 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 -2023-10-27 13:58:14.349 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@711e1299 -2023-10-27 13:58:14.349 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:14.351 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.351 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.351 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.357 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66419167 -2023-10-27 13:58:14.358 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:58:14.360 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.360 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.360 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.368 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 519 ms -2023-10-27 13:59:05.535 INFO 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:05.535 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:05.535 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:05.536 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@1dd59c1a -2023-10-27 13:59:05.544 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6211e910 -2023-10-27 13:59:05.545 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:05.547 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:05.547 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:05.556 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:05.556 INFO 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql -2023-10-27 13:59:05.558 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Was the first female chancellor in Germany ever married? -2023-10-27 13:59:05.558 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: Was the first female chancellor in Germany ever married? -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"female","startOffset":14,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Germany","startOffset":35,"endOffset":42,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":20,"startOffset":14,"name":"female","type":"Keyphrase"} -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 20 -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":42,"startOffset":35,"name":"Germany","type":"Location"} -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 35 -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: 42 -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"female","startOffset":14,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Germany","startOffset":35,"endOffset":42,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Weibliches_Geschlecht","http://dbpedia.org/resource/Female"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/2bvtuh","confidence":0.9205719561368086,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":20,"startOffset":14,"name":"female","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Germany","http://dbpedia.org/resource/Германия","http://dbpedia.org/resource/Deutschland"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/bqwh","confidence":0.9471603685860805,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":42,"startOffset":35,"name":"Germany","type":"Location"}] -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:59:05.985 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:59:05.993 DEBUG 28728 --- [io-8096-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:05.993 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5457d4fd -2023-10-27 13:59:05.994 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:59:05.997 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:05.998 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:05.998 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.007 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d893393 -2023-10-27 13:59:06.007 DEBUG 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:59:06.009 INFO 28728 --- [io-8096-exec-10] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.009 INFO 28728 --- [io-8096-exec-10] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.009 DEBUG 28728 --- [io-8096-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.019 DEBUG 28728 --- [io-8096-exec-10] e.w.q.component.QanaryServiceController : processing took: 484 ms -2023-10-27 13:59:35.849 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:35.849 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:35.849 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:35.850 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@48ba88ee -2023-10-27 13:59:35.860 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c65c667 -2023-10-27 13:59:35.860 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:35.864 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:35.864 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:35.874 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 -2023-10-27 13:59:35.874 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql -2023-10-27 13:59:35.876 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:35.876 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"actresses","startOffset":12,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Actress","confidence":0.5}},{"name":"Portrait","startOffset":25,"endOffset":33,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6749999999999999,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Portrait","confidence":0.5}}]} -2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"actresses","startOffset":12,"endOffset":21,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Actress","confidence":0.5}},{"name":"Portrait","startOffset":25,"endOffset":33,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6749999999999999,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Portrait","confidence":0.5}}]} -2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Actress","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":21,"startOffset":12,"name":"actresses","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":0.6749999999999999,"inst":"http://data.ontotext.com/publishing/topic/Portrait","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":33,"startOffset":25,"name":"Portrait","type":"Keyphrase"}] -2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:59:36.397 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:59:36.397 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 548 ms -2023-10-27 13:59:47.608 INFO 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:47.609 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:47.611 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:47.612 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@26b9875c -2023-10-27 13:59:47.631 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22860753 -2023-10-27 13:59:47.631 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:47.633 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:47.633 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:47.640 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 13:59:47.640 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql -2023-10-27 13:59:47.642 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation What are the professions of John Lennon’s sons? -2023-10-27 13:59:47.642 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: What are the professions of John Lennon’s sons? -2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"sons","startOffset":42,"endOffset":46,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"John Lennon","startOffset":28,"endOffset":39,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} -2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":46,"startOffset":42,"name":"sons","type":"Keyphrase"} -2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 42 -2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 46 -2023-10-27 13:59:48.124 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":39,"startOffset":28,"name":"John Lennon","type":"Person"} -2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 -2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 -2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"sons","startOffset":42,"endOffset":46,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"John Lennon","startOffset":28,"endOffset":39,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} -2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Son","http://dbpedia.org/resource/Син_(дете)"],"relevanceScore":0.1315789473684211,"inst":"http://ontology.ontotext.com/resource/98p7u9","confidence":0.9870886059056968,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":46,"startOffset":42,"name":"sons","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/John_Lennon","http://dbpedia.org/resource/Джон_Ленън"],"relevanceScore":0.5,"inst":"http://ontology.ontotext.com/resource/2m301","confidence":0.8227581821904847,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":39,"startOffset":28,"name":"John Lennon","type":"Person"}] -2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 13:59:48.125 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 13:59:48.132 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 13:59:48.132 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26d4bcc6 -2023-10-27 13:59:48.132 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:59:48.133 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.134 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.134 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.140 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@610d205 -2023-10-27 13:59:48.140 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 13:59:48.141 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.142 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.142 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.149 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : processing took: 541 ms -2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:12.767 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@7e9d41e8 -2023-10-27 14:00:12.776 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2703b5ec -2023-10-27 14:00:12.776 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:12.777 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:12.777 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:12.786 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d -2023-10-27 14:00:12.786 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql -2023-10-27 14:00:12.788 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:12.788 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"fellow Hobbit","startOffset":12,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Fellow_hobbit","confidence":0.5}}]} -2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"fellow Hobbit","startOffset":12,"endOffset":25,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Fellow_hobbit","confidence":0.5}}]} -2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Fellow_hobbit","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":25,"startOffset":12,"name":"fellow Hobbit","type":"Keyphrase"}] -2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:00:13.266 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:00:13.266 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 499 ms -2023-10-27 14:00:20.278 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:20.279 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:20.279 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:20.279 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@422fec51 -2023-10-27 14:00:20.290 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ab556b -2023-10-27 14:00:20.291 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:20.291 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:20.291 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:20.299 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 -2023-10-27 14:00:20.299 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql -2023-10-27 14:00:20.300 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Through which countries does the Danube go? -2023-10-27 14:00:20.300 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: Through which countries does the Danube go? -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Danube","startOffset":33,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":33,"name":"Danube","type":"Location"} -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 33 -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"} -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 23 -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Danube","startOffset":33,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"countries","startOffset":14,"endOffset":23,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Danube","http://dbpedia.org/resource/Дунав","http://dbpedia.org/resource/Donau"],"relevanceScore":0.3448275862068965,"inst":"http://ontology.ontotext.com/resource/1b0hd","confidence":0.6959970461418833,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":33,"name":"Danube","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Страна","http://dbpedia.org/resource/Country","http://dbpedia.org/resource/Land_(Geographie)"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/n81t","confidence":0.8484997565769616,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":23,"startOffset":14,"name":"countries","type":"Keyphrase"}] -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:00:20.788 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:00:20.796 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 -2023-10-27 14:00:20.796 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20b2b614 -2023-10-27 14:00:20.797 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:00:20.799 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:20.799 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:20.799 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:20.807 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7e8460ea -2023-10-27 14:00:20.808 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:00:20.811 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:20.811 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:20.811 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:20.821 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 542 ms -2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:30.408 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@385fc364 -2023-10-27 14:00:30.417 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21d5f65 -2023-10-27 14:00:30.417 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:30.418 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:30.418 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:30.436 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:30.436 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql -2023-10-27 14:00:30.438 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which of the dragons in Game of Thrones died? -2023-10-27 14:00:30.438 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which of the dragons in Game of Thrones died? -2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"dragons","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Dragon","confidence":0.5}}]} -2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"dragons","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Dragon","confidence":0.5}}]} -2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Dragon","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":20,"startOffset":13,"name":"dragons","type":"Keyphrase"}] -2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:00:31.023 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:00:31.023 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : processing took: 615 ms -2023-10-27 14:01:10.515 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:10.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:10.516 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:10.516 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@77f0ee41 -2023-10-27 14:01:10.523 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21e985c4 -2023-10-27 14:01:10.523 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:01:10.524 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:10.524 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:10.532 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:10.532 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql -2023-10-27 14:01:10.534 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:10.534 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Italian national soccer team","startOffset":23,"endOffset":51,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/National_soccer_team","confidence":0.5}},{"name":"Fifa World Cup","startOffset":60,"endOffset":74,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":74,"startOffset":60,"name":"Fifa World Cup","type":"Keyphrase"} -2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 60 -2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 74 -2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Italian national soccer team","startOffset":23,"endOffset":51,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/National_soccer_team","confidence":0.5}},{"name":"Fifa World Cup","startOffset":60,"endOffset":74,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:01:11.660 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/National_soccer_team","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":51,"startOffset":23,"name":"Italian national soccer team","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/FIFA_World_Cup","http://dbpedia.org/resource/Световно_първенство_по_футбол","http://dbpedia.org/resource/Fußball-Weltmeisterschaft"],"relevanceScore":0.2884615384615384,"inst":"http://ontology.ontotext.com/resource/2cvhbl","confidence":0.9963839695008428,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":74,"startOffset":60,"name":"Fifa World Cup","type":"Keyphrase"}] -2023-10-27 14:01:11.661 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:01:11.661 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:01:11.667 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:11.667 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@81994d6 -2023-10-27 14:01:11.668 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:01:11.669 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:11.669 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:11.669 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:11.675 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 1160 ms -2023-10-27 14:02:29.820 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:29.820 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:29.820 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:29.821 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@72b99276 -2023-10-27 14:02:29.830 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@177a336 -2023-10-27 14:02:29.831 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:29.832 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:29.833 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:29.840 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:29.840 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql -2023-10-27 14:02:29.842 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who founded the Worpswede artist colony ? -2023-10-27 14:02:29.842 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who founded the Worpswede artist colony ? -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Worpswede artist colony","startOffset":16,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":16,"name":"Worpswede artist colony","type":"Location"} -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 16 -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Worpswede artist colony","startOffset":16,"endOffset":39,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}}]} -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Künstlerkolonie_Worpswede"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11grzdl","confidence":0.7778898518781626,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":39,"startOffset":16,"name":"Worpswede artist colony","type":"Location"}] -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:02:30.374 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:02:30.380 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:30.381 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45184bfe -2023-10-27 14:02:30.382 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:02:30.383 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.383 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.383 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.390 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 570 ms -2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:00.955 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@66d6b737 -2023-10-27 14:06:00.991 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cd9874 -2023-10-27 14:06:00.993 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:00.995 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:00.995 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:01.006 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:01.006 INFO 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql -2023-10-27 14:06:01.010 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many poems did Allen Ginsberg published? -2023-10-27 14:06:01.010 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many poems did Allen Ginsberg published? -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"poems","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Allen Ginsberg","startOffset":19,"endOffset":33,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"poems","type":"Keyphrase"} -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 9 -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":33,"startOffset":19,"name":"Allen Ginsberg","type":"Person"} -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 19 -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: 33 -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"poems","startOffset":9,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"Allen Ginsberg","startOffset":19,"endOffset":33,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}}]} -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Стихотворение","http://dbpedia.org/resource/Gedicht","http://dbpedia.org/resource/Poem"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5vgfv6p","confidence":0.6284279617604457,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":9,"name":"poems","type":"Keyphrase"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Allen_Ginsberg","http://dbpedia.org/resource/Алън_Гинсбърг"],"relevanceScore":0.7142857142857142,"inst":"http://ontology.ontotext.com/resource/1bk5d","confidence":0.9525878521284181,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":33,"startOffset":19,"name":"Allen Ginsberg","type":"Person"}] -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:06:01.566 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:06:01.572 DEBUG 28728 --- [nio-8096-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:01.572 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@570c7366 -2023-10-27 14:06:01.573 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:06:01.575 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:01.576 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:01.576 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:01.582 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63abe20e -2023-10-27 14:06:01.582 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:06:01.584 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:01.584 INFO 28728 --- [nio-8096-exec-1] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:01.584 DEBUG 28728 --- [nio-8096-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:01.589 DEBUG 28728 --- [nio-8096-exec-1] e.w.q.component.QanaryServiceController : processing took: 634 ms -2023-10-27 14:06:42.317 INFO 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:42.317 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:42.317 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:42.318 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@50218651 -2023-10-27 14:06:42.324 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d624bad -2023-10-27 14:06:42.325 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:42.325 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:42.325 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:42.349 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:42.349 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql -2023-10-27 14:06:42.351 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:42.351 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Dinosaurs","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"creator","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"Dinosaurs","type":"Keyphrase"} -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 26 -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 35 -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Dinosaurs","startOffset":26,"endOffset":35,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}},{"name":"creator","startOffset":11,"endOffset":18,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Dinosaur","http://dbpedia.org/resource/Dinosaurier","http://dbpedia.org/resource/Динозаври"],"relevanceScore":0.5588235294117648,"inst":"http://ontology.ontotext.com/resource/nro9","confidence":0.5759500364481792,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":35,"startOffset":26,"name":"Dinosaurs","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":18,"startOffset":11,"name":"creator","type":"Keyphrase"}] -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:06:42.823 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:06:42.828 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:42.828 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4f6c55bb -2023-10-27 14:06:42.828 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:06:42.829 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:42.830 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:42.830 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:42.835 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : processing took: 518 ms -2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:15.523 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@70474114 -2023-10-27 14:07:15.531 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1012ea84 -2023-10-27 14:07:15.531 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:15.532 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:15.532 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:15.540 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:15.540 INFO 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql -2023-10-27 14:07:15.541 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:15.541 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"} -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 21 -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: 34 -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"}] -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:07:15.933 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:07:15.940 DEBUG 28728 --- [nio-8096-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:15.940 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51b57a6f -2023-10-27 14:07:15.940 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:15.944 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:15.944 INFO 28728 --- [nio-8096-exec-6] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:15.944 DEBUG 28728 --- [nio-8096-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:15.951 DEBUG 28728 --- [nio-8096-exec-6] e.w.q.component.QanaryServiceController : processing took: 428 ms -2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:33.019 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4c35379a -2023-10-27 14:07:33.026 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b396c82 -2023-10-27 14:07:33.026 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:33.027 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:33.027 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:33.033 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 -2023-10-27 14:07:33.033 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql -2023-10-27 14:07:33.035 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:33.035 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:33.455 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Isfahan","startOffset":18,"endOffset":25,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"population","startOffset":4,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:07:33.455 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":25,"startOffset":18,"name":"Isfahan","type":"Location"} -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 18 -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 25 -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":4,"name":"population","type":"Keyphrase"} -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 4 -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: 14 -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Isfahan","startOffset":18,"endOffset":25,"type":"Location","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"}},{"name":"population","startOffset":4,"endOffset":14,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Isfahan","http://dbpedia.org/resource/Исфахан"],"relevanceScore":0.7499999999999999,"inst":"http://ontology.ontotext.com/resource/15sord","confidence":0.595645150035184,"class":"http://ontology.ontotext.com/taxonomy/Location","isTrusted":"true"},"endOffset":25,"startOffset":18,"name":"Isfahan","type":"Location"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Population","http://dbpedia.org/resource/Population_(Biologie)","http://dbpedia.org/resource/Популация"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/11613wx","confidence":0.9431457567457473,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":14,"startOffset":4,"name":"population","type":"Keyphrase"}] -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:07:33.456 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:07:33.460 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 -2023-10-27 14:07:33.460 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@212b205e -2023-10-27 14:07:33.460 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:33.462 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.462 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.462 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.469 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26928d49 -2023-10-27 14:07:33.469 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:33.470 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.471 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.471 DEBUG 28728 --- [nio-8096-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.476 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 457 ms -2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:34.701 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@28618021 -2023-10-27 14:07:34.709 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@238f8fc7 -2023-10-27 14:07:34.709 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:34.710 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:34.710 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:34.716 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:34.717 INFO 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql -2023-10-27 14:07:34.718 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:34.718 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Reinhold Messner","startOffset":12,"endOffset":28,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"brothers","startOffset":31,"endOffset":39,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":28,"startOffset":12,"name":"Reinhold Messner","type":"Person"} -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 12 -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":39,"startOffset":31,"name":"brothers","type":"Keyphrase"} -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 31 -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: 39 -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Reinhold Messner","startOffset":12,"endOffset":28,"type":"Person","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"}},{"name":"brothers","startOffset":31,"endOffset":39,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:07:35.256 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Райнхолд_Меснер","http://dbpedia.org/resource/Reinhold_Messner"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/3s92vht","confidence":0.9391874441888436,"class":"http://ontology.ontotext.com/taxonomy/Person","isTrusted":"true"},"endOffset":28,"startOffset":12,"name":"Reinhold Messner","type":"Person"},{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Братя_и_сестри","http://dbpedia.org/resource/Sibling"],"relevanceScore":0.5128205128205129,"inst":"http://ontology.ontotext.com/resource/162wjd","confidence":0.9799685602859877,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":39,"startOffset":31,"name":"brothers","type":"Keyphrase"}] -2023-10-27 14:07:35.257 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:07:35.257 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:07:35.262 DEBUG 28728 --- [nio-8096-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:35.262 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b831e1b -2023-10-27 14:07:35.262 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:35.264 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.265 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.265 DEBUG 28728 --- [nio-8096-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.273 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51b2dba0 -2023-10-27 14:07:35.274 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:07:35.276 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.276 INFO 28728 --- [nio-8096-exec-9] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.276 DEBUG 28728 --- [nio-8096-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.286 DEBUG 28728 --- [nio-8096-exec-9] e.w.q.component.QanaryServiceController : processing took: 585 ms -2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:16.416 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@31293b04 -2023-10-27 14:08:16.427 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@426a2f68 -2023-10-27 14:08:16.427 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:16.428 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:16.428 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:16.441 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 -2023-10-27 14:08:16.441 INFO 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql -2023-10-27 14:08:16.443 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Where was Roland Corporation founded? -2023-10-27 14:08:16.443 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: Where was Roland Corporation founded? -2023-10-27 14:08:16.931 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"Roland Corporation","startOffset":10,"endOffset":28,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} -2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":28,"startOffset":10,"name":"Roland Corporation","type":"Organization"} -2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 10 -2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: 28 -2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"Roland Corporation","startOffset":10,"endOffset":28,"type":"Organization","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"}}]} -2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Roland_(Unternehmen)","http://dbpedia.org/resource/Roland_Corporation"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/5a3fgrd","confidence":0.7964073710824701,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"true"},"endOffset":28,"startOffset":10,"name":"Roland Corporation","type":"Organization"}] -2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:08:16.932 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:08:16.939 DEBUG 28728 --- [nio-8096-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 -2023-10-27 14:08:16.940 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55214e22 -2023-10-27 14:08:16.940 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:16.941 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:16.942 INFO 28728 --- [nio-8096-exec-2] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:16.942 DEBUG 28728 --- [nio-8096-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:16.947 DEBUG 28728 --- [nio-8096-exec-2] e.w.q.component.QanaryServiceController : processing took: 531 ms -2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:23.686 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@6950fb24 -2023-10-27 14:08:23.699 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ab01814 -2023-10-27 14:08:23.699 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:23.700 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:23.701 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:23.713 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:23.713 INFO 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql -2023-10-27 14:08:23.715 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:23.715 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:24.138 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:08:24.138 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"} -2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 21 -2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: 34 -2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"impressionism","startOffset":21,"endOffset":34,"type":"Keyphrase","features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1.0,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"}}]} -2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"false","exactMatch":["http://dbpedia.org/resource/Impressionism","http://dbpedia.org/resource/Импресионизъм","http://dbpedia.org/resource/Impressionismus"],"relevanceScore":1,"inst":"http://ontology.ontotext.com/resource/15yj89","confidence":0.9564781693376204,"class":"http://ontology.ontotext.com/taxonomy/Thing","isTrusted":"true"},"endOffset":34,"startOffset":21,"name":"impressionism","type":"Keyphrase"}] -2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:08:24.139 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:08:24.283 DEBUG 28728 --- [nio-8096-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:24.283 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@77690f0e -2023-10-27 14:08:24.283 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) -} -2023-10-27 14:08:24.285 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.t.QanaryTripleStoreConnector : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.286 INFO 28728 --- [nio-8096-exec-4] e.w.q.c.ontotext.ned.OntoTextNED : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.286 DEBUG 28728 --- [nio-8096-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:hasBody . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.294 DEBUG 28728 --- [nio-8096-exec-4] e.w.q.component.QanaryServiceController : processing took: 608 ms -2023-10-27 14:09:10.183 INFO 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:10.186 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:10.186 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:10.186 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@3f209e34 -2023-10-27 14:09:10.199 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30a28647 -2023-10-27 14:09:10.199 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:10.201 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:10.201 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:10.210 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 -2023-10-27 14:09:10.210 INFO 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql -2023-10-27 14:09:10.212 DEBUG 28728 --- [nio-8096-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:10.212 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"piece","startOffset":22,"endOffset":27,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6779661016949152,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Piece","confidence":0.5}},{"name":"samurai champloo","startOffset":3,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Samurai_champloo","confidence":0.5}}]} -2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"piece","startOffset":22,"endOffset":27,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":0.6779661016949152,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Piece","confidence":0.5}},{"name":"samurai champloo","startOffset":3,"endOffset":19,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Samurai_champloo","confidence":0.5}}]} -2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":0.6779661016949152,"inst":"http://data.ontotext.com/publishing/topic/Piece","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":27,"startOffset":22,"name":"piece","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Samurai_champloo","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":19,"startOffset":3,"name":"samurai champloo","type":"Keyphrase"}] -2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:09:10.781 INFO 28728 --- [nio-8096-exec-7] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:09:10.781 DEBUG 28728 --- [nio-8096-exec-7] e.w.q.component.QanaryServiceController : processing took: 596 ms -2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:12.708 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@1275ee59 -2023-10-27 14:09:12.715 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46c6e5d -2023-10-27 14:09:12.716 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:12.716 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:12.716 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:12.725 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 -2023-10-27 14:09:12.725 INFO 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql -2023-10-27 14:09:12.727 DEBUG 28728 --- [nio-8096-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation when was the creator of saturday night live born? -2023-10-27 14:09:12.727 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: when was the creator of saturday night live born? -2023-10-27 14:09:13.268 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"creator","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} -2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"creator","startOffset":13,"endOffset":20,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}}]} -2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":20,"startOffset":13,"name":"creator","type":"Keyphrase"}] -2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:09:13.269 INFO 28728 --- [nio-8096-exec-8] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:09:13.269 DEBUG 28728 --- [nio-8096-exec-8] e.w.q.component.QanaryServiceController : processing took: 561 ms -2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryMessage : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:26.711 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : process: eu.wdaqua.qanary.commons.QanaryMessage@4e602205 -2023-10-27 14:10:26.724 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7130cc63 -2023-10-27 14:10:26.724 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:26.725 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.t.QanaryTripleStoreConnector : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:26.725 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:26.732 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb -2023-10-27 14:10:26.732 INFO 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql -2023-10-27 14:10:26.734 DEBUG 28728 --- [nio-8096-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion : textRepresentation Which creator of The OA also acted in it? -2023-10-27 14:10:26.734 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: Which creator of The OA also acted in it? -2023-10-27 14:10:27.220 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : response: {"mentions":[{"name":"creator","startOffset":6,"endOffset":13,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}},{"name":"OA","startOffset":21,"endOffset":23,"type":"Organization","features":{"isGenerated":"true","relevanceScore":0.5714285714285714,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"false","confidence":0.8675383808431975,"inst":"http://data.ontotext.com/publishing/organization/OA"}}]} -2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: {"mentions":[{"name":"creator","startOffset":6,"endOffset":13,"type":"Keyphrase","features":{"isGenerated":"true","relevanceScore":1.0,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false","inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5}},{"name":"OA","startOffset":21,"endOffset":23,"type":"Organization","features":{"isGenerated":"true","relevanceScore":0.5714285714285714,"class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"false","confidence":0.8675383808431975,"inst":"http://data.ontotext.com/publishing/organization/OA"}}]} -2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : Question: [{"features":{"isGenerated":"true","relevanceScore":1,"inst":"http://data.ontotext.com/publishing/topic/Creator","confidence":0.5,"class":"http://ontology.ontotext.com/taxonomy/Keyphrase","isTrusted":"false"},"endOffset":13,"startOffset":6,"name":"creator","type":"Keyphrase"},{"features":{"isGenerated":"true","relevanceScore":0.5714285714285714,"confidence":0.8675383808431975,"inst":"http://data.ontotext.com/publishing/organization/OA","class":"http://ontology.ontotext.com/taxonomy/Organization","isTrusted":"false"},"endOffset":23,"startOffset":21,"name":"OA","type":"Organization"}] -2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : store data in graph null -2023-10-27 14:10:27.221 INFO 28728 --- [nio-8096-exec-5] e.w.q.c.ontotext.ned.OntoTextNED : apply vocabulary alignment on outgraph -2023-10-27 14:10:27.221 DEBUG 28728 --- [nio-8096-exec-5] e.w.q.component.QanaryServiceController : processing took: 510 ms diff --git a/qanary-component-NED-Ontotext/pom.xml b/qanary-component-NED-Ontotext/pom.xml index 47cb2d5af..d1c7603ec 100644 --- a/qanary-component-NED-Ontotext/pom.xml +++ b/qanary-component-NED-Ontotext/pom.xml @@ -27,12 +27,6 @@ qa.component ${qanary.version} - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.springframework.boot spring-boot-starter-web diff --git a/qanary-component-NED-Tagme/nohup.out b/qanary-component-NED-Tagme/nohup.out deleted file mode 100644 index 51005bef7..000000000 --- a/qanary-component-NED-Tagme/nohup.out +++ /dev/null @@ -1,4473 +0,0 @@ -Error: Unable to access jarfile target/*.jar - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNED -- TagmeNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:01:32.632  INFO 7850 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 7850 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) -2023-10-27 12:01:32.638 DEBUG 7850 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:01:32.640  INFO 7850 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:01:39.884  INFO 7850 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 -2023-10-27 12:01:39.999  INFO 7850 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 -2023-10-27 12:01:40.000  INFO 7850 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 -2023-10-27 12:01:40.010  INFO 7850 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8092 -spring.application.name = TagmeNED -spring.application.description = TagmeNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:01:40.050  INFO 7850 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl -2023-10-27 12:01:41.548  WARN 7850 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:01:41.653  WARN 7850 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:01:41.911  WARN 7850 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:01:41.976  INFO 7850 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:01:44.338  INFO 7850 --- [ main] e.w.q.component.tagme.ned.Application  : Started Application in 13.515 seconds (JVM running for 15.641) -2023-10-27 12:01:44.746  WARN 7850 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:01:54.578  INFO 7850 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 40f23396d00b - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNED -- TagmeNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:21.623  INFO 9647 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 9647 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) -2023-10-27 12:09:21.655 DEBUG 9647 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:21.662  INFO 9647 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:40.576  INFO 9647 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76ba13c -2023-10-27 12:09:40.781  INFO 9647 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fd4acee -2023-10-27 12:09:40.788  INFO 9647 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@6175619b -2023-10-27 12:09:40.835  INFO 9647 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8092 -spring.application.name = TagmeNED -spring.application.description = TagmeNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:40.973  INFO 9647 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl -2023-10-27 12:09:44.207  WARN 9647 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:44.432  WARN 9647 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:44.904  WARN 9647 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:45.033  INFO 9647 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:09:53.371  INFO 9647 --- [ main] e.w.q.component.tagme.ned.Application  : Started Application in 36.392 seconds (JVM running for 42.482) -2023-10-27 12:09:54.406  WARN 9647 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:13.490  INFO 9647 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 40f23396d00b - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNED -- TagmeNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:50.782  INFO 11760 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 11760 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) -2023-10-27 12:15:50.789 DEBUG 11760 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:50.790  INFO 11760 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:19.264  INFO 11760 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 -2023-10-27 12:16:19.669  INFO 11760 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 -2023-10-27 12:16:19.671  INFO 11760 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 -2023-10-27 12:16:19.710  INFO 11760 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8092 -spring.application.name = TagmeNED -spring.application.description = TagmeNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:19.920  INFO 11760 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl -2023-10-27 12:16:26.038  WARN 11760 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:26.641  WARN 11760 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:27.893  WARN 11760 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:28.004  INFO 11760 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:16:38.427  WARN 11760 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8092 is already in use -2023-10-27 12:16:39.190 ERROR 11760 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8092 was already in use. - -Action: - -Identify and stop the process that's listening on port 8092 or configure this application to listen on another port. - -2023-10-27 13:37:23.457  WARN 9647 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNED -- TagmeNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:48.407  INFO 28727 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 28727 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) -2023-10-27 13:37:48.438 DEBUG 28727 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:48.439  INFO 28727 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:09.769  INFO 28727 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 -2023-10-27 13:38:09.973  INFO 28727 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 -2023-10-27 13:38:10.009  INFO 28727 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 -2023-10-27 13:38:10.073  INFO 28727 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8092 -spring.application.name = TagmeNED -spring.application.description = TagmeNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:10.263  INFO 28727 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl -2023-10-27 13:38:15.532  WARN 28727 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:15.843  WARN 28727 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:16.515  WARN 28727 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:16.546  INFO 28727 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:38:27.167  INFO 28727 --- [ main] e.w.q.component.tagme.ned.Application  : Started Application in 43.703 seconds (JVM running for 49.958) -2023-10-27 13:38:28.388  WARN 28727 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNED, managementUrl=http://0.0.0.0:8092/actuator, healthUrl=http://0.0.0.0:8092/actuator/health, serviceUrl=http://0.0.0.0:8092/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 13:38:47.619  INFO 28727 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 40f23396d00b - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNED -- TagmeNED is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:52.388  INFO 30118 --- [ main] e.w.q.component.tagme.ned.Application  : Starting Application v3.2.0 using Java 21 on fedora with PID 30118 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/target/qanary-component-NED-Tagme-3.2.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme) -2023-10-27 13:38:52.394 DEBUG 30118 --- [ main] e.w.q.component.tagme.ned.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:52.395  INFO 30118 --- [ main] e.w.q.component.tagme.ned.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:12.776  INFO 30118 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@274872f8 -2023-10-27 13:39:13.021  INFO 30118 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b970f7 -2023-10-27 13:39:13.023  INFO 30118 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ned.TagmeNED@165b8a71 -2023-10-27 13:39:13.035  INFO 30118 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8092 -spring.application.name = TagmeNED -spring.application.description = TagmeNED is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:13.073  INFO 30118 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl -2023-10-27 13:39:16.256  WARN 30118 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NED-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:16.500  WARN 30118 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:16.914  WARN 30118 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:16.953  INFO 30118 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:39:25.466  WARN 30118 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8092 is already in use -2023-10-27 13:39:26.021 ERROR 30118 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8092 was already in use. - -Action: - -Identify and stop the process that's listening on port 8092 or configure this application to listen on another port. - -2023-10-27 13:51:59.859  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"} -2023-10-27 13:51:59.869  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"} -2023-10-27 13:51:59.975  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"},"inGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395","outGraph":"urn:graph:1237a227-0e9e-436a-a1ca-984017429395"} -2023-10-27 13:52:00.132  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3df3425e -2023-10-27 13:52:00.239  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6de18420 -2023-10-27 13:52:00.275 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:00.649  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:00.650  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:00.954 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_287f9844-108b-4779-bb7b-a4f2ec0013b1 -2023-10-27 13:52:00.954  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_287f9844-108b-4779-bb7b-a4f2ec0013b1 found in urn:graph:1237a227-0e9e-436a-a1ca-984017429395 at http://localhost:8080/sparql -2023-10-27 13:52:00.993 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does the ATI Company still exist? -2023-10-27 13:52:00.994  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Does the ATI Company still exist? -2023-10-27 13:52:00.994  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Does the ATI Company still exist? -2023-10-27 13:52:00.996  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Does+the+ATI+Company+still+exist%3F -2023-10-27 13:52:01.013  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Does+the+ATI+Company+still+exist%3F -2023-10-27 13:52:01.846  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"ATI","start":9,"link_probability":0.24807527661323547,"rho":0.3229750096797943,"end":12,"id":2400,"title":"Advanced Micro Devices"},{"spot":"Company","start":13,"link_probability":0.008127721026539803,"rho":0.1542670577764511,"end":20,"id":4918223,"title":"Company"},{"spot":"still","start":21,"link_probability":0.0010785296326503158,"rho":0.18633651733398438,"end":26,"id":52797,"title":"Digital camera"}],"time":15,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:01"} -2023-10-27 13:52:01.847  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Advanced_Micro_Devices at (9,13) with probability 0.24807527661323547 -2023-10-27 13:52:01.850 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"ATI","start":9,"link_probability":0.24807527661323547,"rho":0.3229750096797943,"end":12,"id":2400,"title":"Advanced Micro Devices"} -2023-10-27 13:52:01.850  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.24807527661323547 < 0.25) for http://dbpedia.org/resource/Advanced_Micro_Devices -2023-10-27 13:52:01.851  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Company at (13,21) with probability 0.008127721026539803 -2023-10-27 13:52:01.851 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Company","start":13,"link_probability":0.008127721026539803,"rho":0.1542670577764511,"end":20,"id":4918223,"title":"Company"} -2023-10-27 13:52:01.851  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.008127721026539803 < 0.25) for http://dbpedia.org/resource/Company -2023-10-27 13:52:01.851  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Digital_camera at (21,27) with probability 0.0010785296326503158 -2023-10-27 13:52:01.851 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"still","start":21,"link_probability":0.0010785296326503158,"rho":0.18633651733398438,"end":26,"id":52797,"title":"Digital camera"} -2023-10-27 13:52:01.851  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0010785296326503158 < 0.25) for http://dbpedia.org/resource/Digital_camera -2023-10-27 13:52:01.851  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:01.851  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:01.851 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : processing took: 1984 ms -2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"} -2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"} -2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"},"inGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3","outGraph":"urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3"} -2023-10-27 13:52:04.234  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5a42d48c -2023-10-27 13:52:04.288  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@548521b4 -2023-10-27 13:52:04.289 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:04.292  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:04.294  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:04.303 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a77cdadb-26cb-4c6a-a71a-9d302b7da275 -2023-10-27 13:52:04.304  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a77cdadb-26cb-4c6a-a71a-9d302b7da275 found in urn:graph:4be805ac-2b52-4fa6-bd5b-26bdb91cf1f3 at http://localhost:8080/sparql -2023-10-27 13:52:04.306 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? -2023-10-27 13:52:04.307  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many female Chinese Empresses have there been? -2023-10-27 13:52:04.307  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many female Chinese Empresses have there been? -2023-10-27 13:52:04.307  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+female+Chinese+Empresses+have+there+been%3F -2023-10-27 13:52:04.308  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+female+Chinese+Empresses+have+there+been%3F -2023-10-27 13:52:04.760  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"female","start":9,"link_probability":0.006207597441971302,"rho":0.058314092457294464,"end":15,"id":33183,"title":"Woman"},{"spot":"Chinese","start":16,"link_probability":0.20171232521533966,"rho":0.27631738781929016,"end":23,"id":5760,"title":"History of China"},{"spot":"Empresses","start":24,"link_probability":0.010126582346856594,"rho":0.12531423568725586,"end":33,"id":3618690}],"time":23,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:04"} -2023-10-27 13:52:04.761  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Woman at (9,16) with probability 0.006207597441971302 -2023-10-27 13:52:04.761 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"female","start":9,"link_probability":0.006207597441971302,"rho":0.058314092457294464,"end":15,"id":33183,"title":"Woman"} -2023-10-27 13:52:04.761  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006207597441971302 < 0.25) for http://dbpedia.org/resource/Woman -2023-10-27 13:52:04.761  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/History_of_China at (16,24) with probability 0.20171232521533966 -2023-10-27 13:52:04.761 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chinese","start":16,"link_probability":0.20171232521533966,"rho":0.27631738781929016,"end":23,"id":5760,"title":"History of China"} -2023-10-27 13:52:04.761  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.20171232521533966 < 0.25) for http://dbpedia.org/resource/History_of_China -2023-10-27 13:52:04.782 ERROR 28727 --- [nio-8092-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.json.JSONException: JSONObject["title"] not found.] with root cause - -org.json.JSONException: JSONObject["title"] not found. - at org.json.JSONObject.get(JSONObject.java:570) ~[json-20230227.jar!/:na] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.retrieveDataFromWebService(TagmeNED.java:143) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:88) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:52:05.520  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"} -2023-10-27 13:52:05.520  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"} -2023-10-27 13:52:05.520  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"},"inGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833","outGraph":"urn:graph:98eb4aba-bd29-4792-977f-7daf47391833"} -2023-10-27 13:52:05.521  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@505c246a -2023-10-27 13:52:05.529  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e9bc011 -2023-10-27 13:52:05.530 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:05.531  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:05.532  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:05.540 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d3145cb-f8da-48eb-af0c-ec7c012390af -2023-10-27 13:52:05.540  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d3145cb-f8da-48eb-af0c-ec7c012390af found in urn:graph:98eb4aba-bd29-4792-977f-7daf47391833 at http://localhost:8080/sparql -2023-10-27 13:52:05.544 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded “The Blue Rider”? -2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Who founded “The Blue Rider”? -2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question Who founded “The Blue Rider”? -2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path Who+founded+%E2%80%9CThe+Blue+Rider%E2%80%9D%3F -2023-10-27 13:52:05.544  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Who+founded+%E2%80%9CThe+Blue+Rider%E2%80%9D%3F -2023-10-27 13:52:05.849  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.001720538828521967,"end":3,"id":36517,"title":"The Who"},{"spot":"Blue Rider","start":17,"link_probability":0.1894736886024475,"rho":0.09473684430122375,"end":27,"id":621334,"title":"Der Blaue Reiter"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:05"} -2023-10-27 13:52:05.849  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Who at (0,4) with probability 0.003441077657043934 -2023-10-27 13:52:05.849 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.001720538828521967,"end":3,"id":36517,"title":"The Who"} -2023-10-27 13:52:05.849  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003441077657043934 < 0.25) for http://dbpedia.org/resource/The_Who -2023-10-27 13:52:05.850  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Der_Blaue_Reiter at (17,28) with probability 0.1894736886024475 -2023-10-27 13:52:05.850 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Blue Rider","start":17,"link_probability":0.1894736886024475,"rho":0.09473684430122375,"end":27,"id":621334,"title":"Der Blaue Reiter"} -2023-10-27 13:52:05.850  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.1894736886024475 < 0.25) for http://dbpedia.org/resource/Der_Blaue_Reiter -2023-10-27 13:52:05.850  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:05.850  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:05.850 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : processing took: 330 ms -2023-10-27 13:52:07.503  INFO 28727 --- [nio-8092-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"} -2023-10-27 13:52:07.504  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"} -2023-10-27 13:52:07.504  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"},"inGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013","outGraph":"urn:graph:94933918-2f59-41a2-bb88-fdf83e189013"} -2023-10-27 13:52:07.504  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7cd6ab11 -2023-10-27 13:52:07.514  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72114afb -2023-10-27 13:52:07.514 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:07.516  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:07.516  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:07.528 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5d26d172-f706-4d9c-a379-4409f55d4001 -2023-10-27 13:52:07.528  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5d26d172-f706-4d9c-a379-4409f55d4001 found in urn:graph:94933918-2f59-41a2-bb88-fdf83e189013 at http://localhost:8080/sparql -2023-10-27 13:52:07.531 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who wrote the poem Howl ? -2023-10-27 13:52:07.531  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Who wrote the poem Howl ? -2023-10-27 13:52:07.531  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question Who wrote the poem Howl ? -2023-10-27 13:52:07.531  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Path Who+wrote+the+poem+Howl+%3F -2023-10-27 13:52:07.532  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Who+wrote+the+poem+Howl+%3F -2023-10-27 13:52:07.806  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.09884143620729446,"end":3,"id":36517,"title":"The Who"},{"spot":"poem","start":14,"link_probability":0.031330473721027374,"rho":0.1457822322845459,"end":18,"id":22926,"title":"Poetry"},{"spot":"Howl","start":19,"link_probability":0.2416943460702896,"rho":0.313016802072525,"end":23,"id":158051,"title":"Howl"}],"time":7,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:07"} -2023-10-27 13:52:07.807  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Who at (0,4) with probability 0.003441077657043934 -2023-10-27 13:52:07.807 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Who","start":0,"link_probability":0.003441077657043934,"rho":0.09884143620729446,"end":3,"id":36517,"title":"The Who"} -2023-10-27 13:52:07.807  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003441077657043934 < 0.25) for http://dbpedia.org/resource/The_Who -2023-10-27 13:52:07.807  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Poetry at (14,19) with probability 0.031330473721027374 -2023-10-27 13:52:07.807 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"poem","start":14,"link_probability":0.031330473721027374,"rho":0.1457822322845459,"end":18,"id":22926,"title":"Poetry"} -2023-10-27 13:52:07.807  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.031330473721027374 < 0.25) for http://dbpedia.org/resource/Poetry -2023-10-27 13:52:07.807  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Howl at (19,24) with probability 0.2416943460702896 -2023-10-27 13:52:07.807 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Howl","start":19,"link_probability":0.2416943460702896,"rho":0.313016802072525,"end":23,"id":158051,"title":"Howl"} -2023-10-27 13:52:07.808  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.2416943460702896 < 0.25) for http://dbpedia.org/resource/Howl -2023-10-27 13:52:07.808  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:07.808  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:07.808 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.component.QanaryServiceController  : processing took: 304 ms -2023-10-27 13:52:09.276  INFO 28727 --- [nio-8092-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"} -2023-10-27 13:52:09.277  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"} -2023-10-27 13:52:09.277  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"},"inGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2","outGraph":"urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2"} -2023-10-27 13:52:09.277  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5fd3a63e -2023-10-27 13:52:09.292  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@511453b4 -2023-10-27 13:52:09.292 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:09.293  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:09.294  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:09.320 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_005a5973-7f1a-4b40-90dc-661a0d981e0c -2023-10-27 13:52:09.321  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_005a5973-7f1a-4b40-90dc-661a0d981e0c found in urn:graph:ea8fd277-273e-4fff-b279-1e25d1d37db2 at http://localhost:8080/sparql -2023-10-27 13:52:09.323 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How high is the mountain on which Günther Messner died? -2023-10-27 13:52:09.323  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How high is the mountain on which Günther Messner died? -2023-10-27 13:52:09.323  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question How high is the mountain on which Günther Messner died? -2023-10-27 13:52:09.323  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+high+is+the+mountain+on+which+G%C3%BCnther+Messner+died%3F -2023-10-27 13:52:09.324  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+high+is+the+mountain+on+which+G%C3%BCnther+Messner+died%3F -2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"How high","start":0,"link_probability":0.12693935632705688,"rho":0.06346967816352844,"end":8,"id":1373922,"title":"How High"},{"spot":"mountain","start":16,"link_probability":0.05517559498548508,"rho":0.02758779749274254,"end":24,"id":37754,"title":"Mountain"},{"spot":"Günther Messner","start":34,"link_probability":1,"rho":0.5,"end":49,"id":32054390,"title":"Günther Messner"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:09"} -2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/How_High at (0,9) with probability 0.12693935632705688 -2023-10-27 13:52:09.647 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"How high","start":0,"link_probability":0.12693935632705688,"rho":0.06346967816352844,"end":8,"id":1373922,"title":"How High"} -2023-10-27 13:52:09.647  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.12693935632705688 < 0.25) for http://dbpedia.org/resource/How_High -2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Mountain at (16,25) with probability 0.05517559498548508 -2023-10-27 13:52:09.647 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"mountain","start":16,"link_probability":0.05517559498548508,"rho":0.02758779749274254,"end":24,"id":37754,"title":"Mountain"} -2023-10-27 13:52:09.647  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.05517559498548508 < 0.25) for http://dbpedia.org/resource/Mountain -2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Günther_Messner at (34,50) with probability 1.0 -2023-10-27 13:52:09.647 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Günther Messner","start":34,"link_probability":1,"rho":0.5,"end":49,"id":32054390,"title":"Günther Messner"} -2023-10-27 13:52:09.647  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Günther_Messner -2023-10-27 13:52:09.647  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:09.648  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:09.654 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_005a5973-7f1a-4b40-90dc-661a0d981e0c -2023-10-27 13:52:09.657  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1eef629f -2023-10-27 13:52:09.657 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:52:09.684 ERROR 28727 --- [nio-8092-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:52:13.948  INFO 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"} -2023-10-27 13:52:13.949  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"} -2023-10-27 13:52:13.949  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"},"inGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b","outGraph":"urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b"} -2023-10-27 13:52:13.949  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6fce2b64 -2023-10-27 13:52:13.965  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6109d8ed -2023-10-27 13:52:13.965 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:13.966  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:13.966  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:13.974 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fd16c4c4-77be-4bf1-b707-c7368e12b447 -2023-10-27 13:52:13.975  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fd16c4c4-77be-4bf1-b707-c7368e12b447 found in urn:graph:d9a1e87a-64d0-498b-9e63-aaf4a19a507b at http://localhost:8080/sparql -2023-10-27 13:52:13.978 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 13:52:13.978  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many countries have never been members of the UN? -2023-10-27 13:52:13.978  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many countries have never been members of the UN? -2023-10-27 13:52:13.978  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+countries+have+never+been+members+of+the+UN%3F -2023-10-27 13:52:13.979  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+countries+have+never+been+members+of+the+UN%3F -2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"countries","start":9,"link_probability":0.004253060091286898,"rho":0.1980702430009842,"end":18,"id":2554950,"title":"Constituent country"},{"spot":"members","start":35,"link_probability":0.0018897185800597072,"rho":0.20980794727802277,"end":42,"id":82242,"title":"Unrepresented Nations and Peoples Organization"},{"spot":"UN","start":50,"link_probability":0.05032071843743324,"rho":0.21639645099639893,"end":52,"id":31769,"title":"United Nations"}],"time":28,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:14"} -2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Constituent_country at (9,19) with probability 0.004253060091286898 -2023-10-27 13:52:14.289 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"countries","start":9,"link_probability":0.004253060091286898,"rho":0.1980702430009842,"end":18,"id":2554950,"title":"Constituent country"} -2023-10-27 13:52:14.289  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.004253060091286898 < 0.25) for http://dbpedia.org/resource/Constituent_country -2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Unrepresented_Nations_and_Peoples_Organization at (35,43) with probability 0.0018897185800597072 -2023-10-27 13:52:14.289 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"members","start":35,"link_probability":0.0018897185800597072,"rho":0.20980794727802277,"end":42,"id":82242,"title":"Unrepresented Nations and Peoples Organization"} -2023-10-27 13:52:14.289  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0018897185800597072 < 0.25) for http://dbpedia.org/resource/Unrepresented_Nations_and_Peoples_Organization -2023-10-27 13:52:14.289  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/United_Nations at (50,53) with probability 0.05032071843743324 -2023-10-27 13:52:14.289 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"UN","start":50,"link_probability":0.05032071843743324,"rho":0.21639645099639893,"end":52,"id":31769,"title":"United Nations"} -2023-10-27 13:52:14.290  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.05032071843743324 < 0.25) for http://dbpedia.org/resource/United_Nations -2023-10-27 13:52:14.290  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:14.290  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:14.290 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : processing took: 341 ms -2023-10-27 13:52:17.287  INFO 28727 --- [io-8092-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"} -2023-10-27 13:52:17.288  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"} -2023-10-27 13:52:17.288  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"},"inGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8","outGraph":"urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8"} -2023-10-27 13:52:17.288  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3482d5b6 -2023-10-27 13:52:17.297  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a453d56 -2023-10-27 13:52:17.297 DEBUG 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:17.298  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:17.299  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:17.306 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6bd81410-ae07-44ee-810d-efbb461a036b -2023-10-27 13:52:17.306  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6bd81410-ae07-44ee-810d-efbb461a036b found in urn:graph:e320add4-fc82-4180-9ec5-1648e1560dd8 at http://localhost:8080/sparql -2023-10-27 13:52:17.310 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Chinese zodiac animals are there in total? -2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many Chinese zodiac animals are there in total? -2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many Chinese zodiac animals are there in total? -2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+Chinese+zodiac+animals+are+there+in+total%3F -2023-10-27 13:52:17.310  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+Chinese+zodiac+animals+are+there+in+total%3F -2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Chinese","start":9,"link_probability":0.20171232521533966,"rho":0.2247929871082306,"end":16,"id":156154,"title":"Chinese culture"},{"spot":"Chinese zodiac","start":9,"link_probability":0.1300448477268219,"rho":0.23730607330799103,"end":23,"id":159669,"title":"Chinese astrology"},{"spot":"zodiac","start":17,"link_probability":0.4333810806274414,"rho":0.35270795226097107,"end":23,"id":34411,"title":"Zodiac"},{"spot":"animals","start":24,"link_probability":0.019724231213331223,"rho":0.009862115606665611,"end":31,"id":10008194,"title":"The Animals (American album)"},{"spot":"total","start":45,"link_probability":0.0019201644463464618,"rho":0.0009600822231732309,"end":50,"id":5387604,"title":"Fish measurement"}],"time":111,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:17"} -2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Chinese_culture at (9,17) with probability 0.20171232521533966 -2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chinese","start":9,"link_probability":0.20171232521533966,"rho":0.2247929871082306,"end":16,"id":156154,"title":"Chinese culture"} -2023-10-27 13:52:17.815  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.20171232521533966 < 0.25) for http://dbpedia.org/resource/Chinese_culture -2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Chinese_astrology at (9,24) with probability 0.1300448477268219 -2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chinese zodiac","start":9,"link_probability":0.1300448477268219,"rho":0.23730607330799103,"end":23,"id":159669,"title":"Chinese astrology"} -2023-10-27 13:52:17.815  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.1300448477268219 < 0.25) for http://dbpedia.org/resource/Chinese_astrology -2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Zodiac at (17,24) with probability 0.4333810806274414 -2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"zodiac","start":17,"link_probability":0.4333810806274414,"rho":0.35270795226097107,"end":23,"id":34411,"title":"Zodiac"} -2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Zodiac -2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Animals_(American_album) at (24,32) with probability 0.019724231213331223 -2023-10-27 13:52:17.815 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"animals","start":24,"link_probability":0.019724231213331223,"rho":0.009862115606665611,"end":31,"id":10008194,"title":"The Animals (American album)"} -2023-10-27 13:52:17.815  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.019724231213331223 < 0.25) for http://dbpedia.org/resource/The_Animals_(American_album) -2023-10-27 13:52:17.815  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Fish_measurement at (45,51) with probability 0.0019201644463464618 -2023-10-27 13:52:17.816 DEBUG 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"total","start":45,"link_probability":0.0019201644463464618,"rho":0.0009600822231732309,"end":50,"id":5387604,"title":"Fish measurement"} -2023-10-27 13:52:17.816  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0019201644463464618 < 0.25) for http://dbpedia.org/resource/Fish_measurement -2023-10-27 13:52:17.816  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:17.816  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:17.822 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6bd81410-ae07-44ee-810d-efbb461a036b -2023-10-27 13:52:17.823  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f9985a1 -2023-10-27 13:52:17.824 DEBUG 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:52:17.828 ERROR 28727 --- [io-8092-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"} -2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"} -2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"},"inGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e","outGraph":"urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e"} -2023-10-27 13:52:24.715  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9ea811a -2023-10-27 13:52:24.722  INFO 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@139f8459 -2023-10-27 13:52:24.723 DEBUG 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:24.724  INFO 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:24.725  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:24.732 DEBUG 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_318a8b3f-f549-4e42-b7b0-5d9232246b6a -2023-10-27 13:52:24.732  INFO 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_318a8b3f-f549-4e42-b7b0-5d9232246b6a found in urn:graph:2cc0942d-c240-4e4f-9acf-93ca5f9ba45e at http://localhost:8080/sparql -2023-10-27 13:52:24.734 DEBUG 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 13:52:24.734  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 13:52:24.734  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Question Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 13:52:24.734  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Path Did+the+Chicago+Bulls+win+at+least+two+seasons+of+the+NBA+championship%3F -2023-10-27 13:52:24.735  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Did+the+Chicago+Bulls+win+at+least+two+seasons+of+the+NBA+championship%3F -2023-10-27 13:52:25.040  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Chicago Bulls","start":8,"link_probability":1,"rho":0.6962894797325134,"end":21,"id":72866,"title":"Chicago Bulls"},{"spot":"win","start":22,"link_probability":0.0032746954821050167,"rho":0.13843336701393127,"end":25,"id":2514586,"title":"Winning percentage"},{"spot":"seasons","start":39,"link_probability":0.00417748000472784,"rho":0.00208874000236392,"end":46,"id":19508643,"title":"Television program"},{"spot":"NBA championship","start":54,"link_probability":0.3371356129646301,"rho":0.3814297020435333,"end":70,"id":890793,"title":"NBA Finals"}],"time":37,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:25"} -2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Chicago_Bulls at (8,22) with probability 1.0 -2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Chicago Bulls","start":8,"link_probability":1,"rho":0.6962894797325134,"end":21,"id":72866,"title":"Chicago Bulls"} -2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Chicago_Bulls -2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Winning_percentage at (22,26) with probability 0.0032746954821050167 -2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"win","start":22,"link_probability":0.0032746954821050167,"rho":0.13843336701393127,"end":25,"id":2514586,"title":"Winning percentage"} -2023-10-27 13:52:25.041  WARN 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0032746954821050167 < 0.25) for http://dbpedia.org/resource/Winning_percentage -2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Television_program at (39,47) with probability 0.00417748000472784 -2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"seasons","start":39,"link_probability":0.00417748000472784,"rho":0.00208874000236392,"end":46,"id":19508643,"title":"Television program"} -2023-10-27 13:52:25.041  WARN 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.00417748000472784 < 0.25) for http://dbpedia.org/resource/Television_program -2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/NBA_Finals at (54,71) with probability 0.3371356129646301 -2023-10-27 13:52:25.041 DEBUG 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"NBA championship","start":54,"link_probability":0.3371356129646301,"rho":0.3814297020435333,"end":70,"id":890793,"title":"NBA Finals"} -2023-10-27 13:52:25.041  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/NBA_Finals -2023-10-27 13:52:25.042  WARN 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:25.042  INFO 28727 --- [nio-8092-exec-1] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:25.048 DEBUG 28727 --- [nio-8092-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_318a8b3f-f549-4e42-b7b0-5d9232246b6a -2023-10-27 13:52:25.048  INFO 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26054b4b -2023-10-27 13:52:25.049 DEBUG 28727 --- [nio-8092-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:52:25.051 ERROR 28727 --- [nio-8092-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:52:32.668  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"} -2023-10-27 13:52:32.669  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"} -2023-10-27 13:52:32.669  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"},"inGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447","outGraph":"urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447"} -2023-10-27 13:52:32.669  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6942fc05 -2023-10-27 13:52:32.676  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@60a612c0 -2023-10-27 13:52:32.676 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:32.677  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:32.678  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:32.684 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_05d1680b-cf94-45f6-81da-b79cd5878e3c -2023-10-27 13:52:32.684  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_05d1680b-cf94-45f6-81da-b79cd5878e3c found in urn:graph:1c4208cb-e10b-4d79-9536-4ad3a7687447 at http://localhost:8080/sparql -2023-10-27 13:52:32.686 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which businesses are founded by the person in charge of Tesla? -2023-10-27 13:52:32.686  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Which businesses are founded by the person in charge of Tesla? -2023-10-27 13:52:32.686  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Which businesses are founded by the person in charge of Tesla? -2023-10-27 13:52:32.686  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F -2023-10-27 13:52:32.687  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Which+businesses+are+founded+by+the+person+in+charge+of+Tesla%3F -2023-10-27 13:52:32.976  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"businesses","start":6,"link_probability":0.001852151588536799,"rho":0.09239320456981659,"end":16,"id":4918223,"title":"Company"},{"spot":"person in charge","start":36,"link_probability":0.013477088883519173,"rho":0.006738544441759586,"end":52,"id":7857011,"title":"Marine transfer operations"},{"spot":"Tesla","start":56,"link_probability":0.2774225175380707,"rho":0.23017838597297668,"end":61,"id":5533631,"title":"Tesla Motors"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:32"} -2023-10-27 13:52:32.976  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Company at (6,17) with probability 0.001852151588536799 -2023-10-27 13:52:32.976 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"businesses","start":6,"link_probability":0.001852151588536799,"rho":0.09239320456981659,"end":16,"id":4918223,"title":"Company"} -2023-10-27 13:52:32.977  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.001852151588536799 < 0.25) for http://dbpedia.org/resource/Company -2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Marine_transfer_operations at (36,53) with probability 0.013477088883519173 -2023-10-27 13:52:32.977 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"person in charge","start":36,"link_probability":0.013477088883519173,"rho":0.006738544441759586,"end":52,"id":7857011,"title":"Marine transfer operations"} -2023-10-27 13:52:32.977  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.013477088883519173 < 0.25) for http://dbpedia.org/resource/Marine_transfer_operations -2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Tesla_Motors at (56,62) with probability 0.2774225175380707 -2023-10-27 13:52:32.977 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Tesla","start":56,"link_probability":0.2774225175380707,"rho":0.23017838597297668,"end":61,"id":5533631,"title":"Tesla Motors"} -2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Tesla_Motors -2023-10-27 13:52:32.977  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:32.977  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:32.983 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_05d1680b-cf94-45f6-81da-b79cd5878e3c -2023-10-27 13:52:32.983  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63ae4c85 -2023-10-27 13:52:32.984 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:52:32.986 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"} -2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"} -2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"},"inGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82","outGraph":"urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82"} -2023-10-27 13:52:34.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@747c7915 -2023-10-27 13:52:34.495  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b24d004 -2023-10-27 13:52:34.495 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:52:34.496  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:34.496  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:52:34.502 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_f49a595c-0d6d-496a-a64f-eb38e86a6a62 -2023-10-27 13:52:34.503  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_f49a595c-0d6d-496a-a64f-eb38e86a6a62 found in urn:graph:c8815034-30b4-45bb-8cfb-555e656b6a82 at http://localhost:8080/sparql -2023-10-27 13:52:34.505 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many locations has Georges Braque worked at (work location)? -2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many locations has Georges Braque worked at (work location)? -2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many locations has Georges Braque worked at (work location)? -2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F -2023-10-27 13:52:34.505  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F -2023-10-27 13:52:34.780  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"},{"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"},{"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"},{"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"}],"time":14,"api":"tag","lang":"en","timestamp":"2023-10-27T11:52:34"} -2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Filming_location at (9,19) with probability 0.0013541904045268893 -2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"} -2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0013541904045268893 < 0.25) for http://dbpedia.org/resource/Filming_location -2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Georges_Braque at (23,38) with probability 1.0 -2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"} -2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Georges_Braque -2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Work_of_art at (49,54) with probability 0.001639241585507989 -2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"} -2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.001639241585507989 < 0.25) for http://dbpedia.org/resource/Work_of_art -2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Locations_of_Kenya at (54,63) with probability 0.0028062895871698856 -2023-10-27 13:52:34.781 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"} -2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0028062895871698856 < 0.25) for http://dbpedia.org/resource/Locations_of_Kenya -2023-10-27 13:52:34.781  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:52:34.781  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:52:34.786 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_f49a595c-0d6d-496a-a64f-eb38e86a6a62 -2023-10-27 13:52:34.787  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ed0223a -2023-10-27 13:52:34.787 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:52:34.789 ERROR 28727 --- [nio-8092-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"} -2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"} -2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"},"inGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3","outGraph":"urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3"} -2023-10-27 13:53:55.331  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@400fb46e -2023-10-27 13:53:55.346  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ac38c86 -2023-10-27 13:53:55.346 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:55.347  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:55.348  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:55.357 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e6f1ca33-9cec-4c63-9b6d-b29ef18af59d -2023-10-27 13:53:55.357  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e6f1ca33-9cec-4c63-9b6d-b29ef18af59d found in urn:graph:2f5e33d0-4dd8-4b46-adcc-4d307f532de3 at http://localhost:8080/sparql -2023-10-27 13:53:55.361 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which teams participated in the 2020 UEFA Champions League Final ? -2023-10-27 13:53:55.361  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Which teams participated in the 2020 UEFA Champions League Final ? -2023-10-27 13:53:55.361  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question Which teams participated in the 2020 UEFA Champions League Final ? -2023-10-27 13:53:55.361  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Path Which+teams+participated+in+the+2020+UEFA+Champions+League+Final+%3F -2023-10-27 13:53:55.362  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Which+teams+participated+in+the+2020+UEFA+Champions+League+Final+%3F -2023-10-27 13:53:55.689  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"teams","start":6,"link_probability":0.0011753265280276537,"rho":0.3129396140575409,"end":11,"id":10830,"title":"Football team"},{"spot":"UEFA Champions League","start":37,"link_probability":0.9899473190307617,"rho":0.8045989274978638,"end":58,"id":44220,"title":"UEFA Champions League"},{"spot":"Champions League Final","start":42,"link_probability":0.13014981150627136,"rho":0.3893272876739502,"end":64,"id":32386942,"title":"2014 UEFA Champions League Final"}],"time":26,"api":"tag","lang":"en","timestamp":"2023-10-27T11:53:55"} -2023-10-27 13:53:55.689  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Football_team at (6,12) with probability 0.0011753265280276537 -2023-10-27 13:53:55.689 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"teams","start":6,"link_probability":0.0011753265280276537,"rho":0.3129396140575409,"end":11,"id":10830,"title":"Football team"} -2023-10-27 13:53:55.689  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0011753265280276537 < 0.25) for http://dbpedia.org/resource/Football_team -2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/UEFA_Champions_League at (37,59) with probability 0.9899473190307617 -2023-10-27 13:53:55.690 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"UEFA Champions League","start":37,"link_probability":0.9899473190307617,"rho":0.8045989274978638,"end":58,"id":44220,"title":"UEFA Champions League"} -2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/UEFA_Champions_League -2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/2014_UEFA_Champions_League_Final at (42,65) with probability 0.13014981150627136 -2023-10-27 13:53:55.690 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Champions League Final","start":42,"link_probability":0.13014981150627136,"rho":0.3893272876739502,"end":64,"id":32386942,"title":"2014 UEFA Champions League Final"} -2023-10-27 13:53:55.690  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.13014981150627136 < 0.25) for http://dbpedia.org/resource/2014_UEFA_Champions_League_Final -2023-10-27 13:53:55.690  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:53:55.690  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:53:55.697 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e6f1ca33-9cec-4c63-9b6d-b29ef18af59d -2023-10-27 13:53:55.698  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39cb1819 -2023-10-27 13:53:55.698 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:55.700 ERROR 28727 --- [nio-8092-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:54:06.705  INFO 28727 --- [io-8092-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:06.706  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:06.706  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:06.706  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3a3c5aa5 -2023-10-27 13:54:06.715  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7891bc48 -2023-10-27 13:54:06.715 DEBUG 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:06.716  INFO 28727 --- [io-8092-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:06.716  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:06.722 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 -2023-10-27 13:54:06.723  INFO 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql -2023-10-27 13:54:06.725 DEBUG 28727 --- [io-8092-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? -2023-10-27 13:54:06.725  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Where does the Nutri-Score originate from? -2023-10-27 13:54:06.725  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Question Where does the Nutri-Score originate from? -2023-10-27 13:54:06.725  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Path Where+does+the+Nutri-Score+originate+from%3F -2023-10-27 13:54:06.726  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Where+does+the+Nutri-Score+originate+from%3F -2023-10-27 13:54:06.995  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:06"} -2023-10-27 13:54:06.995  WARN 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:54:06.995  INFO 28727 --- [io-8092-exec-10] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:54:06.995 DEBUG 28727 --- [io-8092-exec-10] e.w.q.component.QanaryServiceController  : processing took: 289 ms -2023-10-27 13:54:08.791  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"} -2023-10-27 13:54:08.795  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"} -2023-10-27 13:54:08.795  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"},"inGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f","outGraph":"urn:graph:79398d76-c983-44db-a56a-73e480507a3f"} -2023-10-27 13:54:08.795  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@4e3d2ec5 -2023-10-27 13:54:08.805  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7110cfce -2023-10-27 13:54:08.805 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:08.806  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:08.807  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:08.815 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_64ce574d-b31e-4f23-95c9-9d54967f3e5f -2023-10-27 13:54:08.815  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_64ce574d-b31e-4f23-95c9-9d54967f3e5f found in urn:graph:79398d76-c983-44db-a56a-73e480507a3f at http://localhost:8080/sparql -2023-10-27 13:54:08.817 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many locations has Georges Braque worked at (work location)? -2023-10-27 13:54:08.817  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many locations has Georges Braque worked at (work location)? -2023-10-27 13:54:08.817  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many locations has Georges Braque worked at (work location)? -2023-10-27 13:54:08.818  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F -2023-10-27 13:54:08.818  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+locations+has+Georges+Braque+worked+at+%28work+location%29%3F -2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"},{"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"},{"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"},{"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"}],"time":15,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:09"} -2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Filming_location at (9,19) with probability 0.0013541904045268893 -2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"locations","start":9,"link_probability":0.0013541904045268893,"rho":0.0006770952022634447,"end":18,"id":2272383,"title":"Filming location"} -2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0013541904045268893 < 0.25) for http://dbpedia.org/resource/Filming_location -2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Georges_Braque at (23,38) with probability 1.0 -2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Georges Braque","start":23,"link_probability":1,"rho":0.5944415330886841,"end":37,"id":12317,"title":"Georges Braque"} -2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Georges_Braque -2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Work_of_art at (49,54) with probability 0.001639241585507989 -2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"work","start":49,"link_probability":0.001639241585507989,"rho":0.09526113420724869,"end":53,"id":2583747,"title":"Work of art"} -2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.001639241585507989 < 0.25) for http://dbpedia.org/resource/Work_of_art -2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Locations_of_Kenya at (54,63) with probability 0.0028062895871698856 -2023-10-27 13:54:09.439 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"location","start":54,"link_probability":0.0028062895871698856,"rho":0.0014031447935849428,"end":62,"id":12874956,"title":"Locations of Kenya"} -2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0028062895871698856 < 0.25) for http://dbpedia.org/resource/Locations_of_Kenya -2023-10-27 13:54:09.439  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:54:09.439  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:54:09.446 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_64ce574d-b31e-4f23-95c9-9d54967f3e5f -2023-10-27 13:54:09.447  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@617d78f7 -2023-10-27 13:54:09.448 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:09.450 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"} -2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"} -2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"},"inGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2","outGraph":"urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2"} -2023-10-27 13:54:10.047  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@ad36c7b -2023-10-27 13:54:10.054  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b11009f -2023-10-27 13:54:10.054 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:10.055  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:10.055  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:10.062 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4c463b21-5338-4ca6-924a-bdfac4efd189 -2023-10-27 13:54:10.063  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4c463b21-5338-4ca6-924a-bdfac4efd189 found in urn:graph:ec8ec84c-4c14-461b-9f1a-5ae7931d8cf2 at http://localhost:8080/sparql -2023-10-27 13:54:10.064 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where are the founders of the band Metallica from? -2023-10-27 13:54:10.064  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Where are the founders of the band Metallica from? -2023-10-27 13:54:10.064  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Where are the founders of the band Metallica from? -2023-10-27 13:54:10.064  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Where+are+the+founders+of+the+band+Metallica+from%3F -2023-10-27 13:54:10.065  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Where+are+the+founders+of+the+band+Metallica+from%3F -2023-10-27 13:54:10.328  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"founders","start":14,"link_probability":0.0023921376559883356,"rho":0.02327084355056286,"end":22,"id":18950003,"title":"Entrepreneurship"},{"spot":"band","start":30,"link_probability":0.022593051195144653,"rho":0.13773344457149506,"end":34,"id":30965,"title":"The Band"},{"spot":"Metallica","start":35,"link_probability":1,"rho":0.6485117077827454,"end":44,"id":18787,"title":"Metallica"}],"time":9,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:10"} -2023-10-27 13:54:10.328  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Entrepreneurship at (14,23) with probability 0.0023921376559883356 -2023-10-27 13:54:10.328 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"founders","start":14,"link_probability":0.0023921376559883356,"rho":0.02327084355056286,"end":22,"id":18950003,"title":"Entrepreneurship"} -2023-10-27 13:54:10.328  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0023921376559883356 < 0.25) for http://dbpedia.org/resource/Entrepreneurship -2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Band at (30,35) with probability 0.022593051195144653 -2023-10-27 13:54:10.329 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"band","start":30,"link_probability":0.022593051195144653,"rho":0.13773344457149506,"end":34,"id":30965,"title":"The Band"} -2023-10-27 13:54:10.329  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.022593051195144653 < 0.25) for http://dbpedia.org/resource/The_Band -2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Metallica at (35,45) with probability 1.0 -2023-10-27 13:54:10.329 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Metallica","start":35,"link_probability":1,"rho":0.6485117077827454,"end":44,"id":18787,"title":"Metallica"} -2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Metallica -2023-10-27 13:54:10.329  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:54:10.329  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:54:10.334 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4c463b21-5338-4ca6-924a-bdfac4efd189 -2023-10-27 13:54:10.334  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d6905b5 -2023-10-27 13:54:10.334 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:10.337 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:58:03.022  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"} -2023-10-27 13:58:03.056  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"} -2023-10-27 13:58:03.057  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"},"inGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161","outGraph":"urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161"} -2023-10-27 13:58:03.059  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3b060f81 -2023-10-27 13:58:03.180  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3351cd59 -2023-10-27 13:58:03.182 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:03.214  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:03.215  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:03.266 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c12ad8a6-8829-485d-ba25-7758e030c583 -2023-10-27 13:58:03.266  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c12ad8a6-8829-485d-ba25-7758e030c583 found in urn:graph:58d4bf7f-7ecd-41c1-b54f-784f7abf9161 at http://localhost:8080/sparql -2023-10-27 13:58:03.279 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who produced Star Wars: Episode VI – Return of the Jedi? -2023-10-27 13:58:03.279  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: who produced Star Wars: Episode VI – Return of the Jedi? -2023-10-27 13:58:03.279  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question who produced Star Wars: Episode VI – Return of the Jedi? -2023-10-27 13:58:03.280  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path who+produced+Star+Wars%3A+Episode+VI+%E2%80%93+Return+of+the+Jedi%3F -2023-10-27 13:58:03.299  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=who+produced+Star+Wars%3A+Episode+VI+%E2%80%93+Return+of+the+Jedi%3F -2023-10-27 13:58:03.690  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"who","start":0,"link_probability":0.003441077657043934,"rho":0.11360368877649307,"end":3,"id":36517,"title":"The Who"},{"spot":"produced","start":4,"link_probability":0.006508859805762768,"rho":0.12581665813922882,"end":12,"id":211405,"title":"Film producer"},{"spot":"Star Wars: Episode VI \u2013 Return of the Jedi","start":13,"link_probability":1,"rho":0.6642602682113647,"end":55,"id":50744,"title":"Return of the Jedi"}],"time":24,"api":"tag","lang":"en","timestamp":"2023-10-27T11:58:03"} -2023-10-27 13:58:03.691  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Who at (0,4) with probability 0.003441077657043934 -2023-10-27 13:58:03.693 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"who","start":0,"link_probability":0.003441077657043934,"rho":0.11360368877649307,"end":3,"id":36517,"title":"The Who"} -2023-10-27 13:58:03.693  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003441077657043934 < 0.25) for http://dbpedia.org/resource/The_Who -2023-10-27 13:58:03.693  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Film_producer at (4,13) with probability 0.006508859805762768 -2023-10-27 13:58:03.694 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"produced","start":4,"link_probability":0.006508859805762768,"rho":0.12581665813922882,"end":12,"id":211405,"title":"Film producer"} -2023-10-27 13:58:03.694  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006508859805762768 < 0.25) for http://dbpedia.org/resource/Film_producer -2023-10-27 13:58:03.694  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Return_of_the_Jedi at (13,56) with probability 1.0 -2023-10-27 13:58:03.694 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Star Wars: Episode VI \u2013 Return of the Jedi","start":13,"link_probability":1,"rho":0.6642602682113647,"end":55,"id":50744,"title":"Return of the Jedi"} -2023-10-27 13:58:03.694  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Return_of_the_Jedi -2023-10-27 13:58:03.694  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:58:03.694  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:58:03.701 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c12ad8a6-8829-485d-ba25-7758e030c583 -2023-10-27 13:58:03.704  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16f7e703 -2023-10-27 13:58:03.704 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:03.738 ERROR 28727 --- [nio-8092-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:59:34.776  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"} -2023-10-27 13:59:34.777  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"} -2023-10-27 13:59:34.777  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"},"inGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada","outGraph":"urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada"} -2023-10-27 13:59:34.778  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9e71aea -2023-10-27 13:59:34.806  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fdbe163 -2023-10-27 13:59:34.806 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:34.808  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:34.808  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:34.819 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88ba8507-bd4b-427d-a6c8-c839a9844b68 -2023-10-27 13:59:34.819  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88ba8507-bd4b-427d-a6c8-c839a9844b68 found in urn:graph:a30d2fb5-7b35-4f82-8ed1-5ee784838ada at http://localhost:8080/sparql -2023-10-27 13:59:34.822 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does the postal code 32423 belong to Minden? -2023-10-27 13:59:34.822  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Does the postal code 32423 belong to Minden? -2023-10-27 13:59:34.822  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question Does the postal code 32423 belong to Minden? -2023-10-27 13:59:34.822  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path Does+the+postal+code+32423+belong+to+Minden%3F -2023-10-27 13:59:34.825  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Does+the+postal+code+32423+belong+to+Minden%3F -2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"postal code","start":9,"link_probability":0.5067114233970642,"rho":0.2813880443572998,"end":20,"id":51549,"title":"Postal code"},{"spot":"belong","start":27,"link_probability":0.0012591375270858407,"rho":0.0006295687635429204,"end":33,"id":5252646,"title":"Belong (band)"},{"spot":"Minden","start":37,"link_probability":0.6376119256019592,"rho":0.3468382954597473,"end":43,"id":182340,"title":"Minden"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T11:59:35"} -2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Postal_code at (9,21) with probability 0.5067114233970642 -2023-10-27 13:59:35.157 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"postal code","start":9,"link_probability":0.5067114233970642,"rho":0.2813880443572998,"end":20,"id":51549,"title":"Postal code"} -2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Postal_code -2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Belong_(band) at (27,34) with probability 0.0012591375270858407 -2023-10-27 13:59:35.157 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"belong","start":27,"link_probability":0.0012591375270858407,"rho":0.0006295687635429204,"end":33,"id":5252646,"title":"Belong (band)"} -2023-10-27 13:59:35.157  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0012591375270858407 < 0.25) for http://dbpedia.org/resource/Belong_(band) -2023-10-27 13:59:35.157  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Minden at (37,44) with probability 0.6376119256019592 -2023-10-27 13:59:35.158 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Minden","start":37,"link_probability":0.6376119256019592,"rho":0.3468382954597473,"end":43,"id":182340,"title":"Minden"} -2023-10-27 13:59:35.158  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Minden -2023-10-27 13:59:35.158  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:59:35.158  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:59:35.186 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88ba8507-bd4b-427d-a6c8-c839a9844b68 -2023-10-27 13:59:35.187  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a865d6a -2023-10-27 13:59:35.187 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:35.190 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:59:46.647  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"} -2023-10-27 13:59:46.648  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"} -2023-10-27 13:59:46.648  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"},"inGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa","outGraph":"urn:graph:7d247d1a-e932-4db4-b279-a054690873fa"} -2023-10-27 13:59:46.648  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@35c69c28 -2023-10-27 13:59:46.721  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@bc188b0 -2023-10-27 13:59:46.721 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:46.723  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:46.724  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:46.734 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_beb9ac82-b156-4ff6-92ad-2f7dcbc86653 -2023-10-27 13:59:46.734  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_beb9ac82-b156-4ff6-92ad-2f7dcbc86653 found in urn:graph:7d247d1a-e932-4db4-b279-a054690873fa at http://localhost:8080/sparql -2023-10-27 13:59:46.737 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:59:46.737  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:59:46.737  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:59:46.737  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F -2023-10-27 13:59:46.739  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F -2023-10-27 13:59:47.034  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"actor","start":6,"link_probability":0.09532184898853302,"rho":0.15277986228466034,"end":11,"id":21504235,"title":"Actor"},{"spot":"Free","start":24,"link_probability":0.008079309947788715,"rho":0.059098999947309494,"end":28,"id":34886418,"title":"Free (film)"},{"spot":"Guy","start":29,"link_probability":0.015608565881848335,"rho":0.03260781243443489,"end":32,"id":26508404,"title":"The Croods"},{"spot":"Deadpool","start":49,"link_probability":1,"rho":0.5252560377120972,"end":57,"id":36438854,"title":"Deadpool (video game)"}],"time":27,"api":"tag","lang":"en","timestamp":"2023-10-27T11:59:47"} -2023-10-27 13:59:47.034  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Actor at (6,12) with probability 0.09532184898853302 -2023-10-27 13:59:47.034 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"actor","start":6,"link_probability":0.09532184898853302,"rho":0.15277986228466034,"end":11,"id":21504235,"title":"Actor"} -2023-10-27 13:59:47.034  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.09532184898853302 < 0.25) for http://dbpedia.org/resource/Actor -2023-10-27 13:59:47.034  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Free_(film) at (24,29) with probability 0.008079309947788715 -2023-10-27 13:59:47.035 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Free","start":24,"link_probability":0.008079309947788715,"rho":0.059098999947309494,"end":28,"id":34886418,"title":"Free (film)"} -2023-10-27 13:59:47.035  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.008079309947788715 < 0.25) for http://dbpedia.org/resource/Free_(film) -2023-10-27 13:59:47.035  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/The_Croods at (29,33) with probability 0.015608565881848335 -2023-10-27 13:59:47.035 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Guy","start":29,"link_probability":0.015608565881848335,"rho":0.03260781243443489,"end":32,"id":26508404,"title":"The Croods"} -2023-10-27 13:59:47.035  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.015608565881848335 < 0.25) for http://dbpedia.org/resource/The_Croods -2023-10-27 13:59:47.035  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Deadpool_(video_game) at (49,58) with probability 1.0 -2023-10-27 13:59:47.035 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Deadpool","start":49,"link_probability":1,"rho":0.5252560377120972,"end":57,"id":36438854,"title":"Deadpool (video game)"} -2023-10-27 13:59:47.035  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Deadpool_(video_game) -2023-10-27 13:59:47.036  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 13:59:47.036  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 13:59:47.042 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_beb9ac82-b156-4ff6-92ad-2f7dcbc86653 -2023-10-27 13:59:47.042  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c785413 -2023-10-27 13:59:47.043 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:47.048 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:02:59.879  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"} -2023-10-27 14:02:59.880  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"} -2023-10-27 14:02:59.880  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"},"inGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff","outGraph":"urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff"} -2023-10-27 14:02:59.881  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@596914c4 -2023-10-27 14:02:59.950  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55b11605 -2023-10-27 14:02:59.950 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:59.952  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:59.953  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:59.961 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_19b73de0-e2fd-4a89-b794-d90286647bed -2023-10-27 14:02:59.962  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_19b73de0-e2fd-4a89-b794-d90286647bed found in urn:graph:b35c7600-27b9-42ce-bb3a-64b8ef542fff at http://localhost:8080/sparql -2023-10-27 14:02:59.965 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the area of the great lakes? -2023-10-27 14:02:59.965  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: What is the area of the great lakes? -2023-10-27 14:02:59.966  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question What is the area of the great lakes? -2023-10-27 14:02:59.966  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path What+is+the+area+of+the+great+lakes%3F -2023-10-27 14:02:59.967  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=What+is+the+area+of+the+great+lakes%3F -2023-10-27 14:03:00.389  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"area","start":12,"link_probability":0.006615964230149984,"rho":0.08574877679347992,"end":16,"id":1209,"title":"Area"},{"spot":"great lakes","start":24,"link_probability":0.4282858669757843,"rho":0.29658371210098267,"end":35,"id":512047,"title":"African Great Lakes"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T12:03:00"} -2023-10-27 14:03:00.390  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Area at (12,17) with probability 0.006615964230149984 -2023-10-27 14:03:00.390 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"area","start":12,"link_probability":0.006615964230149984,"rho":0.08574877679347992,"end":16,"id":1209,"title":"Area"} -2023-10-27 14:03:00.390  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006615964230149984 < 0.25) for http://dbpedia.org/resource/Area -2023-10-27 14:03:00.391  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/African_Great_Lakes at (24,36) with probability 0.4282858669757843 -2023-10-27 14:03:00.391 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"great lakes","start":24,"link_probability":0.4282858669757843,"rho":0.29658371210098267,"end":35,"id":512047,"title":"African Great Lakes"} -2023-10-27 14:03:00.391  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/African_Great_Lakes -2023-10-27 14:03:00.391  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:03:00.391  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:03:00.401 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_19b73de0-e2fd-4a89-b794-d90286647bed -2023-10-27 14:03:00.402  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ac10e4b -2023-10-27 14:03:00.402 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:00.408 ERROR 28727 --- [nio-8092-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:00.733  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@330c2182 -2023-10-27 14:05:00.741  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fc2ee57 -2023-10-27 14:05:00.741 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:00.743  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:00.743  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:00.750 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b -2023-10-27 14:05:00.751  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql -2023-10-27 14:05:00.752 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? -2023-10-27 14:05:00.752  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: How many spouses do head of states have on average? -2023-10-27 14:05:00.752  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question How many spouses do head of states have on average? -2023-10-27 14:05:00.752  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path How+many+spouses+do+head+of+states+have+on+average%3F -2023-10-27 14:05:00.754  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=How+many+spouses+do+head+of+states+have+on+average%3F -2023-10-27 14:05:01.241  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"spouses","start":9,"link_probability":0.005550686735659838,"rho":0.13350242376327515,"end":16,"id":19728,"title":"Marriage"},{"spot":"do","start":17,"link_probability":0.0014110748888924718,"rho":0.048514287918806076,"end":19,"id":199884,"title":"Osteopathic medicine in the United States"},{"spot":"head","start":20,"link_probability":0.006395735312253237,"rho":0.00848488137125969,"end":24,"id":37570,"title":"Head of government"},{"spot":"states","start":28,"link_probability":0.0020306953229010105,"rho":0.13402144610881805,"end":34,"id":18618239,"title":"U.S. state"},{"spot":"average","start":43,"link_probability":0.021294986829161644,"rho":0.041144002228975296,"end":50,"id":60167,"title":"Average"}],"time":217,"api":"tag","lang":"en","timestamp":"2023-10-27T12:05:01"} -2023-10-27 14:05:01.242  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Marriage at (9,17) with probability 0.005550686735659838 -2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"spouses","start":9,"link_probability":0.005550686735659838,"rho":0.13350242376327515,"end":16,"id":19728,"title":"Marriage"} -2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.005550686735659838 < 0.25) for http://dbpedia.org/resource/Marriage -2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Osteopathic_medicine_in_the_United_States at (17,20) with probability 0.0014110748888924718 -2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"do","start":17,"link_probability":0.0014110748888924718,"rho":0.048514287918806076,"end":19,"id":199884,"title":"Osteopathic medicine in the United States"} -2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0014110748888924718 < 0.25) for http://dbpedia.org/resource/Osteopathic_medicine_in_the_United_States -2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Head_of_government at (20,25) with probability 0.006395735312253237 -2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"head","start":20,"link_probability":0.006395735312253237,"rho":0.00848488137125969,"end":24,"id":37570,"title":"Head of government"} -2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.006395735312253237 < 0.25) for http://dbpedia.org/resource/Head_of_government -2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/U.S._state at (28,35) with probability 0.0020306953229010105 -2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"states","start":28,"link_probability":0.0020306953229010105,"rho":0.13402144610881805,"end":34,"id":18618239,"title":"U.S. state"} -2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0020306953229010105 < 0.25) for http://dbpedia.org/resource/U.S._state -2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Average at (43,51) with probability 0.021294986829161644 -2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"average","start":43,"link_probability":0.021294986829161644,"rho":0.041144002228975296,"end":50,"id":60167,"title":"Average"} -2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.021294986829161644 < 0.25) for http://dbpedia.org/resource/Average -2023-10-27 14:05:01.243  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:05:01.243  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (0 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:05:01.243 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : processing took: 510 ms -2023-10-27 14:07:21.763  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"} -2023-10-27 14:07:21.767  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"} -2023-10-27 14:07:21.767  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"},"inGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291","outGraph":"urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291"} -2023-10-27 14:07:21.767  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@5344cf9d -2023-10-27 14:07:21.798  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6571e4ac -2023-10-27 14:07:21.798 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:21.799  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:21.800  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:21.808 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_756249e0-2874-487b-8ead-6bad88129fe8 -2023-10-27 14:07:21.808  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_756249e0-2874-487b-8ead-6bad88129fe8 found in urn:graph:3e24f995-54cb-4b00-a3f8-7d887daf4291 at http://localhost:8080/sparql -2023-10-27 14:07:21.810 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? -2023-10-27 14:07:21.810  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: when was the creator of saturday night live born? -2023-10-27 14:07:21.810  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question when was the creator of saturday night live born? -2023-10-27 14:07:21.810  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path when+was+the+creator+of+saturday+night+live+born%3F -2023-10-27 14:07:21.811  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=when+was+the+creator+of+saturday+night+live+born%3F -2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"creator","start":13,"link_probability":0.008555445820093155,"rho":0.14067788422107697,"end":20,"id":5042765,"title":"God"},{"spot":"saturday night live","start":24,"link_probability":1,"rho":0.6364001631736755,"end":43,"id":763013,"title":"Saturday Night Live"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T12:07:22"} -2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/God at (13,21) with probability 0.008555445820093155 -2023-10-27 14:07:22.092 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"creator","start":13,"link_probability":0.008555445820093155,"rho":0.14067788422107697,"end":20,"id":5042765,"title":"God"} -2023-10-27 14:07:22.092  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.008555445820093155 < 0.25) for http://dbpedia.org/resource/God -2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Saturday_Night_Live at (24,44) with probability 1.0 -2023-10-27 14:07:22.092 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"saturday night live","start":24,"link_probability":1,"rho":0.6364001631736755,"end":43,"id":763013,"title":"Saturday Night Live"} -2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Saturday_Night_Live -2023-10-27 14:07:22.092  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:07:22.092  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:07:22.097 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_756249e0-2874-487b-8ead-6bad88129fe8 -2023-10-27 14:07:22.098  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d7a472f -2023-10-27 14:07:22.098 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:22.101 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:07:32.017  INFO 28727 --- [nio-8092-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"} -2023-10-27 14:07:32.017  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"} -2023-10-27 14:07:32.018  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"},"inGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221","outGraph":"urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221"} -2023-10-27 14:07:32.018  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3b841d92 -2023-10-27 14:07:32.035  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7db9301 -2023-10-27 14:07:32.035 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:32.037  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:32.037  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:32.044 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_dded931f-30ae-46aa-a784-34e85debdc37 -2023-10-27 14:07:32.045  INFO 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_dded931f-30ae-46aa-a784-34e85debdc37 found in urn:graph:65eb5f4a-2fa4-43aa-92ba-fcf5850b0221 at http://localhost:8080/sparql -2023-10-27 14:07:32.046 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was there at least one Formula 1 event on the AVUS? -2023-10-27 14:07:32.046  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Was there at least one Formula 1 event on the AVUS? -2023-10-27 14:07:32.047  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Question Was there at least one Formula 1 event on the AVUS? -2023-10-27 14:07:32.047  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Path Was+there+at+least+one+Formula+1+event+on+the+AVUS%3F -2023-10-27 14:07:32.048  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Was+there+at+least+one+Formula+1+event+on+the+AVUS%3F -2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"one","start":19,"link_probability":0.0015941697638481855,"rho":0.14541690051555634,"end":22,"id":19969891,"title":"One (Australian TV channel)"},{"spot":"Formula 1","start":23,"link_probability":0.29899775981903076,"rho":0.4074433147907257,"end":32,"id":10854,"title":"Formula One"},{"spot":"event","start":33,"link_probability":0.003929408732801676,"rho":0.24447864294052124,"end":38,"id":39021,"title":"Daytona 500"},{"spot":"AVUS","start":46,"link_probability":0.6821191906929016,"rho":0.5098094940185547,"end":50,"id":176958,"title":"AVUS"}],"time":24,"api":"tag","lang":"en","timestamp":"2023-10-27T12:07:32"} -2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/One_(Australian_TV_channel) at (19,23) with probability 0.0015941697638481855 -2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"one","start":19,"link_probability":0.0015941697638481855,"rho":0.14541690051555634,"end":22,"id":19969891,"title":"One (Australian TV channel)"} -2023-10-27 14:07:32.487  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0015941697638481855 < 0.25) for http://dbpedia.org/resource/One_(Australian_TV_channel) -2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Formula_One at (23,33) with probability 0.29899775981903076 -2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Formula 1","start":23,"link_probability":0.29899775981903076,"rho":0.4074433147907257,"end":32,"id":10854,"title":"Formula One"} -2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Formula_One -2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Daytona_500 at (33,39) with probability 0.003929408732801676 -2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"event","start":33,"link_probability":0.003929408732801676,"rho":0.24447864294052124,"end":38,"id":39021,"title":"Daytona 500"} -2023-10-27 14:07:32.487  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.003929408732801676 < 0.25) for http://dbpedia.org/resource/Daytona_500 -2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/AVUS at (46,51) with probability 0.6821191906929016 -2023-10-27 14:07:32.487 DEBUG 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"AVUS","start":46,"link_probability":0.6821191906929016,"rho":0.5098094940185547,"end":50,"id":176958,"title":"AVUS"} -2023-10-27 14:07:32.487  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/AVUS -2023-10-27 14:07:32.487  WARN 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:07:32.488  INFO 28727 --- [nio-8092-exec-4] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:07:32.493 DEBUG 28727 --- [nio-8092-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_dded931f-30ae-46aa-a784-34e85debdc37 -2023-10-27 14:07:32.493  INFO 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7396722d -2023-10-27 14:07:32.493 DEBUG 28727 --- [nio-8092-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:32.495 ERROR 28727 --- [nio-8092-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 86. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 86. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:08:14.444  INFO 28727 --- [nio-8092-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"} -2023-10-27 14:08:14.446  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"} -2023-10-27 14:08:14.446  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"},"inGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0","outGraph":"urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0"} -2023-10-27 14:08:14.446  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@474783b7 -2023-10-27 14:08:14.486  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4980752f -2023-10-27 14:08:14.487 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:14.488  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:14.488  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:14.495 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_59dd650e-bd6c-45f9-a598-cd0e2995f98f -2023-10-27 14:08:14.495  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_59dd650e-bd6c-45f9-a598-cd0e2995f98f found in urn:graph:5558a2d8-4486-413c-bc0f-6d556f14bef0 at http://localhost:8080/sparql -2023-10-27 14:08:14.497 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is the Linux Foundation verified on Twitter? -2023-10-27 14:08:14.497  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question: Is the Linux Foundation verified on Twitter? -2023-10-27 14:08:14.497  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question Is the Linux Foundation verified on Twitter? -2023-10-27 14:08:14.497  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Path Is+the+Linux+Foundation+verified+on+Twitter%3F -2023-10-27 14:08:14.498  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=Is+the+Linux+Foundation+verified+on+Twitter%3F -2023-10-27 14:08:14.823  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Linux Foundation","start":7,"link_probability":1,"rho":0.5761911869049072,"end":23,"id":9055249,"title":"Linux Foundation"},{"spot":"verified","start":24,"link_probability":0.0020010005682706833,"rho":0.28909608721733093,"end":32,"id":9988187,"title":"Twitter"},{"spot":"Twitter","start":36,"link_probability":0.5777828097343445,"rho":0.5769870281219482,"end":43,"id":9988187,"title":"Twitter"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T12:08:14"} -2023-10-27 14:08:14.823  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Linux_Foundation at (7,24) with probability 1.0 -2023-10-27 14:08:14.824 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Linux Foundation","start":7,"link_probability":1,"rho":0.5761911869049072,"end":23,"id":9055249,"title":"Linux Foundation"} -2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Linux_Foundation -2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Twitter at (24,33) with probability 0.0020010005682706833 -2023-10-27 14:08:14.824 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"verified","start":24,"link_probability":0.0020010005682706833,"rho":0.28909608721733093,"end":32,"id":9988187,"title":"Twitter"} -2023-10-27 14:08:14.824  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.0020010005682706833 < 0.25) for http://dbpedia.org/resource/Twitter -2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Twitter at (36,44) with probability 0.5777828097343445 -2023-10-27 14:08:14.824 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Twitter","start":36,"link_probability":0.5777828097343445,"rho":0.5769870281219482,"end":43,"id":9988187,"title":"Twitter"} -2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Twitter -2023-10-27 14:08:14.824  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:08:14.824  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (2 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:08:14.830 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_59dd650e-bd6c-45f9-a598-cd0e2995f98f -2023-10-27 14:08:14.834  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38169a9b -2023-10-27 14:08:14.834 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:14.839 ERROR 28727 --- [nio-8092-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 70. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:08:15.458  INFO 28727 --- [nio-8092-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"} -2023-10-27 14:08:15.459  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"} -2023-10-27 14:08:15.459  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"},"inGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e","outGraph":"urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e"} -2023-10-27 14:08:15.459  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@53ef9d30 -2023-10-27 14:08:15.477  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4706b819 -2023-10-27 14:08:15.477 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:15.478  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:15.478  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:15.485 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1999b9b7-0542-45ac-a7c5-daaee0287c16 -2023-10-27 14:08:15.485  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1999b9b7-0542-45ac-a7c5-daaee0287c16 found in urn:graph:e3d23cee-e11f-4d49-83ed-30079522a20e at http://localhost:8080/sparql -2023-10-27 14:08:15.487 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation On how many albums does Madonna perform? -2023-10-27 14:08:15.488  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question: On how many albums does Madonna perform? -2023-10-27 14:08:15.488  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question On how many albums does Madonna perform? -2023-10-27 14:08:15.488  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Path On+how+many+albums+does+Madonna+perform%3F -2023-10-27 14:08:15.491  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=On+how+many+albums+does+Madonna+perform%3F -2023-10-27 14:08:15.824  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"albums","start":12,"link_probability":0.007155500818043947,"rho":0.2322184294462204,"end":18,"id":1290194,"title":"Billboard charts"},{"spot":"Madonna","start":24,"link_probability":0.6385111212730408,"rho":0.5478962659835815,"end":31,"id":142056,"title":"Madonna (entertainer)"}],"time":18,"api":"tag","lang":"en","timestamp":"2023-10-27T12:08:15"} -2023-10-27 14:08:15.824  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Billboard_charts at (12,19) with probability 0.007155500818043947 -2023-10-27 14:08:15.824 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"albums","start":12,"link_probability":0.007155500818043947,"rho":0.2322184294462204,"end":18,"id":1290194,"title":"Billboard charts"} -2023-10-27 14:08:15.825  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.007155500818043947 < 0.25) for http://dbpedia.org/resource/Billboard_charts -2023-10-27 14:08:15.825  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Madonna_(entertainer) at (24,32) with probability 0.6385111212730408 -2023-10-27 14:08:15.825 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Madonna","start":24,"link_probability":0.6385111212730408,"rho":0.5478962659835815,"end":31,"id":142056,"title":"Madonna (entertainer)"} -2023-10-27 14:08:15.825  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Madonna_(entertainer) -2023-10-27 14:08:15.825  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:08:15.825  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:08:15.831 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1999b9b7-0542-45ac-a7c5-daaee0287c16 -2023-10-27 14:08:15.831  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7abd211c -2023-10-27 14:08:15.834 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:15.838 ERROR 28727 --- [nio-8092-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:10:23.683  INFO 28727 --- [nio-8092-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"} -2023-10-27 14:10:23.683  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"} -2023-10-27 14:10:23.684  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"},"inGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984","outGraph":"urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984"} -2023-10-27 14:10:23.684  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@42ed4c40 -2023-10-27 14:10:23.724  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d3968f0 -2023-10-27 14:10:23.725 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:23.726  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:23.726  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:23.733 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4d6691c6-aac5-4325-9649-35bafea154df -2023-10-27 14:10:23.733  INFO 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4d6691c6-aac5-4325-9649-35bafea154df found in urn:graph:b91a48c1-6211-4f80-968f-006bd0f4a984 at http://localhost:8080/sparql -2023-10-27 14:10:23.735 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation what is the official language of iran? -2023-10-27 14:10:23.735  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question: what is the official language of iran? -2023-10-27 14:10:23.735  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Question what is the official language of iran? -2023-10-27 14:10:23.735  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Path what+is+the+official+language+of+iran%3F -2023-10-27 14:10:23.738  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=what+is+the+official+language+of+iran%3F -2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":6,"api":"tag","lang":"en","timestamp":"2023-10-27T12:10:23"} -2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 -2023-10-27 14:10:24.024 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} -2023-10-27 14:10:24.024  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language -2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 -2023-10-27 14:10:24.024 DEBUG 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} -2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran -2023-10-27 14:10:24.024  WARN 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:10:24.024  INFO 28727 --- [nio-8092-exec-7] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:10:24.030 DEBUG 28727 --- [nio-8092-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4d6691c6-aac5-4325-9649-35bafea154df -2023-10-27 14:10:24.033  INFO 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65587b02 -2023-10-27 14:10:24.033 DEBUG 28727 --- [nio-8092-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:24.035 ERROR 28727 --- [nio-8092-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:12:33.445  INFO 28727 --- [nio-8092-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"} -2023-10-27 14:12:33.446  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"} -2023-10-27 14:12:33.446  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"},"inGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010","outGraph":"urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010"} -2023-10-27 14:12:33.446  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@6f61e4cb -2023-10-27 14:12:33.480  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@187888f2 -2023-10-27 14:12:33.480 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:12:33.482  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:33.482  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:33.491 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a0b2d995-7df5-48c4-8a68-23b3c0ab646c -2023-10-27 14:12:33.491  INFO 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a0b2d995-7df5-48c4-8a68-23b3c0ab646c found in urn:graph:7f8e069e-6293-4676-a55a-1d2c7c946010 at http://localhost:8080/sparql -2023-10-27 14:12:33.494 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation what is the official language of iran? -2023-10-27 14:12:33.494  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question: what is the official language of iran? -2023-10-27 14:12:33.494  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Question what is the official language of iran? -2023-10-27 14:12:33.494  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Path what+is+the+official+language+of+iran%3F -2023-10-27 14:12:33.496  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=what+is+the+official+language+of+iran%3F -2023-10-27 14:12:33.839  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":8,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:33"} -2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 -2023-10-27 14:12:33.841 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} -2023-10-27 14:12:33.841  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language -2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 -2023-10-27 14:12:33.841 DEBUG 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} -2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran -2023-10-27 14:12:33.841  WARN 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:12:33.841  INFO 28727 --- [nio-8092-exec-5] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:12:33.847 DEBUG 28727 --- [nio-8092-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a0b2d995-7df5-48c4-8a68-23b3c0ab646c -2023-10-27 14:12:33.848  INFO 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51999fc4 -2023-10-27 14:12:33.848 DEBUG 28727 --- [nio-8092-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:12:33.852 ERROR 28727 --- [nio-8092-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:12:46.867  INFO 28727 --- [nio-8092-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"} -2023-10-27 14:12:46.868  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"} -2023-10-27 14:12:46.868  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"},"inGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b","outGraph":"urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b"} -2023-10-27 14:12:46.868  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@7105e6bb -2023-10-27 14:12:46.932  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@109b8afa -2023-10-27 14:12:46.933 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:12:46.934  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:46.935  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:46.943 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4f33eb93-3bf7-4ffd-ad3a-ab116927b35d -2023-10-27 14:12:46.943  INFO 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4f33eb93-3bf7-4ffd-ad3a-ab116927b35d found in urn:graph:966b58a6-63d9-4c90-9be6-880ae54acd1b at http://localhost:8080/sparql -2023-10-27 14:12:46.945 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the official language of iran? -2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question: What is the official language of iran? -2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Question What is the official language of iran? -2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Path What+is+the+official+language+of+iran%3F -2023-10-27 14:12:46.946  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=What+is+the+official+language+of+iran%3F -2023-10-27 14:12:47.234  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":6,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:47"} -2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 -2023-10-27 14:12:47.235 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} -2023-10-27 14:12:47.235  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language -2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 -2023-10-27 14:12:47.235 DEBUG 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} -2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran -2023-10-27 14:12:47.235  WARN 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:12:47.235  INFO 28727 --- [nio-8092-exec-6] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:12:47.241 DEBUG 28727 --- [nio-8092-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4f33eb93-3bf7-4ffd-ad3a-ab116927b35d -2023-10-27 14:12:47.242  INFO 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@487ed84c -2023-10-27 14:12:47.243 DEBUG 28727 --- [nio-8092-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:12:47.246 ERROR 28727 --- [nio-8092-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:12:51.774  INFO 28727 --- [nio-8092-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"} -2023-10-27 14:12:51.775  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"} -2023-10-27 14:12:51.775  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"},"inGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579","outGraph":"urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579"} -2023-10-27 14:12:51.775  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@45cdcb25 -2023-10-27 14:12:51.823  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c31d99b -2023-10-27 14:12:51.823 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:12:51.824  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:51.824  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:51.830 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5fe980a5-783a-47fa-82f9-31aad3552c7c -2023-10-27 14:12:51.830  INFO 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5fe980a5-783a-47fa-82f9-31aad3552c7c found in urn:graph:285b8b0b-754b-483c-bcbe-002892ee7579 at http://localhost:8080/sparql -2023-10-27 14:12:51.831 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the official language of iran? -2023-10-27 14:12:51.832  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question: What is the official language of iran? -2023-10-27 14:12:51.832  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Question What is the official language of iran? -2023-10-27 14:12:51.832  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Path What+is+the+official+language+of+iran%3F -2023-10-27 14:12:51.833  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=What+is+the+official+language+of+iran%3F -2023-10-27 14:12:52.143  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"},{"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"}],"time":6,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:52"} -2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Official_language at (12,30) with probability 0.23982013761997223 -2023-10-27 14:12:52.145 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"official language","start":12,"link_probability":0.23982013761997223,"rho":0.1968640685081482,"end":29,"id":193178,"title":"Official language"} -2023-10-27 14:12:52.145  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : link_probability was too low (0.23982013761997223 < 0.25) for http://dbpedia.org/resource/Official_language -2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Iran at (33,38) with probability 0.9366254210472107 -2023-10-27 14:12:52.145 DEBUG 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"iran","start":33,"link_probability":0.9366254210472107,"rho":0.5452667474746704,"end":37,"id":14653,"title":"Iran"} -2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Iran -2023-10-27 14:12:52.145  WARN 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:12:52.145  INFO 28727 --- [nio-8092-exec-8] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:12:52.151 DEBUG 28727 --- [nio-8092-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5fe980a5-783a-47fa-82f9-31aad3552c7c -2023-10-27 14:12:52.151  INFO 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b741773 -2023-10-27 14:12:52.152 DEBUG 28727 --- [nio-8092-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:12:52.154 ERROR 28727 --- [nio-8092-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"} -2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"} -2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"},"inGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0","outGraph":"urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0"} -2023-10-27 14:12:59.189  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@3f01322c -2023-10-27 14:12:59.197  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d1ba7aa -2023-10-27 14:12:59.198 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:12:59.199  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:59.199  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:12:59.205 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4f0fdc9d-b63c-45f0-9202-92382176560b -2023-10-27 14:12:59.205  INFO 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4f0fdc9d-b63c-45f0-9202-92382176560b found in urn:graph:ba474dad-308a-41eb-95b1-a939fe0462a0 at http://localhost:8080/sparql -2023-10-27 14:12:59.206 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? -2023-10-27 14:12:59.206  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question: When was Adidas established? -2023-10-27 14:12:59.206  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Question When was Adidas established? -2023-10-27 14:12:59.206  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Path When+was+Adidas+established%3F -2023-10-27 14:12:59.207  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=When+was+Adidas+established%3F -2023-10-27 14:12:59.472  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T12:12:59"} -2023-10-27 14:12:59.473  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Adidas at (9,16) with probability 0.6746602654457092 -2023-10-27 14:12:59.473 DEBUG 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"} -2023-10-27 14:12:59.473  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Adidas -2023-10-27 14:12:59.473  WARN 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:12:59.473  INFO 28727 --- [nio-8092-exec-9] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:12:59.479 DEBUG 28727 --- [nio-8092-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4f0fdc9d-b63c-45f0-9202-92382176560b -2023-10-27 14:12:59.479  INFO 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@468fcfa1 -2023-10-27 14:12:59.479 DEBUG 28727 --- [nio-8092-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:12:59.482 ERROR 28727 --- [nio-8092-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"} -2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"} -2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"},"inGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7","outGraph":"urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7"} -2023-10-27 14:13:41.030  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@9feef55 -2023-10-27 14:13:41.041  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9799698 -2023-10-27 14:13:41.041 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:13:41.042  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:41.043  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:41.051 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_decbeb89-02a6-48c3-8190-0ba8ca4bc5d5 -2023-10-27 14:13:41.051  INFO 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_decbeb89-02a6-48c3-8190-0ba8ca4bc5d5 found in urn:graph:c8896af0-ddbe-49d3-9ed3-20987fe625d7 at http://localhost:8080/sparql -2023-10-27 14:13:41.053 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? -2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question: When was Adidas established? -2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Question When was Adidas established? -2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Path When+was+Adidas+established%3F -2023-10-27 14:13:41.053  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=When+was+Adidas+established%3F -2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"}],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T12:13:41"} -2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Adidas at (9,16) with probability 0.6746602654457092 -2023-10-27 14:13:41.409 DEBUG 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"} -2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Adidas -2023-10-27 14:13:41.409  WARN 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:13:41.409  INFO 28727 --- [nio-8092-exec-2] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:13:41.414 DEBUG 28727 --- [nio-8092-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_decbeb89-02a6-48c3-8190-0ba8ca4bc5d5 -2023-10-27 14:13:41.414  INFO 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7dcc6d12 -2023-10-27 14:13:41.414 DEBUG 28727 --- [nio-8092-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:13:41.416 ERROR 28727 --- [nio-8092-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"} -2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"} -2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"},"inGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2","outGraph":"urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2"} -2023-10-27 14:13:44.408  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : process: eu.wdaqua.qanary.commons.QanaryMessage@702fab35 -2023-10-27 14:13:44.425  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34fea865 -2023-10-27 14:13:44.425 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:13:44.427  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:44.427  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:44.433 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7e56b7ce-73b4-4305-b120-93735ad53633 -2023-10-27 14:13:44.433  INFO 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7e56b7ce-73b4-4305-b120-93735ad53633 found in urn:graph:5a0792fc-d93f-4097-8df4-0db0046e2bf2 at http://localhost:8080/sparql -2023-10-27 14:13:44.435 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? -2023-10-27 14:13:44.435  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question: When was Adidas established? -2023-10-27 14:13:44.435  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Question When was Adidas established? -2023-10-27 14:13:44.435  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Path When+was+Adidas+established%3F -2023-10-27 14:13:44.436  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Service call: https://tagme.d4science.org/tagme/tag?gcube-token=c0c5a908-eb13-4219-9516-450a9f6d3bc6-843339462&text=When+was+Adidas+established%3F -2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : response2: {"test":"5","annotations":[{"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"}],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T12:13:44"} -2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity: http://dbpedia.org/resource/Adidas at (9,16) with probability 0.6746602654457092 -2023-10-27 14:13:44.746 DEBUG 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Found Named Entity data: {"spot":"Adidas","start":9,"link_probability":0.6746602654457092,"rho":0.3373301327228546,"end":15,"id":240028,"title":"Adidas"} -2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Adding link_probability >= 0.65 uri http://dbpedia.org/resource/Adidas -2023-10-27 14:13:44.746  WARN 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : No entities found and >= the threshold of 0.25. -2023-10-27 14:13:44.746  INFO 28727 --- [nio-8092-exec-3] e.w.qanary.component.tagme.ned.TagmeNED  : Store data (1 found entities) in graph http://localhost:8080/sparql. -2023-10-27 14:13:44.754 DEBUG 28727 --- [nio-8092-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7e56b7ce-73b4-4305-b120-93735ad53633 -2023-10-27 14:13:44.754  INFO 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49287fe6 -2023-10-27 14:13:44.755 DEBUG 28727 --- [nio-8092-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end ; - qa:score ?score . - ] . - ] . - ?a oa:hasBody ?answer ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:13:44.758 ERROR 28727 --- [nio-8092-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - ] with root cause - -org.apache.jena.query.QueryParseException: Encountered " "." ". "" at line 15, column 85. -Was expecting one of: - "]" ... - ";" ... - "," ... - "{|" ... - - at org.apache.jena.sparql.lang.ParserARQUpdate.executeParse(ParserARQUpdate.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.sparql.lang.UpdateParser.parse(UpdateParser.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.make(UpdateFactory.java:83) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:75) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:55) ~[jena-arq-4.9.0.jar!/:4.9.0] - at org.apache.jena.update.UpdateFactory.create(UpdateFactory.java:46) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector.readFileFromResourcesWithMap(QanaryTripleStoreConnector.java:215) ~[qa.commons-3.8.7.jar!/:3.8.7] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.loadQueryFromFile(TagmeNED.java:240) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.tagme.ned.TagmeNED.process(TagmeNED.java:106) ~[classes!/:3.2.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - diff --git a/qanary-component-NED-Tagme/pom.xml b/qanary-component-NED-Tagme/pom.xml index 471ca17d9..e463fc63b 100644 --- a/qanary-component-NED-Tagme/pom.xml +++ b/qanary-component-NED-Tagme/pom.xml @@ -25,12 +25,6 @@ com.google.code.gson gson - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.component diff --git a/qanary-component-NER-DBpediaSpotlight/nohup.out b/qanary-component-NER-DBpediaSpotlight/nohup.out deleted file mode 100644 index a24e19735..000000000 --- a/qanary-component-NER-DBpediaSpotlight/nohup.out +++ /dev/null @@ -1,8811 +0,0 @@ - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:21.927  INFO 9650 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9650 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) -2023-10-27 12:09:21.965 DEBUG 9650 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:21.966  INFO 9650 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:09:42.820  WARN 9650 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:43.331  WARN 9650 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:43.411  WARN 9650 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! -2023-10-27 12:09:43.412 DEBUG 9650 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 12:09:43.447 DEBUG 9650 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 12:09:43.447  INFO 9650 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3954d008 -2023-10-27 12:09:43.572 DEBUG 9650 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 12:09:43.573  INFO 9650 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32232e55 -2023-10-27 12:09:43.585  INFO 9650 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@37ebc9d8 -2023-10-27 12:09:43.656  INFO 9650 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10009 -spring.application.name = NER-DBpediaSpotlight -spring.application.description = NER-DBpediaSpotlight is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:43.762  INFO 9650 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl -2023-10-27 12:09:46.984  WARN 9650 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:47.100  INFO 9650 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:09:55.743  INFO 9650 --- [ main] e.w.q.c.d.ner.Application  : Started Application in 38.541 seconds (JVM running for 44.85) -2023-10-27 12:09:56.337  WARN 9650 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NER-DBpediaSpotlight, managementUrl=http://0.0.0.0:10009/actuator, healthUrl=http://0.0.0.0:10009/actuator/health, serviceUrl=http://0.0.0.0:10009/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:06.255  INFO 9650 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as d00bb262ec2f - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:49.910  INFO 11763 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11763 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) -2023-10-27 12:15:49.974 DEBUG 11763 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:49.985  INFO 11763 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:16:18.221  WARN 11763 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:18.727  WARN 11763 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:18.859  WARN 11763 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! -2023-10-27 12:16:18.859 DEBUG 11763 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 12:16:18.877 DEBUG 11763 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 12:16:18.879  INFO 11763 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@593e824f -2023-10-27 12:16:19.086 DEBUG 11763 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 12:16:19.098  INFO 11763 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37ebc9d8 -2023-10-27 12:16:19.100  INFO 11763 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@2416a51 -2023-10-27 12:16:19.154  INFO 11763 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10009 -spring.application.name = NER-DBpediaSpotlight -spring.application.description = NER-DBpediaSpotlight is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:19.338  INFO 11763 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl -2023-10-27 12:16:25.519  WARN 11763 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:25.597  INFO 11763 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:16:35.730  WARN 11763 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10009 is already in use -2023-10-27 12:16:36.277 ERROR 11763 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 10009 was already in use. - -Action: - -Identify and stop the process that's listening on port 10009 or configure this application to listen on another port. - -2023-10-27 13:37:25.787  WARN 9650 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NER-DBpediaSpotlight, managementUrl=http://0.0.0.0:10009/actuator, healthUrl=http://0.0.0.0:10009/actuator/health, serviceUrl=http://0.0.0.0:10009/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:48.931  INFO 28730 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28730 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) -2023-10-27 13:37:49.041 DEBUG 28730 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:49.042  INFO 28730 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:38:10.109  WARN 28730 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:10.889  WARN 28730 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:10.928  WARN 28730 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! -2023-10-27 13:38:10.929 DEBUG 28730 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 13:38:10.935 DEBUG 28730 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 13:38:10.936  INFO 28730 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3954d008 -2023-10-27 13:38:10.967 DEBUG 28730 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 13:38:10.967  INFO 28730 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32232e55 -2023-10-27 13:38:10.986  INFO 28730 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@37ebc9d8 -2023-10-27 13:38:11.003  INFO 28730 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10009 -spring.application.name = NER-DBpediaSpotlight -spring.application.description = NER-DBpediaSpotlight is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:11.100  INFO 28730 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl -2023-10-27 13:38:16.642  WARN 28730 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:16.792  INFO 28730 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:38:26.366  INFO 28730 --- [ main] e.w.q.c.d.ner.Application  : Started Application in 42.302 seconds (JVM running for 49.157) -2023-10-27 13:38:27.222  WARN 28730 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=NER-DBpediaSpotlight, managementUrl=http://0.0.0.0:10009/actuator, healthUrl=http://0.0.0.0:10009/actuator/health, serviceUrl=http://0.0.0.0:10009/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 13:38:46.636  INFO 28730 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as d00bb262ec2f - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -NER-DBpediaSpotlight -- NER-DBpediaSpotlight is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:54.624  INFO 30121 --- [ main] e.w.q.c.d.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30121 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/target/qanary-component-NER-DBpediaSpotlight-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight) -2023-10-27 13:38:54.708 DEBUG 30121 --- [ main] e.w.q.c.d.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:54.727  INFO 30121 --- [ main] e.w.q.c.d.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:39:18.771  WARN 30121 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:19.291  WARN 30121 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:19.416  WARN 30121 --- [ main] e.w.q.c.d.ner.Application  : Availability check of DBpedia Spotlight service is disabled! -2023-10-27 13:39:19.416 DEBUG 30121 --- [ main] e.w.q.c.d.ner.Application  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 13:39:19.457 DEBUG 30121 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 13:39:19.457  INFO 30121 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@591e58fa -2023-10-27 13:39:19.628 DEBUG 30121 --- [ main] e.w.q.c.d.ner.DBpediaSpotlightNER  : endpoint: https://api.dbpedia-spotlight.org/en/annotate -2023-10-27 13:39:19.629  INFO 30121 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@54361a9 -2023-10-27 13:39:19.631  INFO 30121 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dbpediaspotlight.ner.DBpediaSpotlightNER@5217f3d0 -2023-10-27 13:39:19.751  INFO 30121 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 10009 -spring.application.name = NER-DBpediaSpotlight -spring.application.description = NER-DBpediaSpotlight is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:19.867  INFO 30121 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl -2023-10-27 13:39:25.304  WARN 30121 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-DBpediaSpotlight/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:25.455  INFO 30121 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:39:34.876  WARN 30121 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 10009 is already in use -2023-10-27 13:39:35.311 ERROR 30121 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 10009 was already in use. - -Action: - -Identify and stop the process that's listening on port 10009 or configure this application to listen on another port. - -2023-10-27 13:53:36.220  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:36.229  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:36.308  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:36.589  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1a2f4a84 -2023-10-27 13:53:36.698  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52d797bd -2023-10-27 13:53:36.715 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:36.932  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:36.933  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:37.181 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:37.181  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql -2023-10-27 13:53:37.198 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? -2023-10-27 13:53:37.199  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Which universities have more than 200000 students?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:53:37.199 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Which+universities+have+more+than+200000+students%3F&confidence=0.1 -2023-10-27 13:53:37.232 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Which+universities+have+more+than+200000+students%3F&confidence=0.1 -2023-10-27 13:53:37.253 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:53:37.303  INFO 28730 --- [o-10009-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2026780901 -2023-10-27 13:53:37.889 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3b511603 -2023-10-27 13:53:37.889 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:37.889 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:53:37.930  INFO 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:53:37.941  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Which universities have more than 200000 students?": {"types":"","confidence":"0.1","text":"Which universities have more than 200000 students?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Langues_d'oïl","support":"137","types":"","surfaceForm":"Which","offset":"0","similarityScore":"0.8956483894223672","percentageOfSecondRank":"0.09489051094890548"},{"URI":"http://dbpedia.org/resource/University","support":"26706","types":"","surfaceForm":"universities","offset":"6","similarityScore":"0.9992043832290363","percentageOfSecondRank":"3.0546331909940013E-4"},{"URI":"http://dbpedia.org/resource/Student","support":"5217","types":"","surfaceForm":"students","offset":"41","similarityScore":"0.9978890340989601","percentageOfSecondRank":"0.0012102350911022072"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:53:37.944 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Langues_d'oïl at (0,5) -2023-10-27 13:53:37.944 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/University at (6,18) -2023-10-27 13:53:37.944 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Student at (41,49) -2023-10-27 13:53:37.950 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:37.951  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1795e04e -2023-10-27 13:53:37.951 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:37.966  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.967  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.967 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.979  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3292da4b -2023-10-27 13:53:37.979 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:37.981  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.982  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.982 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.989  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@162c51de -2023-10-27 13:53:37.990 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:37.993  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.994  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:37.994 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:38.001 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 1774 ms -2023-10-27 13:53:59.822  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:53:59.823  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:53:59.823  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:53:59.823  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@7e84a76f -2023-10-27 13:53:59.832  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@704356cf -2023-10-27 13:53:59.833 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:59.834  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:59.834  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:59.844 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 -2023-10-27 13:53:59.845  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 found in urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e at http://localhost:8080/sparql -2023-10-27 13:53:59.847 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? -2023-10-27 13:53:59.847  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "How many casualties were a result of the Troubles?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:53:59.847 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+casualties+were+a+result+of+the+Troubles%3F&confidence=0.1 -2023-10-27 13:53:59.848 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+casualties+were+a+result+of+the+Troubles%3F&confidence=0.1 -2023-10-27 13:53:59.848 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:53:59.848  INFO 28730 --- [io-10009-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2129153376 -2023-10-27 13:53:59.928 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@551f9e4b -2023-10-27 13:53:59.928 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:59.929 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:53:59.929  INFO 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:53:59.930  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "How many casualties were a result of the Troubles?": {"types":"","confidence":"0.1","text":"How many casualties were a result of the Troubles?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http://dbpedia.org/resource/World_War_II","support":"245778","types":"Wikidata:Q1656682,DUL:Event,Schema:Event,DBpedia:SocietalEvent,DBpedia:Event,DBpedia:MilitaryConflict","surfaceForm":"casualties","offset":"9","similarityScore":"0.7115971944034843","percentageOfSecondRank":"0.27879388899193086"},{"URI":"http://dbpedia.org/resource/Result","support":"116","types":"","surfaceForm":"result","offset":"27","similarityScore":"0.5940923665432016","percentageOfSecondRank":"0.39254965218601906"},{"URI":"http://dbpedia.org/resource/The_Troubles","support":"3258","types":"Wikidata:Q1656682,DUL:Event,Schema:Event,DBpedia:SocietalEvent,DBpedia:Event,DBpedia:MilitaryConflict","surfaceForm":"Troubles","offset":"41","similarityScore":"0.9999921594188516","percentageOfSecondRank":"6.739142523895894E-6"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/How_(TV_series) at (0,3) -2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/World_War_II at (9,19) -2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Result at (27,33) -2023-10-27 13:53:59.930 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/The_Troubles at (41,49) -2023-10-27 13:53:59.937 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 -2023-10-27 13:53:59.937  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@275ae132 -2023-10-27 13:53:59.938 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:59.939  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.940  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.940 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.948  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ccf8b28 -2023-10-27 13:53:59.949 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:59.951  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.951  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.951 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.959  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68712a73 -2023-10-27 13:53:59.960 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:59.962  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.962  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.962 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.969  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@41b51cf0 -2023-10-27 13:53:59.969 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:59.971  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.972  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.972 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.980 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 158 ms -2023-10-27 13:54:07.001  INFO 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.001  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.001  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.002  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@890a3c -2023-10-27 13:54:07.038  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b68ef5 -2023-10-27 13:54:07.039 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:07.040  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:07.040  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:07.047 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 -2023-10-27 13:54:07.047  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql -2023-10-27 13:54:07.049 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? -2023-10-27 13:54:07.049  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Where does the Nutri-Score originate from?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:54:07.050 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Where+does+the+Nutri-Score+originate+from%3F&confidence=0.1 -2023-10-27 13:54:07.050 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Where+does+the+Nutri-Score+originate+from%3F&confidence=0.1 -2023-10-27 13:54:07.050 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:54:07.050  INFO 28730 --- [io-10009-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1413778831 -2023-10-27 13:54:07.120 DEBUG 28730 --- [io-10009-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@382fa779 -2023-10-27 13:54:07.120 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:07.120 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:54:07.121  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:54:07.121  WARN 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "Where does the Nutri-Score originate from?": {"types":"","confidence":"0.1","text":"Where does the Nutri-Score originate from?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Wikipedia","support":"107729","types":"Wikidata:Q386724,Schema:WebSite,Schema:CreativeWork,DBpedia:Work,DBpedia:Website","surfaceForm":"Where","offset":"0","similarityScore":"0.9999996217001984","percentageOfSecondRank":"3.1849740674184767E-7"},{"URI":"http://dbpedia.org/resource/Anatomical_terms_of_muscle","support":"203","types":"","surfaceForm":"originate","offset":"27","similarityScore":"0.9999999385903938","percentageOfSecondRank":"5.9259551680959567E-8"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:54:07.121 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/Wikipedia at (0,5) -2023-10-27 13:54:07.121 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Anatomical_terms_of_muscle at (27,36) -2023-10-27 13:54:07.128 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 -2023-10-27 13:54:07.128  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70bf82aa -2023-10-27 13:54:07.128 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:07.130  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.130  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.130 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.137  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40ce7b6e -2023-10-27 13:54:07.137 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:07.139  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.139  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.139 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:07.146 DEBUG 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : processing took: 145 ms -2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:23.874  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@32c52a89 -2023-10-27 13:54:23.883  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c02d2a1 -2023-10-27 13:54:23.883 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:23.884  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:23.885  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:23.892 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:23.892  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql -2023-10-27 13:54:23.895 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:23.895  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "What are the German names of academic disciplines containing “linguistik”?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:54:23.896 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 -2023-10-27 13:54:23.896 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+are+the+German+names+of+academic+disciplines+containing+%E2%80%9Clinguistik%E2%80%9D%3F&confidence=0.1 -2023-10-27 13:54:23.896 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:54:23.896  INFO 28730 --- [io-10009-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-822409499 -2023-10-27 13:54:23.965 DEBUG 28730 --- [io-10009-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7d3fd89a -2023-10-27 13:54:23.965 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:23.965 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:54:23.966  INFO 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:54:23.966  WARN 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "What are the German names of academic disciplines containing “linguistik”?": {"types":"","confidence":"0.1","text":"What are the German names of academic disciplines containing “linguistik”?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9163943050124096","percentageOfSecondRank":"0.07950895145913986"},{"URI":"http://dbpedia.org/resource/German_name","support":"266","types":"","surfaceForm":"German names","offset":"13","similarityScore":"0.9999999793085694","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Outline_of_academic_disciplines","support":"167","types":"","surfaceForm":"academic disciplines","offset":"29","similarityScore":"0.9987039161368536","percentageOfSecondRank":"0.0012977655012844157"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:54:23.966 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/String_theory at (0,4) -2023-10-27 13:54:23.966 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/German_name at (13,25) -2023-10-27 13:54:23.966 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Outline_of_academic_disciplines at (29,49) -2023-10-27 13:54:23.972 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:23.972  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66b534d6 -2023-10-27 13:54:23.972 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:23.974  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.974  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.974 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.982  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c88657b -2023-10-27 13:54:23.982 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:23.984  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.984  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.984 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.990  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ee8d79a -2023-10-27 13:54:23.991 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:23.993  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.994  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.994 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:24.000 DEBUG 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : processing took: 126 ms -2023-10-27 13:55:12.640  INFO 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:12.640  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:12.641  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:12.641  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@394a1a35 -2023-10-27 13:55:12.652  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@378de36c -2023-10-27 13:55:12.652 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:12.654  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:12.654  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:12.666 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 -2023-10-27 13:55:12.666  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql -2023-10-27 13:55:12.668 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the magazine in which hunter x hunter is published established? -2023-10-27 13:55:12.669  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "when was the magazine in which hunter x hunter is published established?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:55:12.669 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=when+was+the+magazine+in+which+hunter+x+hunter+is+published+established%3F&confidence=0.1 -2023-10-27 13:55:12.669 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=when+was+the+magazine+in+which+hunter+x+hunter+is+published+established%3F&confidence=0.1 -2023-10-27 13:55:12.669 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:55:12.670  INFO 28730 --- [io-10009-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-800640787 -2023-10-27 13:55:12.780 DEBUG 28730 --- [io-10009-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1f42de06 -2023-10-27 13:55:12.781 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:55:12.781 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:55:12.782  INFO 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:55:12.783  WARN 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "when was the magazine in which hunter x hunter is published established?": {"types":"","confidence":"0.1","text":"when was the magazine in which hunter x hunter is published established?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Magazine","support":"15474","types":"","surfaceForm":"magazine","offset":"13","similarityScore":"0.9995476090677474","percentageOfSecondRank":"2.8729358708125366E-4"},{"URI":"http://dbpedia.org/resource/Hunting","support":"6553","types":"","surfaceForm":"hunter","offset":"31","similarityScore":"0.9772782425351035","percentageOfSecondRank":"0.017973479855582626"},{"URI":"http://dbpedia.org/resource/Hunting","support":"6553","types":"","surfaceForm":"hunter","offset":"40","similarityScore":"0.9772782425351035","percentageOfSecondRank":"0.017973479855582626"},{"URI":"http://dbpedia.org/resource/Publishing","support":"8026","types":"","surfaceForm":"published","offset":"50","similarityScore":"0.984572646568991","percentageOfSecondRank":"0.0070298992893083456"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Magazine at (13,21) -2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Hunting at (31,37) -2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Hunting at (40,46) -2023-10-27 13:55:12.783 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Publishing at (50,59) -2023-10-27 13:55:12.791 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 -2023-10-27 13:55:12.792  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@470cd801 -2023-10-27 13:55:12.792 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:12.794  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.795  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.795 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.804  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6714b1fc -2023-10-27 13:55:12.804 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:12.807  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.807  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.807 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.817  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@169f1618 -2023-10-27 13:55:12.817 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:12.820  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.821  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.821 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.832  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1fa44823 -2023-10-27 13:55:12.832 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:12.835  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "59"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.835  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "59"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.836 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "59"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:12.844 DEBUG 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : processing took: 204 ms -2023-10-27 13:56:30.286  INFO 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:30.286  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:30.286  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:30.287  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@53320b04 -2023-10-27 13:56:30.297  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5df5ff12 -2023-10-27 13:56:30.298 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:56:30.299  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:30.299  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:30.308 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d -2023-10-27 13:56:30.308  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql -2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Goethe’s unmarried partner born ? -2023-10-27 13:56:30.312  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Where was Goethe’s unmarried partner born ?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Where+was+Goethe%E2%80%99s+unmarried+partner+born+%3F&confidence=0.1 -2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Where+was+Goethe%E2%80%99s+unmarried+partner+born+%3F&confidence=0.1 -2023-10-27 13:56:30.312 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:56:30.313  INFO 28730 --- [io-10009-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=500421203 -2023-10-27 13:56:30.435 DEBUG 28730 --- [io-10009-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5f61a79f -2023-10-27 13:56:30.435 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:56:30.435 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:56:30.436  INFO 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:56:30.436  WARN 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "Where was Goethe’s unmarried partner born ?": {"types":"","confidence":"0.1","text":"Where was Goethe's unmarried partner born ?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Wikipedia","support":"107729","types":"Wikidata:Q386724,Schema:WebSite,Schema:CreativeWork,DBpedia:Work,DBpedia:Website","surfaceForm":"Where","offset":"0","similarityScore":"0.9994066269167536","percentageOfSecondRank":"4.998678803169592E-4"},{"URI":"http://dbpedia.org/resource/Johann_Wolfgang_von_Goethe","support":"4887","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q36180,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Writer","surfaceForm":"Goethe","offset":"10","similarityScore":"0.9996527632025682","percentageOfSecondRank":"3.4396705952772876E-4"},{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"unmarried","offset":"19","similarityScore":"0.7906641024447322","percentageOfSecondRank":"0.1410520863079856"},{"URI":"http://dbpedia.org/resource/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"37","similarityScore":"0.5287284991581187","percentageOfSecondRank":"0.4252420523415806"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Wikipedia at (0,5) -2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Johann_Wolfgang_von_Goethe at (10,16) -2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Marriage at (19,28) -2023-10-27 13:56:30.436 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Childbirth at (37,41) -2023-10-27 13:56:30.441 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d -2023-10-27 13:56:30.442  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d1ece0e -2023-10-27 13:56:30.442 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:56:30.444  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.445  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.445 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.452  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@275dc219 -2023-10-27 13:56:30.452 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:56:30.453  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.454  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.454 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.462  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ce70a66 -2023-10-27 13:56:30.462 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:56:30.464  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.464  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.464 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.471  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ee8073a -2023-10-27 13:56:30.471 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:56:30.472  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.473  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.473 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:56:30.480 DEBUG 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : processing took: 194 ms -2023-10-27 13:57:36.606  INFO 28730 --- [io-10009-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.607  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.607  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.608  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5dab68ca -2023-10-27 13:57:36.698  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43929262 -2023-10-27 13:57:36.698 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:36.751  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:36.752  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:36.766 DEBUG 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:36.766  INFO 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql -2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? -2023-10-27 13:57:36.770  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "How many people died due to the Great Leap Forward according to the highest estimate?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&confidence=0.1 -2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+people+died+due+to+the+Great+Leap+Forward+according+to+the+highest+estimate%3F&confidence=0.1 -2023-10-27 13:57:36.770 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:57:36.770  INFO 28730 --- [io-10009-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-667497096 -2023-10-27 13:57:36.869 DEBUG 28730 --- [io-10009-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3b6f551a -2023-10-27 13:57:36.869 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:36.869 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:57:36.870  INFO 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:57:36.870  WARN 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "How many people died due to the Great Leap Forward according to the highest estimate?": {"types":"","confidence":"0.1","text":"How many people died due to the Great Leap Forward according to the highest estimate?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http://dbpedia.org/resource/Death","support":"8975","types":"","surfaceForm":"died","offset":"16","similarityScore":"0.872674229363569","percentageOfSecondRank":"0.10297061468131118"},{"URI":"http://dbpedia.org/resource/Great_Leap_Forward","support":"751","types":"","surfaceForm":"Great Leap Forward","offset":"32","similarityScore":"0.9999999992580939","percentageOfSecondRank":"7.41910872255363E-10"},{"URI":"http://dbpedia.org/resource/Estimator","support":"1312","types":"","surfaceForm":"estimate","offset":"76","similarityScore":"0.5929697747988631","percentageOfSecondRank":"0.34844706652701124"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/How_(TV_series) at (0,3) -2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Death at (16,20) -2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Great_Leap_Forward at (32,50) -2023-10-27 13:57:36.871 DEBUG 28730 --- [io-10009-exec-2] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Estimator at (76,84) -2023-10-27 13:57:36.876 DEBUG 28730 --- [io-10009-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:36.877  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d849785 -2023-10-27 13:57:36.878 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:36.880  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.881  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.881 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.887  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6a5203d5 -2023-10-27 13:57:36.887 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:36.889  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.889  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.889 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.898  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@616d933d -2023-10-27 13:57:36.898 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:36.900  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.900  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.900 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.906  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@206bdd8f -2023-10-27 13:57:36.906 DEBUG 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:36.908  INFO 28730 --- [io-10009-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "76"^^xsd:nonNegativeInteger . - _:b1 oa:end "84"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.908  INFO 28730 --- [io-10009-exec-2] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "76"^^xsd:nonNegativeInteger . - _:b1 oa:end "84"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.908 DEBUG 28730 --- [io-10009-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "76"^^xsd:nonNegativeInteger . - _:b1 oa:end "84"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:36.915 DEBUG 28730 --- [io-10009-exec-2] e.w.q.component.QanaryServiceController  : processing took: 308 ms -2023-10-27 13:57:46.554  INFO 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:46.554  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:46.554  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:46.555  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@15d8d943 -2023-10-27 13:57:46.564  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30c05826 -2023-10-27 13:57:46.564 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:46.565  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:46.565  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:46.572 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 -2023-10-27 13:57:46.572  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql -2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in the country where ghost in the shell is born, who is the current head of the state? -2023-10-27 13:57:46.574  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "in the country where ghost in the shell is born, who is the current head of the state?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=in+the+country+where+ghost+in+the+shell+is+born%2C+who+is+the+current+head+of+the+state%3F&confidence=0.1 -2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=in+the+country+where+ghost+in+the+shell+is+born%2C+who+is+the+current+head+of+the+state%3F&confidence=0.1 -2023-10-27 13:57:46.574 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:57:46.574  INFO 28730 --- [io-10009-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-667966013 -2023-10-27 13:57:46.666 DEBUG 28730 --- [io-10009-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@15231eb4 -2023-10-27 13:57:46.666 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:46.666 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:57:46.667  INFO 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:57:46.667  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "in the country where ghost in the shell is born, who is the current head of the state?": {"types":"","confidence":"0.1","text":"in the country where ghost in the shell is born, who is the current head of the state?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Gastropod_shell","support":"4852","types":"","surfaceForm":"shell","offset":"34","similarityScore":"0.9562139715107217","percentageOfSecondRank":"0.02847974911959475"},{"URI":"http://dbpedia.org/resource/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"43","similarityScore":"0.5396723375426807","percentageOfSecondRank":"0.2808606632655506"},{"URI":"http://dbpedia.org/resource/Electric_current","support":"8324","types":"","surfaceForm":"current","offset":"60","similarityScore":"0.9960693453781021","percentageOfSecondRank":"0.002277980640037344"},{"URI":"http://dbpedia.org/resource/Head","support":"1287","types":"Wikidata:Q4936952,DBpedia:AnatomicalStructure","surfaceForm":"head","offset":"68","similarityScore":"0.5411224071877075","percentageOfSecondRank":"0.5745393755057722"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Gastropod_shell at (34,39) -2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Childbirth at (43,47) -2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Electric_current at (60,67) -2023-10-27 13:57:46.667 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Head at (68,72) -2023-10-27 13:57:46.673 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 -2023-10-27 13:57:46.673  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4662df92 -2023-10-27 13:57:46.673 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:46.674  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.675  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.675 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.682  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7451ae10 -2023-10-27 13:57:46.683 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:46.684  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "43"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.684  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "43"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.684 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "43"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.690  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@b15ca03 -2023-10-27 13:57:46.690 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:46.692  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.692  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.692 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "67"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.700  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64eb36b -2023-10-27 13:57:46.700 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:46.702  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "68"^^xsd:nonNegativeInteger . - _:b1 oa:end "72"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.702  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "68"^^xsd:nonNegativeInteger . - _:b1 oa:end "72"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.702 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "68"^^xsd:nonNegativeInteger . - _:b1 oa:end "72"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:46.709 DEBUG 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : processing took: 155 ms -2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:57:59.904  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@219bff48 -2023-10-27 13:57:59.914  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@644a906d -2023-10-27 13:57:59.914 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:59.915  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:59.916  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:59.921 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 -2023-10-27 13:57:59.921  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql -2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:57:59.923  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&confidence=0.1 -2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=among+the+characters+in+the+witcher%2C+who+has+two+unmarried+partners%2C+Yennefer+of+Vengerberg+and+Triss+Merigold%3F&confidence=0.1 -2023-10-27 13:57:59.923 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:57:59.923  INFO 28730 --- [io-10009-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1961714188 -2023-10-27 13:58:00.009 DEBUG 28730 --- [io-10009-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5bcaf7e4 -2023-10-27 13:58:00.009 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:00.009 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:58:00.009  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:58:00.010  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : The web service response for 'among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?' was empty. However, the JSON response was valid. -2023-10-27 13:58:00.010  WARN 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : nothing recognized for "among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?": {"types":"","confidence":"0.1","text":"among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?","Resources":{"Resource":{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"unmarried","offset":"49","similarityScore":"0.7507170519474562","percentageOfSecondRank":"0.1704633482215701"}},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:58:00.010 DEBUG 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : processing took: 106 ms -2023-10-27 13:58:14.372  INFO 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:14.373  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:14.373  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:14.373  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@78a91238 -2023-10-27 13:58:14.384  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16160bc0 -2023-10-27 13:58:14.384 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:14.385  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:14.385  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:14.390 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 -2023-10-27 13:58:14.390  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql -2023-10-27 13:58:14.392 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation how many plays has William Shakespeare written in the 16th century. -2023-10-27 13:58:14.392  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "how many plays has William Shakespeare written in the 16th century." with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:58:14.392 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=how+many+plays+has+William+Shakespeare+written+in+the+16th+century.&confidence=0.1 -2023-10-27 13:58:14.393 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=how+many+plays+has+William+Shakespeare+written+in+the+16th+century.&confidence=0.1 -2023-10-27 13:58:14.393 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:58:14.393  INFO 28730 --- [io-10009-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-299243259 -2023-10-27 13:58:14.489 DEBUG 28730 --- [io-10009-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7db4589b -2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:58:14.490  INFO 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:58:14.490  WARN 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "how many plays has William Shakespeare written in the 16th century.": {"types":"","confidence":"0.1","text":"how many plays has William Shakespeare written in the 16th century.","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Shakespeare's_plays","support":"459","types":"","surfaceForm":"plays","offset":"9","similarityScore":"0.9922613410305864","percentageOfSecondRank":"0.003053914479892287"},{"URI":"http://dbpedia.org/resource/William_Shakespeare","support":"22536","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Agent,DBpedia:Person","surfaceForm":"William Shakespeare","offset":"19","similarityScore":"0.9999999996643112","percentageOfSecondRank":"2.03993973861534E-10"},{"URI":"http://dbpedia.org/resource/Century","support":"1508","types":"","surfaceForm":"century","offset":"59","similarityScore":"0.9073682340712212","percentageOfSecondRank":"0.09868732404012398"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Shakespeare's_plays at (9,14) -2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/William_Shakespeare at (19,38) -2023-10-27 13:58:14.490 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Century at (59,66) -2023-10-27 13:58:14.497 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 -2023-10-27 13:58:14.497  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d3cadc7 -2023-10-27 13:58:14.497 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:14.499  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.499  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.499 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "14"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.505  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b52e7ab -2023-10-27 13:58:14.505 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:14.507  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.507  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.507 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.515  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@73e98dba -2023-10-27 13:58:14.515 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:14.516  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.516  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.516 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:14.522 DEBUG 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : processing took: 149 ms -2023-10-27 13:59:06.025  INFO 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:06.025  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:06.025  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:06.026  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3e494706 -2023-10-27 13:59:06.040  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c109a62 -2023-10-27 13:59:06.040 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:06.042  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:06.042  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:06.056 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:06.056  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql -2023-10-27 13:59:06.058 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was the first female chancellor in Germany ever married? -2023-10-27 13:59:06.058  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Was the first female chancellor in Germany ever married?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:59:06.058 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Was+the+first+female+chancellor+in+Germany+ever+married%3F&confidence=0.1 -2023-10-27 13:59:06.058 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Was+the+first+female+chancellor+in+Germany+ever+married%3F&confidence=0.1 -2023-10-27 13:59:06.059 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:59:06.059  INFO 28730 --- [io-10009-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1297410133 -2023-10-27 13:59:06.166 DEBUG 28730 --- [io-10009-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2f89cb07 -2023-10-27 13:59:06.166 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:59:06.166 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:59:06.166  INFO 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:59:06.167  WARN 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Was the first female chancellor in Germany ever married?": {"types":"","confidence":"0.1","text":"Was the first female chancellor in Germany ever married?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Was-sceptre","support":"405","types":"","surfaceForm":"Was","offset":"0","similarityScore":"0.6949214105435765","percentageOfSecondRank":"0.19657466828953704"},{"URI":"http://dbpedia.org/resource/Female","support":"3402","types":"","surfaceForm":"female","offset":"14","similarityScore":"0.9760797345315791","percentageOfSecondRank":"0.021752665251946413"},{"URI":"http://dbpedia.org/resource/Chancellor_of_the_Tang_dynasty","support":"4465","types":"","surfaceForm":"chancellor","offset":"21","similarityScore":"0.6170828891164983","percentageOfSecondRank":"0.30313262463352586"},{"URI":"http://dbpedia.org/resource/Germany","support":"222752","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"Germany","offset":"35","similarityScore":"0.9931132932373623","percentageOfSecondRank":"0.003712045309293807"},{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"married","offset":"48","similarityScore":"0.9998415970101485","percentageOfSecondRank":"1.0895191091179369E-4"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/Was-sceptre at (0,3) -2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Female at (14,20) -2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Chancellor_of_the_Tang_dynasty at (21,31) -2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Germany at (35,42) -2023-10-27 13:59:06.167 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Marriage at (48,55) -2023-10-27 13:59:06.172 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:06.173  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b0cc887 -2023-10-27 13:59:06.173 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:06.174  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.174  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.174 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.182  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@23379a0e -2023-10-27 13:59:06.182 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:06.183  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.184  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.184 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.191  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a9e325a -2023-10-27 13:59:06.191 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:06.192  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.192  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.192 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.201  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b2e17fd -2023-10-27 13:59:06.201 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:06.203  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.203  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.203 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.209  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66dba4ef -2023-10-27 13:59:06.210 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:06.212  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "48"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.213  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "48"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.213 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "48"^^xsd:nonNegativeInteger . - _:b1 oa:end "55"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:06.220 DEBUG 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : processing took: 195 ms -2023-10-27 13:59:36.402  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.402  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.403  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.403  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1ae8b0e7 -2023-10-27 13:59:36.416  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67b7092e -2023-10-27 13:59:36.416 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:36.418  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:36.418  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:36.425 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 -2023-10-27 13:59:36.426  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql -2023-10-27 13:59:36.427 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:36.428  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Who are the actresses in Portrait of a Lady on Fire?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 13:59:36.428 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+are+the+actresses+in+Portrait+of+a+Lady+on+Fire%3F&confidence=0.1 -2023-10-27 13:59:36.428 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+are+the+actresses+in+Portrait+of+a+Lady+on+Fire%3F&confidence=0.1 -2023-10-27 13:59:36.428 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:59:36.429  INFO 28730 --- [o-10009-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2039112795 -2023-10-27 13:59:36.521 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@658df95a -2023-10-27 13:59:36.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:59:36.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:59:36.522  INFO 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 13:59:36.522  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "Who are the actresses in Portrait of a Lady on Fire?": {"types":"","confidence":"0.1","text":"Who are the actresses in Portrait of a Lady on Fire?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.964961454959486","percentageOfSecondRank":"0.023868551027194877"},{"URI":"http://dbpedia.org/resource/Actor","support":"36200","types":"","surfaceForm":"actresses","offset":"12","similarityScore":"0.9983577649855008","percentageOfSecondRank":"0.0016444749197604754"},{"URI":"http://dbpedia.org/resource/Portrait","support":"3792","types":"","surfaceForm":"Portrait","offset":"25","similarityScore":"0.9969461697226214","percentageOfSecondRank":"0.00305490863859732"},{"URI":"http://dbpedia.org/resource/Lady","support":"640","types":"","surfaceForm":"Lady","offset":"39","similarityScore":"0.9930860536698901","percentageOfSecondRank":"0.004153555903981608"},{"URI":"http://dbpedia.org/resource/Fire","support":"6819","types":"","surfaceForm":"Fire","offset":"47","similarityScore":"0.9992098063133944","percentageOfSecondRank":"5.09974769596E-4"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 13:59:36.522 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/The_Who at (0,3) -2023-10-27 13:59:36.522 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Actor at (12,21) -2023-10-27 13:59:36.522 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Portrait at (25,33) -2023-10-27 13:59:36.523 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Lady at (39,43) -2023-10-27 13:59:36.523 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Fire at (47,51) -2023-10-27 13:59:36.528 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 -2023-10-27 13:59:36.529  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3abd1284 -2023-10-27 13:59:36.529 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:36.531  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.531  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.531 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.537  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@659c9284 -2023-10-27 13:59:36.537 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:36.539  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.539  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.539 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.546  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@480f9c03 -2023-10-27 13:59:36.547 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:36.549  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.549  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.549 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.557  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4242eb71 -2023-10-27 13:59:36.557 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:36.559  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "39"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.559  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "39"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.559 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "39"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.567  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@10b9e88f -2023-10-27 13:59:36.568 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:36.569  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.569  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.569 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:36.576 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 174 ms -2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:30.393  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@5600627f -2023-10-27 14:02:30.403  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f587781 -2023-10-27 14:02:30.403 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:30.404  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:30.404  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:30.409 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:30.409  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql -2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded the Worpswede artist colony ? -2023-10-27 14:02:30.411  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Who founded the Worpswede artist colony ?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Who+founded+the+Worpswede+artist+colony+%3F&confidence=0.1 -2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Who+founded+the+Worpswede+artist+colony+%3F&confidence=0.1 -2023-10-27 14:02:30.411 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:02:30.411  INFO 28730 --- [io-10009-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=48380153 -2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@799eda7c -2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:02:30.502  INFO 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:02:30.502  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Who founded the Worpswede artist colony ?": {"types":"","confidence":"0.1","text":"Who founded the Worpswede artist colony ?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/The_Who","support":"5102","types":"Wikidata:Q43229,Wikidata:Q24229398,Wikidata:Q215380,DUL:SocialPerson,DUL:Agent,Schema:Organization,Schema:MusicGroup,DBpedia:Organisation,DBpedia:Group,DBpedia:Agent,DBpedia:Band","surfaceForm":"Who","offset":"0","similarityScore":"0.9733013701635437","percentageOfSecondRank":"0.01992678080896168"},{"URI":"http://dbpedia.org/resource/Worpswede","support":"135","types":"Wikidata:Q486972,Schema:Place,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Settlement","surfaceForm":"Worpswede","offset":"16","similarityScore":"0.999999999623796","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Colony","support":"3218","types":"","surfaceForm":"colony","offset":"33","similarityScore":"0.9324619339358211","percentageOfSecondRank":"0.023633178303685057"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/The_Who at (0,3) -2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Worpswede at (16,25) -2023-10-27 14:02:30.502 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Colony at (33,39) -2023-10-27 14:02:30.507 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:30.507  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c584caa -2023-10-27 14:02:30.507 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:30.509  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.509  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.509 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.517  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40d0d2df -2023-10-27 14:02:30.517 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:30.518  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.519  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.519 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.525  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d086253 -2023-10-27 14:02:30.525 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:30.527  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.527  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.527 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:30.537 DEBUG 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : processing took: 144 ms -2023-10-27 14:03:30.482  INFO 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:30.482  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:30.482  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:30.487  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@1d1027d5 -2023-10-27 14:03:30.495  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@524cb325 -2023-10-27 14:03:30.495 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:30.496  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:30.496  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:30.505 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e -2023-10-27 14:03:30.505  INFO 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql -2023-10-27 14:03:30.507 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Whom did Clara Westhoff marry? -2023-10-27 14:03:30.507  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "Whom did Clara Westhoff marry?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:03:30.507 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=Whom+did+Clara+Westhoff+marry%3F&confidence=0.1 -2023-10-27 14:03:30.507 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=Whom+did+Clara+Westhoff+marry%3F&confidence=0.1 -2023-10-27 14:03:30.508 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:30.508  INFO 28730 --- [io-10009-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1754512984 -2023-10-27 14:03:30.600 DEBUG 28730 --- [io-10009-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5ecff8b -2023-10-27 14:03:30.601 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:30.601 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:03:30.601  INFO 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:03:30.601  WARN 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "Whom did Clara Westhoff marry?": {"types":"","confidence":"0.1","text":"Whom did Clara Westhoff marry?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Who_(pronoun)","support":"294","types":"","surfaceForm":"Whom","offset":"0","similarityScore":"0.9966531760629121","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Clara_Westhoff","support":"22","types":"","surfaceForm":"Clara Westhoff","offset":"9","similarityScore":"1.0","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Marriage","support":"57816","types":"","surfaceForm":"marry","offset":"24","similarityScore":"0.9973535550463735","percentageOfSecondRank":"0.0023825723655345066"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:03:30.602 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Who_(pronoun) at (0,4) -2023-10-27 14:03:30.602 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Clara_Westhoff at (9,23) -2023-10-27 14:03:30.602 DEBUG 28730 --- [io-10009-exec-6] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Marriage at (24,29) -2023-10-27 14:03:30.608 DEBUG 28730 --- [io-10009-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e -2023-10-27 14:03:30.608  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@195e5e6c -2023-10-27 14:03:30.608 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:30.610  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.610  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.610 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.619  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ebc03f9 -2023-10-27 14:03:30.619 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:30.620  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.620  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.620 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.625  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76393c73 -2023-10-27 14:03:30.626 DEBUG 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:30.627  INFO 28730 --- [io-10009-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.627  INFO 28730 --- [io-10009-exec-6] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.627 DEBUG 28730 --- [io-10009-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "29"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:30.634 DEBUG 28730 --- [io-10009-exec-6] e.w.q.component.QanaryServiceController  : processing took: 152 ms -2023-10-27 14:04:06.244  INFO 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:06.244  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:06.245  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:06.245  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@79a3b5d0 -2023-10-27 14:04:06.255  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3264545c -2023-10-27 14:04:06.255 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:06.256  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:06.256  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:06.262 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:06.262  INFO 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql -2023-10-27 14:04:06.263 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? -2023-10-27 14:04:06.264  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "When was Rumi born?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:04:06.264 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 -2023-10-27 14:04:06.264 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Rumi+born%3F&confidence=0.1 -2023-10-27 14:04:06.264 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:04:06.264  INFO 28730 --- [io-10009-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1680371682 -2023-10-27 14:04:06.358 DEBUG 28730 --- [io-10009-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@22191f1a -2023-10-27 14:04:06.358 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:04:06.358 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:04:06.359  INFO 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:04:06.359  WARN 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "When was Rumi born?": {"types":"","confidence":"0.1","text":"When was Rumi born?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.89590991274047","percentageOfSecondRank":"0.05696410439286022"},{"URI":"http://dbpedia.org/resource/Rumi","support":"1111","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q2566598,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Agent,DBpedia:Religious","surfaceForm":"Rumi","offset":"9","similarityScore":"0.9981752230789295","percentageOfSecondRank":"0.00143775838733992"},{"URI":"http://dbpedia.org/resource/Childbirth","support":"3103","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"born","offset":"14","similarityScore":"0.4669742058601906","percentageOfSecondRank":"0.390265943553758"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:04:06.359 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Time at (0,4) -2023-10-27 14:04:06.359 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/Rumi at (9,13) -2023-10-27 14:04:06.359 DEBUG 28730 --- [io-10009-exec-9] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Childbirth at (14,18) -2023-10-27 14:04:06.368 DEBUG 28730 --- [io-10009-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:06.369  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@467033bc -2023-10-27 14:04:06.369 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:06.371  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.371  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.372 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.380  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5626599a -2023-10-27 14:04:06.380 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:06.383  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.384  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.384 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.394  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ef051f0 -2023-10-27 14:04:06.394 DEBUG 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:06.395  INFO 28730 --- [io-10009-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.396  INFO 28730 --- [io-10009-exec-9] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.396 DEBUG 28730 --- [io-10009-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:06.404 DEBUG 28730 --- [io-10009-exec-9] e.w.q.component.QanaryServiceController  : processing took: 160 ms -2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:30.895  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2cc663dc -2023-10-27 14:05:30.920  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43cb116 -2023-10-27 14:05:30.920 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:30.923  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:30.924  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:30.932 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:30.932  INFO 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql -2023-10-27 14:05:30.934 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 14:05:30.934  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "in which language does the united stated have the shortest short name?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:05:30.935 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 -2023-10-27 14:05:30.935 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&confidence=0.1 -2023-10-27 14:05:30.935 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:05:30.936  INFO 28730 --- [io-10009-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-996304361 -2023-10-27 14:05:31.115 DEBUG 28730 --- [io-10009-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@58d3f4da -2023-10-27 14:05:31.115 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:05:31.115 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:05:31.115  INFO 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:05:31.115  WARN 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 3 resources recognized for "in which language does the united stated have the shortest short name?": {"types":"","confidence":"0.1","text":"in which language does the united stated have the shortest short name?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Language","support":"21994","types":"","surfaceForm":"language","offset":"9","similarityScore":"0.9742593246572685","percentageOfSecondRank":"0.01094758442766131"},{"URI":"http://dbpedia.org/resource/United_States","support":"553243","types":"Wikidata:Q6256,Schema:Place,Schema:Country,DBpedia:PopulatedPlace,DBpedia:Place,DBpedia:Location,DBpedia:Country","surfaceForm":"united stated","offset":"27","similarityScore":"0.9999999994779074","percentageOfSecondRank":"0.0"},{"URI":"http://dbpedia.org/resource/Short_film","support":"11379","types":"","surfaceForm":"short","offset":"59","similarityScore":"0.9774975252379949","percentageOfSecondRank":"0.011209388443481693"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:05:31.116 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 2): http://dbpedia.org/resource/Language at (9,17) -2023-10-27 14:05:31.116 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 2): http://dbpedia.org/resource/United_States at (27,40) -2023-10-27 14:05:31.116 DEBUG 28730 --- [io-10009-exec-5] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 2): http://dbpedia.org/resource/Short_film at (59,64) -2023-10-27 14:05:31.120 DEBUG 28730 --- [io-10009-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:31.121  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39865ad7 -2023-10-27 14:05:31.121 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:31.123  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.123  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.123 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.128  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aa6b72b -2023-10-27 14:05:31.129 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:31.130  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.130  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.130 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "40"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.136  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@58eb1017 -2023-10-27 14:05:31.136 DEBUG 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:31.137  INFO 28730 --- [io-10009-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.138  INFO 28730 --- [io-10009-exec-5] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.138 DEBUG 28730 --- [io-10009-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:31.144 DEBUG 28730 --- [io-10009-exec-5] e.w.q.component.QanaryServiceController  : processing took: 249 ms -2023-10-27 14:06:40.410  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.410  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.410  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.411  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@11b050ae -2023-10-27 14:06:40.419  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25eb391f -2023-10-27 14:06:40.419 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:40.420  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.420  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.425 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 -2023-10-27 14:06:40.425  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql -2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? -2023-10-27 14:06:40.427  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "How many female Chinese Empresses have there been?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=How+many+female+Chinese+Empresses+have+there+been%3F&confidence=0.1 -2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=How+many+female+Chinese+Empresses+have+there+been%3F&confidence=0.1 -2023-10-27 14:06:40.427 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:06:40.427  INFO 28730 --- [o-10009-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-124498332 -2023-10-27 14:06:40.520 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@2f0534ab -2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:06:40.521  INFO 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:06:40.521  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "How many female Chinese Empresses have there been?": {"types":"","confidence":"0.1","text":"How many female Chinese Empresses have there been?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/How_(TV_series)","support":"47","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"How","offset":"0","similarityScore":"0.8927646989181806","percentageOfSecondRank":"0.08510638297872336"},{"URI":"http://dbpedia.org/resource/Female","support":"3402","types":"","surfaceForm":"female","offset":"9","similarityScore":"0.9822303367352846","percentageOfSecondRank":"0.016652280533326885"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/How_(TV_series) at (0,3) -2023-10-27 14:06:40.521 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Female at (9,15) -2023-10-27 14:06:40.525 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 -2023-10-27 14:06:40.525  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ca334c5 -2023-10-27 14:06:40.525 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:40.528  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.528  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.528 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "3"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.533  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@407cd18f -2023-10-27 14:06:40.533 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:40.534  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.535  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.535 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:40.539 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 129 ms -2023-10-27 14:07:12.635  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.636  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.636  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.636  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@31962685 -2023-10-27 14:07:12.648  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51e06d54 -2023-10-27 14:07:12.648 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:12.649  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:12.649  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:12.657 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:12.657  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql -2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? -2023-10-27 14:07:12.659  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "can i play don't starve on play station 4?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=can+i+play+don%27t+starve+on+play+station+4%3F&confidence=0.1 -2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=can+i+play+don%27t+starve+on+play+station+4%3F&confidence=0.1 -2023-10-27 14:07:12.659 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:07:12.659  INFO 28730 --- [io-10009-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=269900284 -2023-10-27 14:07:12.756 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@59983fd1 -2023-10-27 14:07:12.756 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:07:12.756 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:07:12.757  INFO 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:07:12.757  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 4 resources recognized for "can i play don't starve on play station 4?": {"types":"","confidence":"0.1","text":"can i play don't starve on play station 4?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Play_(theatre)","support":"7630","types":"","surfaceForm":"play","offset":"6","similarityScore":"0.9127271986704101","percentageOfSecondRank":"0.035685518805668164"},{"URI":"http://dbpedia.org/resource/Starvation","support":"985","types":"Wikidata:Q12136,DBpedia:Disease","surfaceForm":"starve","offset":"17","similarityScore":"0.9997056356793862","percentageOfSecondRank":"2.844586467647433E-4"},{"URI":"http://dbpedia.org/resource/Play_(theatre)","support":"7630","types":"","surfaceForm":"play","offset":"27","similarityScore":"0.9127271986704101","percentageOfSecondRank":"0.035685518805668164"},{"URI":"http://dbpedia.org/resource/Train_station","support":"35154","types":"","surfaceForm":"station","offset":"32","similarityScore":"0.5427513027040782","percentageOfSecondRank":"0.6838429576385228"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 3): http://dbpedia.org/resource/Play_(theatre) at (6,10) -2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 3): http://dbpedia.org/resource/Starvation at (17,23) -2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 3): http://dbpedia.org/resource/Play_(theatre) at (27,31) -2023-10-27 14:07:12.757 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 3): http://dbpedia.org/resource/Train_station at (32,39) -2023-10-27 14:07:12.764 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:12.764  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@593a9869 -2023-10-27 14:07:12.764 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:12.766  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "10"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.767  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "10"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.767 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "10"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.777  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@be2d4d7 -2023-10-27 14:07:12.777 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:12.778  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.779  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.779 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.786  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24d374bd -2023-10-27 14:07:12.786 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:12.788  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.788  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.788 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.794  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c2da141 -2023-10-27 14:07:12.794 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:12.796  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.796  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.796 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:12.804 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 169 ms -2023-10-27 14:08:06.282  INFO 28730 --- [io-10009-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.282  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.282  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.283  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@2252a93d -2023-10-27 14:08:06.292  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c955307 -2023-10-27 14:08:06.292 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:06.293  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:06.293  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:06.298 DEBUG 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:06.298  INFO 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql -2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? -2023-10-27 14:08:06.299  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "What caused Kobe Bryant's Death?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=What+caused+Kobe+Bryant%27s+Death%3F&confidence=0.1 -2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=What+caused+Kobe+Bryant%27s+Death%3F&confidence=0.1 -2023-10-27 14:08:06.299 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:08:06.299  INFO 28730 --- [io-10009-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=335133991 -2023-10-27 14:08:06.389 DEBUG 28730 --- [io-10009-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6da8593c -2023-10-27 14:08:06.389 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:06.389 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:08:06.390  INFO 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:08:06.391  WARN 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 5 resources recognized for "What caused Kobe Bryant's Death?": {"types":"","confidence":"0.1","text":"What caused Kobe Bryant's Death?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/String_theory","support":"2003","types":"","surfaceForm":"What","offset":"0","similarityScore":"0.9175136785795404","percentageOfSecondRank":"0.07896333724020432"},{"URI":"http://dbpedia.org/resource/Causality","support":"2215","types":"","surfaceForm":"caused","offset":"5","similarityScore":"0.7949455552437151","percentageOfSecondRank":"0.14529861086027074"},{"URI":"http://dbpedia.org/resource/Kobe_Bryant","support":"3650","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Kobe","offset":"12","similarityScore":"0.7698658739025911","percentageOfSecondRank":"0.2987069880035337"},{"URI":"http://dbpedia.org/resource/Kobe_Bryant","support":"3650","types":"Http://xmlns.com/foaf/0.1/Person,Wikidata:Q5,Wikidata:Q3665646,Wikidata:Q24229398,Wikidata:Q215627,DUL:NaturalPerson,DUL:Agent,Schema:Person,DBpedia:Person,DBpedia:Athlete,DBpedia:Agent,DBpedia:BasketballPlayer","surfaceForm":"Bryant","offset":"17","similarityScore":"0.9999974965931315","percentageOfSecondRank":"2.006131191029701E-6"},{"URI":"http://dbpedia.org/resource/Death","support":"8975","types":"","surfaceForm":"Death","offset":"26","similarityScore":"0.9830394579072976","percentageOfSecondRank":"0.007611053458390156"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:08:06.391 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 4): http://dbpedia.org/resource/String_theory at (0,4) -2023-10-27 14:08:06.391 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 4): http://dbpedia.org/resource/Causality at (5,11) -2023-10-27 14:08:06.392 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (2 of 4): http://dbpedia.org/resource/Kobe_Bryant at (12,16) -2023-10-27 14:08:06.392 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (3 of 4): http://dbpedia.org/resource/Kobe_Bryant at (17,23) -2023-10-27 14:08:06.392 DEBUG 28730 --- [io-10009-exec-7] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (4 of 4): http://dbpedia.org/resource/Death at (26,31) -2023-10-27 14:08:06.397 DEBUG 28730 --- [io-10009-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:06.397  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a041ef5 -2023-10-27 14:08:06.397 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:06.399  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.399  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.399 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.405  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c0f73d9 -2023-10-27 14:08:06.406 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:06.407  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.407  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.407 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "11"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.413  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22496abf -2023-10-27 14:08:06.413 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:06.414  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.415  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.415 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.420  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d87a673 -2023-10-27 14:08:06.421 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:06.422  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.422  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.422 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.428  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@770ee280 -2023-10-27 14:08:06.428 DEBUG 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:06.430  INFO 28730 --- [io-10009-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.430  INFO 28730 --- [io-10009-exec-7] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.430 DEBUG 28730 --- [io-10009-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:06.436 DEBUG 28730 --- [io-10009-exec-7] e.w.q.component.QanaryServiceController  : processing took: 154 ms -2023-10-27 14:09:43.034  INFO 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:43.035  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:43.035  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:43.035  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@25d5226a -2023-10-27 14:09:43.045  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@152c1745 -2023-10-27 14:09:43.045 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:43.046  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:43.047  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:43.056 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:43.056  INFO 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql -2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:09:43.058  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:09:43.058 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:09:43.058  INFO 28730 --- [io-10009-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2056941755 -2023-10-27 14:09:43.125 DEBUG 28730 --- [io-10009-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 -2023-10-27 14:09:43.125 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:43.125 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:09:43.126  INFO 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:09:43.126  WARN 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:09:43.126 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:09:43.126 DEBUG 28730 --- [io-10009-exec-4] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:09:43.132 DEBUG 28730 --- [io-10009-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:43.133  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ad8cedc -2023-10-27 14:09:43.133 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:43.134  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.134  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.134 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.141  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f3b74fd -2023-10-27 14:09:43.141 DEBUG 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:43.142  INFO 28730 --- [io-10009-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.142  INFO 28730 --- [io-10009-exec-4] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.142 DEBUG 28730 --- [io-10009-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:43.147 DEBUG 28730 --- [io-10009-exec-4] e.w.q.component.QanaryServiceController  : processing took: 113 ms -2023-10-27 14:10:25.931  INFO 28730 --- [io-10009-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:25.931  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:25.931  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:25.932  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@4107fe03 -2023-10-27 14:10:25.949  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@efd1268 -2023-10-27 14:10:25.949 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:25.950  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.950  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.965 DEBUG 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:25.965  INFO 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql -2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:10:25.967  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:10:25.967 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:10:25.989 DEBUG 28730 --- [io-10009-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 -2023-10-27 14:10:25.989 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:10:25.989 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:10:25.990  WARN 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:10:25.990  WARN 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:10:25.990 DEBUG 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:10:25.990 DEBUG 28730 --- [io-10009-exec-8] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:10:25.995 DEBUG 28730 --- [io-10009-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:25.995  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6ed2ed27 -2023-10-27 14:10:25.995 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:25.996  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.996  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:25.996 DEBUG 28730 --- [io-10009-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:26.008  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e64843d -2023-10-27 14:10:26.009 DEBUG 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:26.014  INFO 28730 --- [io-10009-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:26.014  INFO 28730 --- [io-10009-exec-8] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:26.014 DEBUG 28730 --- [io-10009-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:26.023 DEBUG 28730 --- [io-10009-exec-8] e.w.q.component.QanaryServiceController  : processing took: 92 ms -2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} -2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} -2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"},"inGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d","outGraph":"urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d"} -2023-10-27 14:11:01.642  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@aac84e7 -2023-10-27 14:11:01.650  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c8a5975 -2023-10-27 14:11:01.650 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:01.651  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:01.651  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:01.657 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 -2023-10-27 14:11:01.657  INFO 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 found in urn:graph:6745c2f1-e078-4c3f-b6e2-4419187c045d at http://localhost:8080/sparql -2023-10-27 14:11:01.658 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:01.659  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 -2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:11:01.659 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:11:01.659  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:11:01.660  WARN 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:11:01.660 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:11:01.660 DEBUG 28730 --- [o-10009-exec-10] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:11:01.664 DEBUG 28730 --- [o-10009-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_45ca374a-2d1c-462f-9045-a41a517ec377 -2023-10-27 14:11:01.664  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29aa413d -2023-10-27 14:11:01.664 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:01.665  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.666  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.666 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.672  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f7c1d2e -2023-10-27 14:11:01.672 DEBUG 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:01.673  INFO 28730 --- [o-10009-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.673  INFO 28730 --- [o-10009-exec-10] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.673 DEBUG 28730 --- [o-10009-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:01.677 DEBUG 28730 --- [o-10009-exec-10] e.w.q.component.QanaryServiceController  : processing took: 35 ms -2023-10-27 14:11:05.706  INFO 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.707  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.707  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.707  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@24a14b4 -2023-10-27 14:11:05.713  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c99354b -2023-10-27 14:11:05.713 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:05.714  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:05.714  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:05.719 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e -2023-10-27 14:11:05.720  INFO 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e found in urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf at http://localhost:8080/sparql -2023-10-27 14:11:05.721 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:05.722  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 -2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:11:05.722 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:11:05.722  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:11:05.722  WARN 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:11:05.723 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:11:05.723 DEBUG 28730 --- [io-10009-exec-1] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:11:05.727 DEBUG 28730 --- [io-10009-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e -2023-10-27 14:11:05.727  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a19442d -2023-10-27 14:11:05.728 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:05.729  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.729  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.729 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.735  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@644da1c7 -2023-10-27 14:11:05.735 DEBUG 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:05.737  INFO 28730 --- [io-10009-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.737  INFO 28730 --- [io-10009-exec-1] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.737 DEBUG 28730 --- [io-10009-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:05.742 DEBUG 28730 --- [io-10009-exec-1] e.w.q.component.QanaryServiceController  : processing took: 35 ms -2023-10-27 14:11:16.569  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.569  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.569  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.570  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@31599f7d -2023-10-27 14:11:16.589  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c00b1ed -2023-10-27 14:11:16.589 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:16.590  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:16.590  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:16.595 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:16.595  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql -2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:16.597  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "After whom is the Riemannian geometry named?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=After+whom+is+the+Riemannian+geometry+named%3F&confidence=0.1 -2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16927816 -2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:11:16.597 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:11:16.597  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was cached -2023-10-27 14:11:16.597  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "After whom is the Riemannian geometry named?": {"types":"","confidence":"0.1","text":"After whom is the Riemannian geometry named?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/AfterMASH","support":"142","types":"Wikidata:Q386724,Wikidata:Q15416,Schema:CreativeWork,DBpedia:Work,DBpedia:TelevisionShow","surfaceForm":"After","offset":"0","similarityScore":"0.5118103110636382","percentageOfSecondRank":"0.3928302574272145"},{"URI":"http://dbpedia.org/resource/Riemannian_geometry","support":"364","types":"","surfaceForm":"Riemannian geometry","offset":"18","similarityScore":"1.0","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:11:16.598 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/AfterMASH at (0,5) -2023-10-27 14:11:16.598 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Riemannian_geometry at (18,37) -2023-10-27 14:11:16.602 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:16.602  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@13c95e4c -2023-10-27 14:11:16.602 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:16.603  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.603  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.603 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "5"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.609  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@423fc2dd -2023-10-27 14:11:16.609 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:11:16.610  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.610  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.610 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:11:16.615 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 46 ms -2023-10-27 14:13:48.181  INFO 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.183  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.183  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.183  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : Qanary Message: eu.wdaqua.qanary.commons.QanaryMessage@3f601f90 -2023-10-27 14:13:48.193  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16c65e48 -2023-10-27 14:13:48.194 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:13:48.195  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:48.195  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:48.203 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d -2023-10-27 14:13:48.203  INFO 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d found in urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8 at http://localhost:8080/sparql -2023-10-27 14:13:48.205 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? -2023-10-27 14:13:48.205  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : process question "When was Adidas established?" with DBpedia Spotlight at https://api.dbpedia-spotlight.org/en/annotate and minimum confidence: 0.1 -2023-10-27 14:13:48.205 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : URL: https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Adidas+established%3F&confidence=0.1 -2023-10-27 14:13:48.206 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dbpedia-spotlight.org/en/annotate?text=When+was+Adidas+established%3F&confidence=0.1 -2023-10-27 14:13:48.206 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:13:48.206  INFO 28730 --- [io-10009-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-415429172 -2023-10-27 14:13:48.276 DEBUG 28730 --- [io-10009-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@73b143f1 -2023-10-27 14:13:48.276 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:13:48.276 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:13:48.277  INFO 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : request was actually executed -2023-10-27 14:13:48.277  WARN 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : 2 resources recognized for "When was Adidas established?": {"types":"","confidence":"0.1","text":"When was Adidas established?","Resources":{"Resource":[{"URI":"http://dbpedia.org/resource/Time","support":"13177","types":"","surfaceForm":"When","offset":"0","similarityScore":"0.8954267677236311","percentageOfSecondRank":"0.06287945857871995"},{"URI":"http://dbpedia.org/resource/Adidas","support":"3380","types":"","surfaceForm":"Adidas","offset":"9","similarityScore":"0.9999998986180907","percentageOfSecondRank":"0.0"}]},"sparql":"","support":"0","policy":"whitelist"} -2023-10-27 14:13:48.277 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (0 of 1): http://dbpedia.org/resource/Time at (0,4) -2023-10-27 14:13:48.277 DEBUG 28730 --- [io-10009-exec-3] w.q.c.d.n.DBpediaSpotlightServiceFetcher : found resource (1 of 1): http://dbpedia.org/resource/Adidas at (9,15) -2023-10-27 14:13:48.282 DEBUG 28730 --- [io-10009-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d -2023-10-27 14:13:48.283  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c925e88 -2023-10-27 14:13:48.283 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:13:48.284  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.285  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.285 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "0"^^xsd:nonNegativeInteger . - _:b1 oa:end "4"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.291  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68027d4c -2023-10-27 14:13:48.291 DEBUG 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:13:48.293  INFO 28730 --- [io-10009-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.293  INFO 28730 --- [io-10009-exec-3] e.w.q.c.d.ner.DBpediaSpotlightNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.293 DEBUG 28730 --- [io-10009-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.299 DEBUG 28730 --- [io-10009-exec-3] e.w.q.component.QanaryServiceController  : processing took: 116 ms diff --git a/qanary-component-NER-DBpediaSpotlight/pom.xml b/qanary-component-NER-DBpediaSpotlight/pom.xml index 93355a0ad..1b4ded31e 100644 --- a/qanary-component-NER-DBpediaSpotlight/pom.xml +++ b/qanary-component-NER-DBpediaSpotlight/pom.xml @@ -27,12 +27,6 @@ qa.component ${qanary.component.version} - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-NER-Dandelion/nohup.out b/qanary-component-NER-Dandelion/nohup.out deleted file mode 100644 index 0456682c0..000000000 --- a/qanary-component-NER-Dandelion/nohup.out +++ /dev/null @@ -1,6022 +0,0 @@ - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNER -- DandelionNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:21.695  INFO 9649 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9649 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) -2023-10-27 12:09:21.721 DEBUG 9649 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:21.734  INFO 9649 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:09:38.801  WARN 9649 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:39.025  WARN 9649 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:39.147  WARN 9649 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelion' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ner/Dandelion.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ner.Dandelion]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException -2023-10-27 12:09:39.432 ERROR 9649 --- [ main] o.s.boot.SpringApplication  : Application run failed - -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dandelion' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/dandelion/ner/Dandelion.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ner.Dandelion]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] - at eu.wdaqua.qanary.component.dandelion.ner.Application.main(Application.java:34) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NER-Dandelion-3.4.0.jar:3.4.0] -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.dandelion.ner.Dandelion]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 25 common frames omitted -Caused by: eu.wdaqua.qanary.component.dandelion.ner.exception.ApiTokenIsNullOrEmptyException: null - at eu.wdaqua.qanary.component.dandelion.ner.Dandelion.(Dandelion.java:63) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 27 common frames omitted - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNER -- DandelionNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:49.882  INFO 11762 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11762 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) -2023-10-27 12:15:49.913 DEBUG 11762 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:49.944  INFO 11762 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:16:18.820  WARN 11762 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:19.719  WARN 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:19.949  INFO 11762 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 -2023-10-27 12:16:19.988  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 12:16:20.333 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:20.472 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:20.525 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:20.625  INFO 11762 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 12:16:22.873 DEBUG 11762 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@27494e46 -2023-10-27 12:16:22.878 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:22.920 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:16:22.943  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.294 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:16:22.839"} -2023-10-27 12:16:23.304  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 12:16:23.626  INFO 11762 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6622a690 -2023-10-27 12:16:23.627  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 12:16:23.627 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.627 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.627 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:23.628  INFO 11762 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 12:16:23.679 DEBUG 11762 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30b9eadd -2023-10-27 12:16:23.680 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:23.680 DEBUG 11762 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:16:23.680  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:16:23.681 DEBUG 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:16:23.658"} -2023-10-27 12:16:23.682  INFO 11762 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 12:16:23.683  INFO 11762 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@3249a1ce -2023-10-27 12:16:23.709  INFO 11762 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8088 -spring.application.name = DandelionNER -spring.application.description = DandelionNER is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:23.890  INFO 11762 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl -2023-10-27 12:16:29.329  WARN 11762 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:29.537  INFO 11762 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 12:16:39.556  WARN 11762 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8088 is already in use -2023-10-27 12:16:40.495 ERROR 11762 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8088 was already in use. - -Action: - -Identify and stop the process that's listening on port 8088 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNER -- DandelionNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:18:17.182  INFO 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 12774 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) -2023-10-27 12:18:17.185 DEBUG 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:18:17.186  INFO 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:18:19.757  WARN 12774 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:18:19.837  WARN 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:18:19.860  INFO 12774 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 -2023-10-27 12:18:19.863  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 12:18:19.887 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:18:19.897 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:18:19.900 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:18:19.907  INFO 12774 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 12:18:20.369 DEBUG 12774 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b -2023-10-27 12:18:20.371 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:18:20.374 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:18:20.378  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:18:20.421 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:18:20.346"} -2023-10-27 12:18:20.425  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 12:18:20.445  INFO 12774 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 -2023-10-27 12:18:20.445  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 12:18:20.445 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:18:20.445 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:18:20.446 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:18:20.446  INFO 12774 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 -2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:18:20.496  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 12:18:20.496 DEBUG 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T10:18:20.477"} -2023-10-27 12:18:20.497  INFO 12774 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 12:18:20.498  INFO 12774 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@412c995d -2023-10-27 12:18:20.502  INFO 12774 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8323 -spring.application.name = DandelionNER -spring.application.description = DandelionNER is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:18:20.515  INFO 12774 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl -2023-10-27 12:18:20.911  WARN 12774 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:18:20.927  INFO 12774 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 12:18:21.844  INFO 12774 --- [ main] e.w.q.c.dandelion.ner.Application  : Started Application in 5.296 seconds (JVM running for 6.004) -2023-10-27 12:18:22.013  INFO 12774 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 3ef7770eb927 -2023-10-27 13:37:21.924  WARN 12774 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DandelionNER, managementUrl=http://0.0.0.0:8323/actuator, healthUrl=http://0.0.0.0:8323/actuator/health, serviceUrl=http://0.0.0.0:8323/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNER -- DandelionNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:49.562  INFO 28729 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28729 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) -2023-10-27 13:37:49.575 DEBUG 28729 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:49.595  INFO 28729 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:38:13.119  WARN 28729 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:13.918  WARN 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:14.204  INFO 28729 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 -2023-10-27 13:38:14.302  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 13:38:14.483 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:14.558 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:14.601 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:14.640  INFO 28729 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 13:38:17.583 DEBUG 28729 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b -2023-10-27 13:38:17.604 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:17.638 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:38:17.694  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:18.413 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:38:17.557"} -2023-10-27 13:38:18.435  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 13:38:18.642  INFO 28729 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 -2023-10-27 13:38:18.650  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 13:38:18.654 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:18.654 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:18.662 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:18.663  INFO 28729 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 13:38:18.726 DEBUG 28729 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 -2023-10-27 13:38:18.726 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:18.726 DEBUG 28729 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:38:18.727  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:38:18.727 DEBUG 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:38:18.705"} -2023-10-27 13:38:18.727  INFO 28729 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 13:38:18.728  INFO 28729 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@412c995d -2023-10-27 13:38:18.740  INFO 28729 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8323 -spring.application.name = DandelionNER -spring.application.description = DandelionNER is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:18.939  INFO 28729 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl -2023-10-27 13:38:25.034  WARN 28729 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:25.118  INFO 28729 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:38:33.950  WARN 28729 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8323 is already in use -2023-10-27 13:38:34.165 ERROR 28729 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8323 was already in use. - -Action: - -Identify and stop the process that's listening on port 8323 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -DandelionNER -- DandelionNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:54.174  INFO 30120 --- [ main] e.w.q.c.dandelion.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30120 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/target/qanary-component-NER-Dandelion-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion) -2023-10-27 13:38:54.242 DEBUG 30120 --- [ main] e.w.q.c.dandelion.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:54.275  INFO 30120 --- [ main] e.w.q.c.dandelion.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:39:16.941  WARN 30120 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:17.637  WARN 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:17.680  INFO 30120 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 -2023-10-27 13:39:17.691  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 13:39:18.034 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:18.152 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:18.181 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:18.242  INFO 30120 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 13:39:20.863 DEBUG 30120 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66d57c1b -2023-10-27 13:39:20.904 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:20.961 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:39:20.980  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:21.507 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:39:20.836"} -2023-10-27 13:39:21.550  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 13:39:21.796  INFO 30120 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b9c69a9 -2023-10-27 13:39:21.797  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : API live testing is activated -2023-10-27 13:39:21.799 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:21.799 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:21.851 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:21.851  INFO 30120 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1233625837 -2023-10-27 13:39:21.907 DEBUG 30120 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6622a690 -2023-10-27 13:39:21.907 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:21.916 DEBUG 30120 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:39:21.929  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+a+test%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:39:21.929 DEBUG 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:39:21.883"} -2023-10-27 13:39:21.929  INFO 30120 --- [ main] e.w.q.component.dandelion.ner.Dandelion  : Functionality works as expected -2023-10-27 13:39:21.931  INFO 30120 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.dandelion.ner.Dandelion@412c995d -2023-10-27 13:39:22.099  INFO 30120 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8323 -spring.application.name = DandelionNER -spring.application.description = DandelionNER is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:22.322  INFO 30120 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl -2023-10-27 13:39:27.002  WARN 30120 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Dandelion/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:27.168  INFO 30120 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:39:34.612  WARN 30120 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8323 is already in use -2023-10-27 13:39:35.194 ERROR 30120 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8323 was already in use. - -Action: - -Identify and stop the process that's listening on port 8323 or configure this application to listen on another port. - -2023-10-27 13:55:30.424  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:30.464  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:30.646  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:30.914  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@50dbd6d2 -2023-10-27 13:55:31.084  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fbc384e -2023-10-27 13:55:31.127 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:31.813  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:31.815  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:31.920 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 -2023-10-27 13:55:31.920  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql -2023-10-27 13:55:31.923 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many public holidays does the state Bavaria have in a year? -2023-10-27 13:55:31.923 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question How many public holidays does the state Bavaria have in a year? -2023-10-27 13:55:31.924 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+public+holidays+does+the+state+Bavaria+have+in+a+year%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:55:31.924 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+public+holidays+does+the+state+Bavaria+have+in+a+year%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:55:31.924 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:55:32.037  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-880252883 -2023-10-27 13:55:32.243 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6268d57f -2023-10-27 13:55:32.244 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:55:32.244 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:55:32.245  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+public+holidays+does+the+state+Bavaria+have+in+a+year%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:55:32.245 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":9,"end":24,"spot":"public holidays","confidence":0.6371,"id":52396,"title":"Public holiday","uri":"http://en.wikipedia.org/wiki/Public_holiday","abstract":"A public holiday, national holiday, federal holiday, statutory holiday, or legal holiday is a holiday generally established by law and is usually a non-working day during the year.","label":"Public holiday","categories":["Holidays","Public sphere"],"types":[]},{"start":40,"end":47,"spot":"Bavaria","confidence":0.8386,"id":3764,"title":"Bavaria","uri":"http://en.wikipedia.org/wiki/Bavaria","abstract":"Bavaria, officially the Free State of Bavaria, is a state in the south-east of Germany. With an area of, Bavaria is the largest German state by land area, comprising roughly a fifth of the total land area of Germany. With over 13 million inhabitants, it is the second largest German state in terms of population only to North Rhine-Westphalia, but due to its large size its population density is below the German average. Major cities include Munich (its capital and largest city, which is also the third largest city in Germany), Nuremberg, and Augsburg.","label":"Bavaria","categories":["Bavaria","Boii","States of Germany","States of the Weimar Republic"],"types":["http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:55:32.220"} -2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":24,"spot":"public holidays","confidence":0.6371,"id":52396,"title":"Public holiday","uri":"http://en.wikipedia.org/wiki/Public_holiday","abstract":"A public holiday, national holiday, federal holiday, statutory holiday, or legal holiday is a holiday generally established by law and is usually a non-working day during the year.","label":"Public holiday","categories":["Holidays","Public sphere"],"types":[]} -2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 -2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 24 -2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":40,"end":47,"spot":"Bavaria","confidence":0.8386,"id":3764,"title":"Bavaria","uri":"http://en.wikipedia.org/wiki/Bavaria","abstract":"Bavaria, officially the Free State of Bavaria, is a state in the south-east of Germany. With an area of, Bavaria is the largest German state by land area, comprising roughly a fifth of the total land area of Germany. With over 13 million inhabitants, it is the second largest German state in terms of population only to North Rhine-Westphalia, but due to its large size its population density is below the German average. Major cities include Munich (its capital and largest city, which is also the third largest city in Germany), Nuremberg, and Augsburg.","label":"Bavaria","categories":["Bavaria","Boii","States of Germany","States of the Weimar Republic"],"types":["http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]} -2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 40 -2023-10-27 13:55:32.246 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 47 -2023-10-27 13:55:32.253 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 -2023-10-27 13:55:32.254  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@373cab7c -2023-10-27 13:55:32.254 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:32.281  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:32.282  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:32.283 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "24"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:32.302  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@556ecbde -2023-10-27 13:55:32.303 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:32.308  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:32.309  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:32.309 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:32.318 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 1869 ms -2023-10-27 13:57:01.075  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:01.076  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:01.077  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:01.077  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@2d4aee2b -2023-10-27 13:57:01.146  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@238d05f2 -2023-10-27 13:57:01.146 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:01.149  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:01.150  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:01.160 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:01.161  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql -2023-10-27 13:57:01.164 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was the University of Hamburg founded? -2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question When was the University of Hamburg founded? -2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=When+was+the+University+of+Hamburg+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=When+was+the+University+of+Hamburg+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:01.165 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:57:01.165  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1358403397 -2023-10-27 13:57:01.419 DEBUG 12774 --- [nio-8323-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@62b00fc9 -2023-10-27 13:57:01.419 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:01.420 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:57:01.421  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=When+was+the+University+of+Hamburg+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:01.421 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":13,"end":34,"spot":"University of Hamburg","confidence":0.8532,"id":1753136,"title":"University of Hamburg","uri":"http://en.wikipedia.org/wiki/University_of_Hamburg","abstract":"The University of Hamburg (also referred to as UHH) is a public research university in Hamburg, Germany. It was founded on 28 March 1919 by combining the previous General Lecture System, the Hamburg Colonial Institute, and the Academic College. The main campus is located in the central district of Rotherbaum, with affiliated institutes and research centres distributed around the city-state. Seven Nobel Prize winners and one Wolf Prize winner are affiliated with UHH.","label":"University of Hamburg","categories":["1919 establishments in Germany","Educational institutions established in 1919","Universities and colleges in Hamburg","University of Hamburg"],"types":["http://dbpedia.org/ontology/University","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/EducationalInstitution","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:01.383"} -2023-10-27 13:57:01.422 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":13,"end":34,"spot":"University of Hamburg","confidence":0.8532,"id":1753136,"title":"University of Hamburg","uri":"http://en.wikipedia.org/wiki/University_of_Hamburg","abstract":"The University of Hamburg (also referred to as UHH) is a public research university in Hamburg, Germany. It was founded on 28 March 1919 by combining the previous General Lecture System, the Hamburg Colonial Institute, and the Academic College. The main campus is located in the central district of Rotherbaum, with affiliated institutes and research centres distributed around the city-state. Seven Nobel Prize winners and one Wolf Prize winner are affiliated with UHH.","label":"University of Hamburg","categories":["1919 establishments in Germany","Educational institutions established in 1919","Universities and colleges in Hamburg","University of Hamburg"],"types":["http://dbpedia.org/ontology/University","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/EducationalInstitution","http://dbpedia.org/ontology/Agent"]} -2023-10-27 13:57:01.422 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 13 -2023-10-27 13:57:01.422 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 -2023-10-27 13:57:01.431 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:01.431  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18718e02 -2023-10-27 13:57:01.432 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:01.436  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:01.437  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:01.437 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "13"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:01.448 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : processing took: 372 ms -2023-10-27 13:57:49.996  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:49.996  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:49.996  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:49.997  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@3b303948 -2023-10-27 13:57:50.026  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@712aa569 -2023-10-27 13:57:50.026 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:50.028  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:50.029  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:50.037 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:50.037  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql -2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? -2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question How many movies does the Scream franchise have? -2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+does+the+Scream+franchise+have%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+does+the+Scream+franchise+have%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:50.040 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:57:50.041  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1780345356 -2023-10-27 13:57:50.190 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5c877fbc -2023-10-27 13:57:50.190 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:57:50.191  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+does+the+Scream+franchise+have%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":9,"end":15,"spot":"movies","confidence":0.6928,"id":21555729,"title":"Film","uri":"http://en.wikipedia.org/wiki/Film","abstract":"A film also called a movie, motion picture, moving picture, picture, photoplay or (slang) flick is a work of visual art that simulates experiences and otherwise communicates ideas, stories, perceptions, feelings, beauty, or atmosphere through the use of moving images. These images are generally accompanied by sound and, more rarely, other sensory stimulations. The word \"cinema\", short for cinematography, is often used to refer to filmmaking and the film industry, and the art form that is the result of it.","label":"Film","categories":["19th-century inventions","Articles containing video clips","Film","French inventions","Media formats","Visual arts media"],"types":[]},{"start":25,"end":41,"spot":"Scream franchise","confidence":0.8739,"id":9031174,"title":"Scream (franchise)","uri":"http://en.wikipedia.org/wiki/Scream_%28franchise%29","abstract":"Scream is an American murder mystery and slasher franchise that includes six films, a television series, merchandise, and games. The first four films were directed by Wes Craven. The series was created by Kevin Williamson, who wrote the first two films and the fourth; Ehren Kruger wrote the third. The fifth and sixth installments were directed by Matt Bettinelli-Olpin and Tyler Gillett, with Guy Busick and James Vanderbilt serving as writers and Williamson returning as executive producer. Dimension Films produced the first four films. Spyglass Media Group took over the rights from the fifth film on with Paramount Pictures distributing. The film series has grossed over at the global box office.","label":"Scream","categories":["Horror film franchises","Mass media franchises introduced in 1996","Miramax franchises","Paramount Pictures franchises","Scream (franchise)"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:57:50.167"} -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":15,"spot":"movies","confidence":0.6928,"id":21555729,"title":"Film","uri":"http://en.wikipedia.org/wiki/Film","abstract":"A film also called a movie, motion picture, moving picture, picture, photoplay or (slang) flick is a work of visual art that simulates experiences and otherwise communicates ideas, stories, perceptions, feelings, beauty, or atmosphere through the use of moving images. These images are generally accompanied by sound and, more rarely, other sensory stimulations. The word \"cinema\", short for cinematography, is often used to refer to filmmaking and the film industry, and the art form that is the result of it.","label":"Film","categories":["19th-century inventions","Articles containing video clips","Film","French inventions","Media formats","Visual arts media"],"types":[]} -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 15 -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":25,"end":41,"spot":"Scream franchise","confidence":0.8739,"id":9031174,"title":"Scream (franchise)","uri":"http://en.wikipedia.org/wiki/Scream_%28franchise%29","abstract":"Scream is an American murder mystery and slasher franchise that includes six films, a television series, merchandise, and games. The first four films were directed by Wes Craven. The series was created by Kevin Williamson, who wrote the first two films and the fourth; Ehren Kruger wrote the third. The fifth and sixth installments were directed by Matt Bettinelli-Olpin and Tyler Gillett, with Guy Busick and James Vanderbilt serving as writers and Williamson returning as executive producer. Dimension Films produced the first four films. Spyglass Media Group took over the rights from the fifth film on with Paramount Pictures distributing. The film series has grossed over at the global box office.","label":"Scream","categories":["Horror film franchises","Mass media franchises introduced in 1996","Miramax franchises","Paramount Pictures franchises","Scream (franchise)"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]} -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 -2023-10-27 13:57:50.191 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 41 -2023-10-27 13:57:50.201 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:50.202  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66c7e71d -2023-10-27 13:57:50.202 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:50.204  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:50.204  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:50.204 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:50.211  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@42620741 -2023-10-27 13:57:50.212 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:50.214  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:50.215  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:50.215 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "25"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:50.221 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 225 ms -2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:44.116  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@7232d4f5 -2023-10-27 13:58:44.127  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ebea5bb -2023-10-27 13:58:44.127 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:44.130  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:44.131  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:44.138 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:44.139  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql -2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:44.142 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:44.143 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:58:44.143  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-612690955 -2023-10-27 13:58:44.267 DEBUG 12774 --- [nio-8323-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@766cccfe -2023-10-27 13:58:44.267 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:44.267 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:58:44.268  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+actor+starring+in+Free+Guy+also+starred+in+Deadpool%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":24,"end":32,"spot":"Free Guy","confidence":0.9181,"id":60203476,"title":"Free Guy","uri":"http://en.wikipedia.org/wiki/Free_Guy","abstract":"Free Guy is a 2021 American action comedy film directed and produced by Shawn Levy from a screenplay by Matt Lieberman and Zak Penn, and a story by Lieberman. The film stars Ryan Reynolds, Jodie Comer, Lil Rel Howery, Utkarsh Ambudkar, Joe Keery, and Taika Waititi. It tells the story of a bank teller who discovers that he is a non-player character in a massively multiplayer online game who then partners with a player to find evidence that a gaming company's CEO stole the player's game's source code.","label":"Free Guy","categories":["2020s American films","2020s English-language films","2020s science fiction comedy films","2021 action comedy films","2021 films","2021 science fiction action films","20th Century Studios films","21 Laps Entertainment films","4DX films","American action comedy films","American science fiction action films","American science fiction comedy films","Films about video games","Films about virtual reality","Films directed by Shawn Levy","Films postponed due to the COVID-19 pandemic","Films produced by Greg Berlanti","Films produced by Ryan Reynolds","Films scored by Christophe Beck","Films set in the future","Films shot in Boston","Films shot in Massachusetts","IMAX films","Self-reflexive films","TSG Entertainment films","Works set in computers"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]},{"start":49,"end":57,"spot":"Deadpool","confidence":0.9265,"id":43867095,"title":"Deadpool (film)","uri":"http://en.wikipedia.org/wiki/Deadpool_%28film%29","abstract":"Deadpool is a 2016 American superhero film based on the Marvel Comics character of the same name. Distributed by 20th Century Fox, it is a spin-off in the X-Men film series and the eighth installment overall. Directed by Tim Miller (in his feature directorial debut) and written by Rhett Reese and Paul Wernick, it stars Ryan Reynolds in the title role alongside Morena Baccarin, Ed Skrein, T. J. Miller, Gina Carano, and Brianna Hildebrand. In the film, Wade Wilson hunts the man who gave him mutant abilities and a scarred physical appearance, becoming the antihero Deadpool.","label":"Deadpool","categories":["2010s American films","2010s English-language films","2010s superhero comedy films","2016 action comedy films","2016 black comedy films","2016 directorial debut films","2016 films","20th Century Fox films","American action comedy films","American black comedy films","American films about revenge","American superhero films","American vigilante films","Deadpool (film series)","Film spin-offs","Films directed by Tim Miller","Films produced by Lauren Shuler Donner","Films produced by Ryan Reynolds","Films produced by Simon Kinberg","Films scored by Junkie XL","Films set in Westchester County, New York","Films shot in Vancouver","Films using motion capture","Films with screenplays by Paul Wernick","Films with screenplays by Rhett Reese","Human experimentation in fiction","IMAX films","Live-action films based on Marvel Comics","Metafictional works","Self-reflexive films","Superhero black comedy films","TSG Entertainment films","X-Men (film series)"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:44.248"} -2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":24,"end":32,"spot":"Free Guy","confidence":0.9181,"id":60203476,"title":"Free Guy","uri":"http://en.wikipedia.org/wiki/Free_Guy","abstract":"Free Guy is a 2021 American action comedy film directed and produced by Shawn Levy from a screenplay by Matt Lieberman and Zak Penn, and a story by Lieberman. The film stars Ryan Reynolds, Jodie Comer, Lil Rel Howery, Utkarsh Ambudkar, Joe Keery, and Taika Waititi. It tells the story of a bank teller who discovers that he is a non-player character in a massively multiplayer online game who then partners with a player to find evidence that a gaming company's CEO stole the player's game's source code.","label":"Free Guy","categories":["2020s American films","2020s English-language films","2020s science fiction comedy films","2021 action comedy films","2021 films","2021 science fiction action films","20th Century Studios films","21 Laps Entertainment films","4DX films","American action comedy films","American science fiction action films","American science fiction comedy films","Films about video games","Films about virtual reality","Films directed by Shawn Levy","Films postponed due to the COVID-19 pandemic","Films produced by Greg Berlanti","Films produced by Ryan Reynolds","Films scored by Christophe Beck","Films set in the future","Films shot in Boston","Films shot in Massachusetts","IMAX films","Self-reflexive films","TSG Entertainment films","Works set in computers"],"types":["http://dbpedia.org/ontology/Film","http://dbpedia.org/ontology/Work"]} -2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 24 -2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 32 -2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":49,"end":57,"spot":"Deadpool","confidence":0.9265,"id":43867095,"title":"Deadpool (film)","uri":"http://en.wikipedia.org/wiki/Deadpool_%28film%29","abstract":"Deadpool is a 2016 American superhero film based on the Marvel Comics character of the same name. Distributed by 20th Century Fox, it is a spin-off in the X-Men film series and the eighth installment overall. Directed by Tim Miller (in his feature directorial debut) and written by Rhett Reese and Paul Wernick, it stars Ryan Reynolds in the title role alongside Morena Baccarin, Ed Skrein, T. J. Miller, Gina Carano, and Brianna Hildebrand. In the film, Wade Wilson hunts the man who gave him mutant abilities and a scarred physical appearance, becoming the antihero Deadpool.","label":"Deadpool","categories":["2010s American films","2010s English-language films","2010s superhero comedy films","2016 action comedy films","2016 black comedy films","2016 directorial debut films","2016 films","20th Century Fox films","American action comedy films","American black comedy films","American films about revenge","American superhero films","American vigilante films","Deadpool (film series)","Film spin-offs","Films directed by Tim Miller","Films produced by Lauren Shuler Donner","Films produced by Ryan Reynolds","Films produced by Simon Kinberg","Films scored by Junkie XL","Films set in Westchester County, New York","Films shot in Vancouver","Films using motion capture","Films with screenplays by Paul Wernick","Films with screenplays by Rhett Reese","Human experimentation in fiction","IMAX films","Live-action films based on Marvel Comics","Metafictional works","Self-reflexive films","Superhero black comedy films","TSG Entertainment films","X-Men (film series)"],"types":[]} -2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 -2023-10-27 13:58:44.268 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 57 -2023-10-27 13:58:44.274 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:44.274  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@121d2bba -2023-10-27 13:58:44.275 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:44.276  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.277  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.277 DEBUG 12774 --- [nio-8323-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.285  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@69f5d73f -2023-10-27 13:58:44.285 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:44.287  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.287  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.287 DEBUG 12774 --- [nio-8323-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "49"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:44.294 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : processing took: 178 ms -2023-10-27 13:58:58.355  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.356  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.356  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.357  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@14b7ebc5 -2023-10-27 13:58:58.372  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1a700723 -2023-10-27 13:58:58.372 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:58.374  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:58.375  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:58.384 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:58:58.384  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql -2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? -2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question What notes does a C major chord consist of? -2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:58.386 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:58:58.386  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-709828756 -2023-10-27 13:58:58.516 DEBUG 12774 --- [nio-8323-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5b4d0d18 -2023-10-27 13:58:58.516 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:58.517 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:58:58.519  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+notes+does+a+C+major+chord+consist+of%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":18,"end":25,"spot":"C major","confidence":0.7995,"id":421402,"title":"C major","uri":"http://en.wikipedia.org/wiki/C_major","abstract":"C major (or the key of C) is a major scale based on C, consisting of the pitches C, D, E, F, G, A, and B. C major is one of the most common keys used in music. Its key signature has no flats or sharps. Its relative minor is A minor and its parallel minor is C minor.","label":"C major","categories":["Compositions in C major","Major scales","Musical keys"],"types":[]},{"start":20,"end":31,"spot":"major chord","confidence":0.7794,"id":417032,"title":"Major chord","uri":"http://en.wikipedia.org/wiki/Major_chord","abstract":"In music theory, a major chord is a chord that has a root, a major third, and a perfect fifth. When a chord comprises only these three notes, it is called a major triad. For example, the major triad built on C, called a C major triad, has pitches C–E–G:","label":"Major chord","categories":["Chords"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:58:58.495"} -2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":18,"end":25,"spot":"C major","confidence":0.7995,"id":421402,"title":"C major","uri":"http://en.wikipedia.org/wiki/C_major","abstract":"C major (or the key of C) is a major scale based on C, consisting of the pitches C, D, E, F, G, A, and B. C major is one of the most common keys used in music. Its key signature has no flats or sharps. Its relative minor is A minor and its parallel minor is C minor.","label":"C major","categories":["Compositions in C major","Major scales","Musical keys"],"types":[]} -2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 -2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 -2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":20,"end":31,"spot":"major chord","confidence":0.7794,"id":417032,"title":"Major chord","uri":"http://en.wikipedia.org/wiki/Major_chord","abstract":"In music theory, a major chord is a chord that has a root, a major third, and a perfect fifth. When a chord comprises only these three notes, it is called a major triad. For example, the major triad built on C, called a C major triad, has pitches C–E–G:","label":"Major chord","categories":["Chords"],"types":[]} -2023-10-27 13:58:58.519 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 20 -2023-10-27 13:58:58.520 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 31 -2023-10-27 13:58:58.524 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:58:58.525  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@708f2c77 -2023-10-27 13:58:58.525 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:58.527  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.528  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.528 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.536  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6a5c745a -2023-10-27 13:58:58.536 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:58.539  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.539  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.539 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "20"^^xsd:nonNegativeInteger . - _:b1 oa:end "31"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:58.548 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : processing took: 192 ms -2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.226  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@5398aa6b -2023-10-27 13:59:04.241  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@60b3751e -2023-10-27 13:59:04.242 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:04.242  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:04.243  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:04.254 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f -2023-10-27 13:59:04.254  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql -2023-10-27 13:59:04.257 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 13:59:04.258 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question in which language does the united stated have the shortest short name? -2023-10-27 13:59:04.258 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:04.258 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:04.259 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:59:04.259  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-687015730 -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@168a7f49 -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:59:04.386  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=in+which+language+does+the+united+stated+have+the+shortest+short+name%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":9,"end":17,"spot":"language","confidence":0.671,"id":6880370,"title":"Philosophy of language","uri":"http://en.wikipedia.org/wiki/Philosophy_of_language","abstract":"In analytic philosophy, philosophy of language investigates the nature of language and the relations between language, language users, and the world. Investigations may include inquiry into the nature of meaning, intentionality, reference, the constitution of sentences, concepts, learning, and thought.","label":"Philosophy of language","categories":["Analytic philosophy","Meaning (philosophy of language)","Philosophy of language","Semantics","Semiotics"],"types":[]},{"start":59,"end":69,"spot":"short name","confidence":0.6764,"id":53430,"title":"Nickname","uri":"http://en.wikipedia.org/wiki/Nickname","abstract":"A nickname or short name is a substitute for the proper name of a person, place or thing. It is commonly used to express affection, amusement, a character trait or defamation of character. It is distinct from a pseudonym, stage name or title, although the concepts can overlap. Also known as sobriquet, it is typically informal.","label":"Nickname","categories":["Nicknames"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:59:04.367"} -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":17,"spot":"language","confidence":0.671,"id":6880370,"title":"Philosophy of language","uri":"http://en.wikipedia.org/wiki/Philosophy_of_language","abstract":"In analytic philosophy, philosophy of language investigates the nature of language and the relations between language, language users, and the world. Investigations may include inquiry into the nature of meaning, intentionality, reference, the constitution of sentences, concepts, learning, and thought.","label":"Philosophy of language","categories":["Analytic philosophy","Meaning (philosophy of language)","Philosophy of language","Semantics","Semiotics"],"types":[]} -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 17 -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":59,"end":69,"spot":"short name","confidence":0.6764,"id":53430,"title":"Nickname","uri":"http://en.wikipedia.org/wiki/Nickname","abstract":"A nickname or short name is a substitute for the proper name of a person, place or thing. It is commonly used to express affection, amusement, a character trait or defamation of character. It is distinct from a pseudonym, stage name or title, although the concepts can overlap. Also known as sobriquet, it is typically informal.","label":"Nickname","categories":["Nicknames"],"types":[]} -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 59 -2023-10-27 13:59:04.386 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 69 -2023-10-27 13:59:04.391 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f -2023-10-27 13:59:04.393  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@575401 -2023-10-27 13:59:04.393 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:04.396  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.397  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.397 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "17"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.404  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7bb7da90 -2023-10-27 13:59:04.404 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:04.406  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "69"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.406  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "69"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.406 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "69"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:04.414 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : processing took: 188 ms -2023-10-27 13:59:48.153  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:48.153  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:48.154  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:48.154  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@272f9885 -2023-10-27 13:59:48.161  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@40b27943 -2023-10-27 13:59:48.162 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:48.163  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:48.164  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:48.170 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 13:59:48.170  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql -2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the professions of John Lennon’s sons? -2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question What are the professions of John Lennon’s sons? -2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+are+the+professions+of+John+Lennon%E2%80%99s+sons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+are+the+professions+of+John+Lennon%E2%80%99s+sons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:48.172 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:59:48.173  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-949359546 -2023-10-27 13:59:48.404 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@326e961 -2023-10-27 13:59:48.404 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:59:48.404 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:59:48.405  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+are+the+professions+of+John+Lennon%E2%80%99s+sons%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 13:59:48.405 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":28,"end":39,"spot":"John Lennon","confidence":0.9377,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]},{"start":33,"end":41,"spot":"Lennon’s","confidence":0.7491,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T11:59:48.342"} -2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":28,"end":39,"spot":"John Lennon","confidence":0.9377,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} -2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 -2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 39 -2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":33,"end":41,"spot":"Lennon’s","confidence":0.7491,"id":15852,"title":"John Lennon","uri":"http://en.wikipedia.org/wiki/John_Lennon","abstract":"John Winston Ono Lennon (born John Winston Lennon; 9 October 19408 December 1980) was an English singer, songwriter, musician and peace activist who gained worldwide fame as the founder, co-songwriter, co-lead vocalist and rhythm guitarist of the Beatles. Lennon's work included music, writing, drawings, and film. His songwriting partnership with Paul McCartney remains the most successful in history.","label":"John Lennon","categories":["1940 births","1980 deaths","1980 murders in the United States","20th-century British guitarists","20th-century English male actors","20th-century English male singers","20th-century English singers","Alumni of Liverpool College of Art","Apple Records artists","Atco Records artists","Beat musicians","Best Original Music Score Academy Award winners","Brit Award winners","British harmonica players","British male pianists","COINTELPRO targets","Capitol Records artists","Critics of religions","Deaths by firearm in Manhattan","English anti-war activists","English emigrants to the United States","English expatriates in the United States","English experimental musicians","English male film actors","English male guitarists","English male singer-songwriters","English murder victims","English pacifists","English people convicted of drug offences","English people murdered abroad","English people of Irish descent","English pop guitarists","English pop pianists","English pop singers","English rock guitarists","English rock pianists","English rock singers","English social commentators","English socialists","Geffen Records artists","Grammy Award winners","Grammy Lifetime Achievement Award winners","Ivor Novello Award winners","John Lennon","Juno Award for International Album of the Year winners","Lennon family","Male actors from Liverpool","Male murder victims","Members of the Order of the British Empire","Musicians from Liverpool","Nonviolence advocates","Parlophone artists","People educated at Quarry Bank High School","People from Woolton","People murdered in New York City","Plastic Ono Band members","Political music artists","Polydor Records artists","Rhythm guitarists","The Beatles members","The Dirty Mac members","The Quarrymen members","Transcendental Meditation exponents","Writers who illustrated their own writing"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} -2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 33 -2023-10-27 13:59:48.406 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 41 -2023-10-27 13:59:48.411 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 13:59:48.411  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@201cc615 -2023-10-27 13:59:48.412 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:48.414  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.415  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.415 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.421  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68ab413b -2023-10-27 13:59:48.421 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:59:48.423  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.424  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.424 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:59:48.432 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 279 ms -2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:02.762  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@fbe172c -2023-10-27 14:00:02.772  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20387212 -2023-10-27 14:00:02.773 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:02.775  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:02.776  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:02.785 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c -2023-10-27 14:00:02.785  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c found in urn:graph:f48704a2-e326-4237-b784-257818c7ed9b at http://localhost:8080/sparql -2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second game developed by Piranha Bytes? -2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question What is the second game developed by Piranha Bytes? -2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+game+developed+by+Piranha+Bytes%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+game+developed+by+Piranha+Bytes%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:02.788 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:02.788  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=183468665 -2023-10-27 14:00:02.920 DEBUG 12774 --- [nio-8323-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7cbceb91 -2023-10-27 14:00:02.920 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:02.920 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:00:02.921  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+second+game+developed+by+Piranha+Bytes%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":12,"end":23,"spot":"second game","confidence":0.7798,"id":52753,"title":"Final Fantasy II","uri":"http://en.wikipedia.org/wiki/Final_Fantasy_II","abstract":"is a fantasy role-playing video game developed and published by Square in 1988 for the Family Computer as the second installment of the Final Fantasy series. The game has received numerous enhanced remakes for the WonderSwan Color, the PlayStation, the Game Boy Advance, the PlayStation Portable, iOS, Android and Windows. As neither this game nor Final Fantasy III were initially released outside Japan, Final Fantasy IV was originally released in North America as Final Fantasy II, so as not to confuse players. Following enhanced versions for iOS and Android in 2010 and 2012 respectively, the game was re-released again as part of the 2021 Final Fantasy Pixel Remaster series.","label":"Final Fantasy II","categories":["1988 video games","Android (operating system) games","Fiction about deicide","Fiction about rebellions","Final Fantasy video games","Game Boy Advance games","IOS games","Japanese role-playing video games","Nintendo Entertainment System games","PlayStation (console) games","PlayStation Network games","PlayStation Portable games","Single-player video games","Video games about the afterlife","Video games developed in Japan","Video games featuring female protagonists","Video games scored by Nobuo Uematsu","Video games set in hell","Virtual Console games","Virtual Console games for Wii U","Windows games","WonderSwan Color games"],"types":["http://dbpedia.org/ontology/VideoGame","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Software"]},{"start":37,"end":50,"spot":"Piranha Bytes","confidence":0.9521,"id":780137,"title":"Piranha Bytes","uri":"http://en.wikipedia.org/wiki/Piranha_Bytes","abstract":"Piranha Bytes GmbH is a German video game developer based in Essen. Founded in 1997, it is best known for their Gothic and Risen series of role-playing video games. The studio is a subsidiary of THQ Nordic and, as of August 2021, employs 33 people.","label":"Piranha Bytes","categories":["2019 mergers and acquisitions","Companies based in Essen","German companies established in 1997","THQ Nordic divisions and subsidiaries","Video game companies established in 1997","Video game companies of Germany","Video game development companies"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:00:02.900"} -2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":12,"end":23,"spot":"second game","confidence":0.7798,"id":52753,"title":"Final Fantasy II","uri":"http://en.wikipedia.org/wiki/Final_Fantasy_II","abstract":"is a fantasy role-playing video game developed and published by Square in 1988 for the Family Computer as the second installment of the Final Fantasy series. The game has received numerous enhanced remakes for the WonderSwan Color, the PlayStation, the Game Boy Advance, the PlayStation Portable, iOS, Android and Windows. As neither this game nor Final Fantasy III were initially released outside Japan, Final Fantasy IV was originally released in North America as Final Fantasy II, so as not to confuse players. Following enhanced versions for iOS and Android in 2010 and 2012 respectively, the game was re-released again as part of the 2021 Final Fantasy Pixel Remaster series.","label":"Final Fantasy II","categories":["1988 video games","Android (operating system) games","Fiction about deicide","Fiction about rebellions","Final Fantasy video games","Game Boy Advance games","IOS games","Japanese role-playing video games","Nintendo Entertainment System games","PlayStation (console) games","PlayStation Network games","PlayStation Portable games","Single-player video games","Video games about the afterlife","Video games developed in Japan","Video games featuring female protagonists","Video games scored by Nobuo Uematsu","Video games set in hell","Virtual Console games","Virtual Console games for Wii U","Windows games","WonderSwan Color games"],"types":["http://dbpedia.org/ontology/VideoGame","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Software"]} -2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 12 -2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 23 -2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":37,"end":50,"spot":"Piranha Bytes","confidence":0.9521,"id":780137,"title":"Piranha Bytes","uri":"http://en.wikipedia.org/wiki/Piranha_Bytes","abstract":"Piranha Bytes GmbH is a German video game developer based in Essen. Founded in 1997, it is best known for their Gothic and Risen series of role-playing video games. The studio is a subsidiary of THQ Nordic and, as of August 2021, employs 33 people.","label":"Piranha Bytes","categories":["2019 mergers and acquisitions","Companies based in Essen","German companies established in 1997","THQ Nordic divisions and subsidiaries","Video game companies established in 1997","Video game companies of Germany","Video game development companies"],"types":[]} -2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 37 -2023-10-27 14:00:02.921 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 50 -2023-10-27 14:00:02.927 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c -2023-10-27 14:00:02.927  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c4945d -2023-10-27 14:00:02.928 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:02.932  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.932  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.933 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "23"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.941  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@608fded5 -2023-10-27 14:00:02.942 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:02.943  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.944  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.944 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.951 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : processing took: 189 ms -2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.722  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@5c7e7ee4 -2023-10-27 14:00:40.731  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5841f1b3 -2023-10-27 14:00:40.732 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:40.733  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:40.733  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:40.741 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:40.741  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql -2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? -2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question How many movies were directed by Akira Kurosawa ? -2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:40.742 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:40.743 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:40.743  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-202689186 -2023-10-27 14:00:40.910 DEBUG 12774 --- [nio-8323-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@517bb91d -2023-10-27 14:00:40.911 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:40.911 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:00:40.911  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+movies+were+directed+by+Akira+Kurosawa+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:00:40.911 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":9,"end":15,"spot":"movies","confidence":0.7928,"id":10790,"title":"Cinema of Japan","uri":"http://en.wikipedia.org/wiki/Cinema_of_Japan","abstract":"The, also known domestically as, has a history that spans more than 100 years. Japan has one of the oldest and largest film industries in the world; as of 2021, it was the fourth largest by number of feature films produced. In 2011, Japan produced 411 feature films that earned 54.9% of a box office total of US$2.338 billion. Films have been produced in Japan since 1897, when the first foreign cameramen arrived.","label":"Japanese film","categories":["Cinema of Japan"],"types":[]},{"start":33,"end":47,"spot":"Akira Kurosawa","confidence":0.9576,"id":872,"title":"Akira Kurosawa","uri":"http://en.wikipedia.org/wiki/Akira_Kurosawa","abstract":"was a Japanese filmmaker and painter who directed 30 films in a career spanning over five decades. He is widely regarded as one of the greatest and most influential filmmakers in the history of cinema. Kurosawa displayed a bold, dynamic style, strongly influenced by Western cinema yet distinct from it; he was involved with all aspects of film production.","label":"Akira Kurosawa","categories":["1910 births","1998 deaths","20th-century Japanese writers","20th-century male writers","Academy Honorary Award recipients","Akira Kurosawa","Akira Kurosawa Award winners","Best Director BAFTA Award winners","César Award winners","David di Donatello winners","Directors Guild of America Award winners","Directors of Best Foreign Language Film Academy Award winners","Directors of Golden Lion winners","Directors of Palme d'Or winners","Fellows of the American Academy of Arts and Sciences","Filmmakers who won the Best Foreign Language Film BAFTA Award","Japanese film directors","Japanese film editors","Japanese film producers","Japanese male writers","Japanese screenwriters","Kyoto laureates in Arts and Philosophy","Male screenwriters","People's Honour Award winners","People from Shinagawa","People of the Empire of Japan","Persons of Cultural Merit","Propaganda film directors","Ramon Magsaysay Award winners","Recipients of the Legion of Honour","Recipients of the Order of Culture","Recipients of the Order of Friendship of Peoples","Recipients of the Praemium Imperiale","Samurai film directors","Silver Bear for Best Director recipients","Writers from Tokyo","Yakuza film directors"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":0.5,"timestamp":"2023-10-27T12:00:40.890"} -2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":15,"spot":"movies","confidence":0.7928,"id":10790,"title":"Cinema of Japan","uri":"http://en.wikipedia.org/wiki/Cinema_of_Japan","abstract":"The, also known domestically as, has a history that spans more than 100 years. Japan has one of the oldest and largest film industries in the world; as of 2021, it was the fourth largest by number of feature films produced. In 2011, Japan produced 411 feature films that earned 54.9% of a box office total of US$2.338 billion. Films have been produced in Japan since 1897, when the first foreign cameramen arrived.","label":"Japanese film","categories":["Cinema of Japan"],"types":[]} -2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 -2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 15 -2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":33,"end":47,"spot":"Akira Kurosawa","confidence":0.9576,"id":872,"title":"Akira Kurosawa","uri":"http://en.wikipedia.org/wiki/Akira_Kurosawa","abstract":"was a Japanese filmmaker and painter who directed 30 films in a career spanning over five decades. He is widely regarded as one of the greatest and most influential filmmakers in the history of cinema. Kurosawa displayed a bold, dynamic style, strongly influenced by Western cinema yet distinct from it; he was involved with all aspects of film production.","label":"Akira Kurosawa","categories":["1910 births","1998 deaths","20th-century Japanese writers","20th-century male writers","Academy Honorary Award recipients","Akira Kurosawa","Akira Kurosawa Award winners","Best Director BAFTA Award winners","César Award winners","David di Donatello winners","Directors Guild of America Award winners","Directors of Best Foreign Language Film Academy Award winners","Directors of Golden Lion winners","Directors of Palme d'Or winners","Fellows of the American Academy of Arts and Sciences","Filmmakers who won the Best Foreign Language Film BAFTA Award","Japanese film directors","Japanese film editors","Japanese film producers","Japanese male writers","Japanese screenwriters","Kyoto laureates in Arts and Philosophy","Male screenwriters","People's Honour Award winners","People from Shinagawa","People of the Empire of Japan","Persons of Cultural Merit","Propaganda film directors","Ramon Magsaysay Award winners","Recipients of the Legion of Honour","Recipients of the Order of Culture","Recipients of the Order of Friendship of Peoples","Recipients of the Praemium Imperiale","Samurai film directors","Silver Bear for Best Director recipients","Writers from Tokyo","Yakuza film directors"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} -2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 33 -2023-10-27 14:00:40.912 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 47 -2023-10-27 14:00:40.918 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:40.919  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cafe439 -2023-10-27 14:00:40.919 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:40.921  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.921  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.921 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.930  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6533d766 -2023-10-27 14:00:40.931 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:40.932  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.933  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.933 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:40.940 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : processing took: 218 ms -2023-10-27 14:01:40.507  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.508  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.508  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.508  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@66ba526c -2023-10-27 14:01:40.541  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@687db0cb -2023-10-27 14:01:40.541 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:01:40.542  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:40.542  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:40.551 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 -2023-10-27 14:01:40.551  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql -2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the boiling point of water? -2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question What is the boiling point of water? -2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+boiling+point+of+water%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+boiling+point+of+water%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:01:40.553 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:01:40.553  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-255632866 -2023-10-27 14:01:40.731 DEBUG 12774 --- [nio-8323-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3ce0f176 -2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:01:40.732  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=What+is+the+boiling+point+of+water%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":12,"end":25,"spot":"boiling point","confidence":0.8524,"id":4115,"title":"Boiling point","uri":"http://en.wikipedia.org/wiki/Boiling_point","abstract":"The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.","label":"Boiling point","categories":["Gases","Temperature","Threshold temperatures"],"types":[]},{"start":29,"end":34,"spot":"water","confidence":0.7771,"id":33306,"title":"Water","uri":"http://en.wikipedia.org/wiki/Water","abstract":"Water is an inorganic compound with the chemical formula. It is a transparent, tasteless, odorless, and nearly colorless chemical substance, and it is the main constituent of Earth's hydrosphere and the fluids of all known living organisms (in which it acts as a solvent). It is vital for all known forms of life, despite not providing food energy, or organic micronutrients. Its chemical formula, indicates that each of its molecules contains one oxygen and two hydrogen atoms, connected by covalent bonds. The hydrogen atoms are attached to the oxygen atom at an angle of 104.45°. \"Water\" is also the name of the liquid state of at standard temperature and pressure.","label":"Water","categories":["Articles containing video clips","Hydrogen compounds","Inorganic solvents","Liquids","Materials that expand upon freezing","Nuclear reactor coolants","Oxides","Oxygen compounds","Water"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:01:40.713"} -2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":12,"end":25,"spot":"boiling point","confidence":0.8524,"id":4115,"title":"Boiling point","uri":"http://en.wikipedia.org/wiki/Boiling_point","abstract":"The boiling point of a substance is the temperature at which the vapor pressure of a liquid equals the pressure surrounding the liquid and the liquid changes into a vapor.","label":"Boiling point","categories":["Gases","Temperature","Threshold temperatures"],"types":[]} -2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 12 -2023-10-27 14:01:40.732 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 -2023-10-27 14:01:40.733 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":29,"end":34,"spot":"water","confidence":0.7771,"id":33306,"title":"Water","uri":"http://en.wikipedia.org/wiki/Water","abstract":"Water is an inorganic compound with the chemical formula. It is a transparent, tasteless, odorless, and nearly colorless chemical substance, and it is the main constituent of Earth's hydrosphere and the fluids of all known living organisms (in which it acts as a solvent). It is vital for all known forms of life, despite not providing food energy, or organic micronutrients. Its chemical formula, indicates that each of its molecules contains one oxygen and two hydrogen atoms, connected by covalent bonds. The hydrogen atoms are attached to the oxygen atom at an angle of 104.45°. \"Water\" is also the name of the liquid state of at standard temperature and pressure.","label":"Water","categories":["Articles containing video clips","Hydrogen compounds","Inorganic solvents","Liquids","Materials that expand upon freezing","Nuclear reactor coolants","Oxides","Oxygen compounds","Water"],"types":[]} -2023-10-27 14:01:40.733 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 29 -2023-10-27 14:01:40.733 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 -2023-10-27 14:01:40.738 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 -2023-10-27 14:01:40.738  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ed018a9 -2023-10-27 14:01:40.738 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:40.741  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.741  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.741 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.749  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d21f871 -2023-10-27 14:01:40.749 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:40.751  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.752  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.752 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:40.758 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : processing took: 250 ms -2023-10-27 14:03:08.114  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:08.115  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:08.115  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:08.115  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@cea11f7 -2023-10-27 14:03:08.123  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@55f226 -2023-10-27 14:03:08.123 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:08.124  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:08.124  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:08.129 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf -2023-10-27 14:03:08.130  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql -2023-10-27 14:03:08.132 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? -2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question Which animal participated in a military operation with the Australian Defence Force? -2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:03:08.133 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:03:08.133  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1809127821 -2023-10-27 14:03:08.287 DEBUG 12774 --- [nio-8323-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@580b2bd7 -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:03:08.288  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+animal+participated+in+a+military+operation+with+the+Australian+Defence+Force%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":31,"end":49,"spot":"military operation","confidence":0.6966,"id":666301,"title":"Military operation","uri":"http://en.wikipedia.org/wiki/Military_operation","abstract":"A military operation is the coordinated military actions of a state, or a non-state actor, in response to a developing situation. These actions are designed as a military plan to resolve the situation in the state or actor's favor. Operations may be of a combat or non-combat nature and may be referred to by a code name for the purpose of national security. Military operations are often known for their more generally accepted common usage names than their actual operational objectives.","label":"Military operation","categories":["Military operations"],"types":[]},{"start":59,"end":83,"spot":"Australian Defence Force","confidence":0.8552,"id":67538,"title":"Australian Defence Force","uri":"http://en.wikipedia.org/wiki/Australian_Defence_Force","abstract":"The Australian Defence Force (ADF) is the military organisation responsible for the defence of the Commonwealth of Australia and its national interests. It has three branches: the Royal Australian Navy (RAN), Australian Army and the Royal Australian Air Force (RAAF). The ADF has a strength of just over 90,000 personnel and is supported by the Department of Defence and several other civilian agencies.","label":"Australian Defence Force","categories":["1901 establishments in Australia","Australian Defence Force","Leadership of the Australian Defence Force","Military of Australia","Military units and formations established in 1901"],"types":["http://dbpedia.org/ontology/MilitaryUnit","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:03:08.266"} -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":31,"end":49,"spot":"military operation","confidence":0.6966,"id":666301,"title":"Military operation","uri":"http://en.wikipedia.org/wiki/Military_operation","abstract":"A military operation is the coordinated military actions of a state, or a non-state actor, in response to a developing situation. These actions are designed as a military plan to resolve the situation in the state or actor's favor. Operations may be of a combat or non-combat nature and may be referred to by a code name for the purpose of national security. Military operations are often known for their more generally accepted common usage names than their actual operational objectives.","label":"Military operation","categories":["Military operations"],"types":[]} -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 31 -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":59,"end":83,"spot":"Australian Defence Force","confidence":0.8552,"id":67538,"title":"Australian Defence Force","uri":"http://en.wikipedia.org/wiki/Australian_Defence_Force","abstract":"The Australian Defence Force (ADF) is the military organisation responsible for the defence of the Commonwealth of Australia and its national interests. It has three branches: the Royal Australian Navy (RAN), Australian Army and the Royal Australian Air Force (RAAF). The ADF has a strength of just over 90,000 personnel and is supported by the Department of Defence and several other civilian agencies.","label":"Australian Defence Force","categories":["1901 establishments in Australia","Australian Defence Force","Leadership of the Australian Defence Force","Military of Australia","Military units and formations established in 1901"],"types":["http://dbpedia.org/ontology/MilitaryUnit","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]} -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 59 -2023-10-27 14:03:08.288 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 83 -2023-10-27 14:03:08.294 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf -2023-10-27 14:03:08.296  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@432ec88 -2023-10-27 14:03:08.296 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:08.300  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.300  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.301 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.309  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2b59eaea -2023-10-27 14:03:08.309 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:08.311  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "83"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.311  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "83"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.311 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "59"^^xsd:nonNegativeInteger . - _:b1 oa:end "83"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:08.321 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : processing took: 206 ms -2023-10-27 14:03:47.804  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:47.804  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:47.804  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:47.805  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@f84cb44 -2023-10-27 14:03:47.812  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@14324c4 -2023-10-27 14:03:47.812 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:47.813  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:47.813  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:47.829 DEBUG 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 -2023-10-27 14:03:47.829  INFO 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql -2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? -2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question who is the youngested member in g-idle? -2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=who+is+the+youngested+member+in+g-idle%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=who+is+the+youngested+member+in+g-idle%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:03:47.831 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:03:47.832  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1470625770 -2023-10-27 14:03:48.003 DEBUG 12774 --- [nio-8323-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@53382b03 -2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:03:48.004  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=who+is+the+youngested+member+in+g-idle%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[{"start":32,"end":38,"spot":"g-idle","confidence":0.8609,"id":57057212,"title":"(G)I-dle","uri":"http://en.wikipedia.org/wiki/%28G%29I-dle","abstract":"(G)I-dle (stylized in all caps), is a South Korean girl group formed by Cube Entertainment in 2018. The group consists of five members: Miyeon, Minnie, Soyeon, Yuqi and Shuhua. Originally a sextet, Soojin left the group on August 14, 2021. (G)I-dle debuted on May 2, 2018, with the single \"Latata\" from their first extended play (EP) I Am. They debuted in Japan under U-Cube with Latata on July 31, 2019. Since their debut, they have been considered one of the most successful South Korean girl groups outside of the \"big three\" record labels.","label":"(G)I-dle","categories":["(G)I-dle","2018 establishments in South Korea","Cube Entertainment artists","English-language singers from South Korea","Golden Disc Award winners","Japanese-language singers of South Korea","K-pop music groups","Mandarin-language singers of South Korea","Melon Music Award winners","Musical groups established in 2018","Musical groups from Seoul","South Korean dance music groups","South Korean girl groups","World record holders"],"types":["http://dbpedia.org/ontology/Band","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Group","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:03:47.981"} -2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":32,"end":38,"spot":"g-idle","confidence":0.8609,"id":57057212,"title":"(G)I-dle","uri":"http://en.wikipedia.org/wiki/%28G%29I-dle","abstract":"(G)I-dle (stylized in all caps), is a South Korean girl group formed by Cube Entertainment in 2018. The group consists of five members: Miyeon, Minnie, Soyeon, Yuqi and Shuhua. Originally a sextet, Soojin left the group on August 14, 2021. (G)I-dle debuted on May 2, 2018, with the single \"Latata\" from their first extended play (EP) I Am. They debuted in Japan under U-Cube with Latata on July 31, 2019. Since their debut, they have been considered one of the most successful South Korean girl groups outside of the \"big three\" record labels.","label":"(G)I-dle","categories":["(G)I-dle","2018 establishments in South Korea","Cube Entertainment artists","English-language singers from South Korea","Golden Disc Award winners","Japanese-language singers of South Korea","K-pop music groups","Mandarin-language singers of South Korea","Melon Music Award winners","Musical groups established in 2018","Musical groups from Seoul","South Korean dance music groups","South Korean girl groups","World record holders"],"types":["http://dbpedia.org/ontology/Band","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Group","http://dbpedia.org/ontology/Agent"]} -2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question: 32 -2023-10-27 14:03:48.004 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : Question: 38 -2023-10-27 14:03:48.009 DEBUG 12774 --- [nio-8323-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 -2023-10-27 14:03:48.009  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@aed81ec -2023-10-27 14:03:48.009 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:48.010  INFO 12774 --- [nio-8323-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:48.010  INFO 12774 --- [nio-8323-exec-7] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:48.011 DEBUG 12774 --- [nio-8323-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "32"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:48.018 DEBUG 12774 --- [nio-8323-exec-7] e.w.q.component.QanaryServiceController  : processing took: 214 ms -2023-10-27 14:05:01.246  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.246  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.246  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.247  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@7d735b8e -2023-10-27 14:05:01.257  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d6863e2 -2023-10-27 14:05:01.257 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:01.258  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:01.259  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:01.264 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b -2023-10-27 14:05:01.265  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql -2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? -2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question How many spouses do head of states have on average? -2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+spouses+do+head+of+states+have+on+average%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+spouses+do+head+of+states+have+on+average%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:05:01.266 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:05:01.267  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=307517747 -2023-10-27 14:05:01.442 DEBUG 12774 --- [nio-8323-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@627dca4b -2023-10-27 14:05:01.442 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:05:01.443  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+spouses+do+head+of+states+have+on+average%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":28,"end":34,"spot":"states","confidence":0.7006,"id":18618239,"title":"U.S. state","uri":"http://en.wikipedia.org/wiki/U.S._state","abstract":"In the United States, a state is a constituent political entity, of which there are 50. Bound together in a political union, each state holds governmental jurisdiction over a separate and defined geographic territory where it shares its sovereignty with the federal government. Due to this shared sovereignty, Americans are citizens both of the federal republic and of the state in which they reside. State citizenship and residency are flexible, and no government approval is required to move between states, except for persons restricted by certain types of court orders (such as paroled convicts and children of divorced spouses who share child custody).","label":"U.S. state","categories":["Administrative divisions in North America","First-level administrative divisions by country","Political divisions of the United States","States of the United States","Types of administrative division"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:05:01.419"} -2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":28,"end":34,"spot":"states","confidence":0.7006,"id":18618239,"title":"U.S. state","uri":"http://en.wikipedia.org/wiki/U.S._state","abstract":"In the United States, a state is a constituent political entity, of which there are 50. Bound together in a political union, each state holds governmental jurisdiction over a separate and defined geographic territory where it shares its sovereignty with the federal government. Due to this shared sovereignty, Americans are citizens both of the federal republic and of the state in which they reside. State citizenship and residency are flexible, and no government approval is required to move between states, except for persons restricted by certain types of court orders (such as paroled convicts and children of divorced spouses who share child custody).","label":"U.S. state","categories":["Administrative divisions in North America","First-level administrative divisions by country","Political divisions of the United States","States of the United States","Types of administrative division"],"types":[]} -2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 -2023-10-27 14:05:01.443 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 -2023-10-27 14:05:01.448 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b -2023-10-27 14:05:01.449  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21a9ec92 -2023-10-27 14:05:01.449 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:05:01.450  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:01.451  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:01.451 DEBUG 12774 --- [nio-8323-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "28"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:05:01.456 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : processing took: 210 ms -2023-10-27 14:06:42.839  INFO 12774 --- [io-8323-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:42.839  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:42.840  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:42.840  INFO 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@130e3542 -2023-10-27 14:06:42.850  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@41150dc0 -2023-10-27 14:06:42.850 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:42.851  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:42.852  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:42.857 DEBUG 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:42.857  INFO 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql -2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Who+is+the+creator+of+the+Dinosaurs+tv+show+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:06:42.858 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Who+is+the+creator+of+the+Dinosaurs+tv+show+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:06:42.859 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:06:42.859  INFO 12774 --- [io-8323-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1273782426 -2023-10-27 14:06:42.982 DEBUG 12774 --- [io-8323-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@12cad87e -2023-10-27 14:06:42.982 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:06:42.982 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:06:42.983  INFO 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Who+is+the+creator+of+the+Dinosaurs+tv+show+%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":26,"end":35,"spot":"Dinosaurs","confidence":0.6945,"id":8311,"title":"Dinosaur","uri":"http://en.wikipedia.org/wiki/Dinosaur","abstract":"Dinosaurs are a diverse group of reptiles of the clade Dinosauria. They first appeared during the Triassic period, between 245 and 233.23 million years ago (mya), although the exact origin and timing of the is a subject of active research. They became the dominant terrestrial vertebrates after the Triassic–Jurassic extinction event 201.3 mya and their dominance continued throughout the Jurassic and Cretaceous periods. The fossil record shows that birds are feathered dinosaurs, having evolved from earlier theropods during the Late Jurassic epoch, and are the only dinosaur lineage known to have survived the Cretaceous–Paleogene extinction event approximately 66 mya. Dinosaurs can therefore be divided into avian dinosaurs—birds—and the extinct non-avian dinosaurs, which are all dinosaurs other than birds.","label":"Dinosaur","categories":["Carnian first appearances","Dinosaurs","Extant Late Triassic first appearances","Fossil taxa described in 1842","Taxa named by Richard Owen"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:06:42.964"} -2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":26,"end":35,"spot":"Dinosaurs","confidence":0.6945,"id":8311,"title":"Dinosaur","uri":"http://en.wikipedia.org/wiki/Dinosaur","abstract":"Dinosaurs are a diverse group of reptiles of the clade Dinosauria. They first appeared during the Triassic period, between 245 and 233.23 million years ago (mya), although the exact origin and timing of the is a subject of active research. They became the dominant terrestrial vertebrates after the Triassic–Jurassic extinction event 201.3 mya and their dominance continued throughout the Jurassic and Cretaceous periods. The fossil record shows that birds are feathered dinosaurs, having evolved from earlier theropods during the Late Jurassic epoch, and are the only dinosaur lineage known to have survived the Cretaceous–Paleogene extinction event approximately 66 mya. Dinosaurs can therefore be divided into avian dinosaurs—birds—and the extinct non-avian dinosaurs, which are all dinosaurs other than birds.","label":"Dinosaur","categories":["Carnian first appearances","Dinosaurs","Extant Late Triassic first appearances","Fossil taxa described in 1842","Taxa named by Richard Owen"],"types":[]} -2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question: 26 -2023-10-27 14:06:42.983 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : Question: 35 -2023-10-27 14:06:42.987 DEBUG 12774 --- [io-8323-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:42.988  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@700c5b40 -2023-10-27 14:06:42.988 DEBUG 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:42.990  INFO 12774 --- [io-8323-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:42.990  INFO 12774 --- [io-8323-exec-10] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:42.990 DEBUG 12774 --- [io-8323-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "35"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:42.996 DEBUG 12774 --- [io-8323-exec-10] e.w.q.component.QanaryServiceController  : processing took: 157 ms -2023-10-27 14:07:15.955  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:15.955  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:15.956  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:15.956  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@41f2dd4a -2023-10-27 14:07:15.969  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ef3a39c -2023-10-27 14:07:15.970 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:15.972  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:15.973  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:15.979 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:15.980  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql -2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:15.982 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:07:15.982  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1694464597 -2023-10-27 14:07:16.104 DEBUG 12774 --- [nio-8323-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7692b910 -2023-10-27 14:07:16.104 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:07:16.104 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:07:16.104  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]},{"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]},{"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:16.086"} -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]} -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 21 -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]} -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 38 -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 51 -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]} -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 53 -2023-10-27 14:07:16.105 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 66 -2023-10-27 14:07:16.109 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:16.109  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21dd2205 -2023-10-27 14:07:16.109 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:16.110  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.110  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.110 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.116  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32218ae1 -2023-10-27 14:07:16.116 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:16.117  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.117  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.118 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.123  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e2fc730 -2023-10-27 14:07:16.123 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:16.124  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.124  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.124 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:16.129 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : processing took: 174 ms -2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:33.480  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@4ac19e20 -2023-10-27 14:07:33.487  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b95413c -2023-10-27 14:07:33.487 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:33.488  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:33.488  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:33.493 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 -2023-10-27 14:07:33.493  INFO 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql -2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=has+population+of+Isfahan+increased+at+any+point+after+2006%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=has+population+of+Isfahan+increased+at+any+point+after+2006%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:33.495 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:07:33.495  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1822845999 -2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3c3a1d30 -2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:07:33.621  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=has+population+of+Isfahan+increased+at+any+point+after+2006%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":18,"end":25,"spot":"Isfahan","confidence":0.8428,"id":223149,"title":"Isfahan","uri":"http://en.wikipedia.org/wiki/Isfahan","abstract":"Isfahan (also rendered as Ispahan) is a major city in the Central District of the Isfahan Province of Iran. It is located south of Tehran and is the capital of Isfahan Province. The city has a population of approximately 2,220,000, making it the third-largest city in Iran, after Tehran and Mashhad, and the second-largest metropolitan area.","label":"Isfahan","categories":["Achaemenid cities","Cities in Isfahan Province","Former capitals of Iran","Iranian provincial capitals","Isfahan","Parthian cities","Populated places in Isfahan County","Sasanian cities","Seleucid colonies"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:33.594"} -2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":18,"end":25,"spot":"Isfahan","confidence":0.8428,"id":223149,"title":"Isfahan","uri":"http://en.wikipedia.org/wiki/Isfahan","abstract":"Isfahan (also rendered as Ispahan) is a major city in the Central District of the Isfahan Province of Iran. It is located south of Tehran and is the capital of Isfahan Province. The city has a population of approximately 2,220,000, making it the third-largest city in Iran, after Tehran and Mashhad, and the second-largest metropolitan area.","label":"Isfahan","categories":["Achaemenid cities","Cities in Isfahan Province","Former capitals of Iran","Iranian provincial capitals","Isfahan","Parthian cities","Populated places in Isfahan County","Sasanian cities","Seleucid colonies"],"types":["http://dbpedia.org/ontology/City","http://dbpedia.org/ontology/Settlement","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]} -2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 -2023-10-27 14:07:33.621 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : Question: 25 -2023-10-27 14:07:33.625 DEBUG 12774 --- [nio-8323-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 -2023-10-27 14:07:33.626  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7accb409 -2023-10-27 14:07:33.626 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:33.627  INFO 12774 --- [nio-8323-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.627  INFO 12774 --- [nio-8323-exec-4] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.627 DEBUG 12774 --- [nio-8323-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "18"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:33.633 DEBUG 12774 --- [nio-8323-exec-4] e.w.q.component.QanaryServiceController  : processing took: 153 ms -2023-10-27 14:07:35.290  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:35.290  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:35.290  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:35.291  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@8740b8c -2023-10-27 14:07:35.301  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b62f257 -2023-10-27 14:07:35.301 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:35.303  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:35.303  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:35.309 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:35.309  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql -2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+of+Reinhold+Messner%27s+brothers+still+live%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+of+Reinhold+Messner%27s+brothers+still+live%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:35.311 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:07:35.312  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=85584210 -2023-10-27 14:07:35.360 DEBUG 12774 --- [nio-8323-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@32879dd8 -2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:07:35.361  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+of+Reinhold+Messner%27s+brothers+still+live%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":12,"end":28,"spot":"Reinhold Messner","confidence":0.8609,"id":255486,"title":"Reinhold Messner","uri":"http://en.wikipedia.org/wiki/Reinhold_Messner","abstract":"Reinhold Andreas Messner (born 17 September 1944) is an Italian mountaineer, explorer, and author from South Tyrol. He made the first solo ascent of Mount Everest and, along with Peter Habeler, the first ascent of Everest without supplemental oxygen. He was the first climber to ascend all 14 peaks over above sea level and he also did it without supplementary oxygen. Messner was the first to cross Antarctica and Greenland with neither snowmobiles nor dog sleds and also crossed the Gobi Desert alone. He is widely considered as the greatest mountaineer of all time.","label":"Reinhold Messner","categories":["20th-century Italian politicians","21st-century Italian politicians","Cryptozoologists","Federation of the Greens MEPs","Free soloists","Germanophone Italian people","Italian explorers","Italian mountain climbers","Living people","MEPs for Italy 1999–2004","People from Brixen","Politicians of South Tyrol","Recipients of the Royal Geographical Society Patron's Medal","Summiters of all 14 eight-thousanders","Summiters of the Seven Summits","Year of birth missing (living people)"],"types":["http://dbpedia.org/ontology/Politician","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:07:35.341"} -2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":12,"end":28,"spot":"Reinhold Messner","confidence":0.8609,"id":255486,"title":"Reinhold Messner","uri":"http://en.wikipedia.org/wiki/Reinhold_Messner","abstract":"Reinhold Andreas Messner (born 17 September 1944) is an Italian mountaineer, explorer, and author from South Tyrol. He made the first solo ascent of Mount Everest and, along with Peter Habeler, the first ascent of Everest without supplemental oxygen. He was the first climber to ascend all 14 peaks over above sea level and he also did it without supplementary oxygen. Messner was the first to cross Antarctica and Greenland with neither snowmobiles nor dog sleds and also crossed the Gobi Desert alone. He is widely considered as the greatest mountaineer of all time.","label":"Reinhold Messner","categories":["20th-century Italian politicians","21st-century Italian politicians","Cryptozoologists","Federation of the Greens MEPs","Free soloists","Germanophone Italian people","Italian explorers","Italian mountain climbers","Living people","MEPs for Italy 1999–2004","People from Brixen","Politicians of South Tyrol","Recipients of the Royal Geographical Society Patron's Medal","Summiters of all 14 eight-thousanders","Summiters of the Seven Summits","Year of birth missing (living people)"],"types":["http://dbpedia.org/ontology/Politician","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} -2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 12 -2023-10-27 14:07:35.361 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 -2023-10-27 14:07:35.366 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:35.366  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b70d176 -2023-10-27 14:07:35.366 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:35.368  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.368  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.368 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:35.374 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : processing took: 84 ms -2023-10-27 14:08:04.972  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:04.973  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:04.973  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:04.973  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@41472ae4 -2023-10-27 14:08:04.980  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a9708fb -2023-10-27 14:08:04.981 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:04.982  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:04.982  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:04.987 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 -2023-10-27 14:08:04.987  INFO 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql -2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? -2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question is there female main character in hunter x hunter? -2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:04.988 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:04.989  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-191225740 -2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@68ab5eae -2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:05.153  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=is+there+female+main+character+in+hunter+x+hunter%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:05.153 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":16,"end":30,"spot":"main character","confidence":0.6301,"id":68315,"title":"Protagonist","uri":"http://en.wikipedia.org/wiki/Protagonist","abstract":"A protagonist is the main character of a story. The protagonist makes key decisions that affect the plot, primarily influencing the story and propelling it forward, and is often the character who faces the most significant obstacles. If a story contains a subplot, or is a narrative made up of several stories, then each subplot may have its own protagonist.","label":"Protagonist","categories":["Ancient Greek theatre","Protagonists by role","Psychodrama"],"types":[]},{"start":34,"end":49,"spot":"hunter x hunter","confidence":0.8917,"id":771172,"title":"Hunter × Hunter","uri":"http://en.wikipedia.org/wiki/Hunter_%C3%97_Hunter","abstract":"Hunter × Hunter (stylized as HUNTER×HUNTER and pronounced \"hunter hunter\") is a Japanese manga series written and illustrated by Yoshihiro Togashi. It has been serialized in Shueisha's shōnen manga magazine Weekly Shōnen Jump since March 1998, although the manga has frequently gone on extended hiatuses since 2006. Its chapters have been collected in 37 tankōbon volumes as of November 2022. The story focuses on a young boy named Gon Freecss who discovers that his father, who left him at a young age, is actually a world-renowned Hunter, a licensed professional who specializes in fantastical pursuits such as locating rare or unidentified animal species, treasure hunting, surveying unexplored enclaves, or hunting down lawless individuals. Gon departs on a journey to become a Hunter and eventually find his father. Along the way, Gon meets various other Hunters and encounters the paranormal.","label":"Hunter × Hunter","categories":["1998 manga","1999 anime television series debuts","2002 anime OVAs","2011 Japanese television series debuts","Adventure anime and manga","Animated films based on manga","Anime series based on manga","Coming-of-age anime and manga","Fantasy anime and manga","Fuji TV original programming","Hunter × Hunter","Japanese-language films","Madhouse (company)","Manga adapted into films","Martial arts anime and manga","Muse Communication","Musicals based on anime and manga","Nippon Animation","Nippon TV original programming","Odex","Shueisha franchises","Shueisha manga","Shōnen manga","Toonami","Viz Media anime","Viz Media manga"],"types":["http://dbpedia.org/ontology/Manga","http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Comic"]}],"lang":"en","langConfidence":0.9999,"timestamp":"2023-10-27T12:08:05.135"} -2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":16,"end":30,"spot":"main character","confidence":0.6301,"id":68315,"title":"Protagonist","uri":"http://en.wikipedia.org/wiki/Protagonist","abstract":"A protagonist is the main character of a story. The protagonist makes key decisions that affect the plot, primarily influencing the story and propelling it forward, and is often the character who faces the most significant obstacles. If a story contains a subplot, or is a narrative made up of several stories, then each subplot may have its own protagonist.","label":"Protagonist","categories":["Ancient Greek theatre","Protagonists by role","Psychodrama"],"types":[]} -2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 16 -2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 30 -2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":34,"end":49,"spot":"hunter x hunter","confidence":0.8917,"id":771172,"title":"Hunter × Hunter","uri":"http://en.wikipedia.org/wiki/Hunter_%C3%97_Hunter","abstract":"Hunter × Hunter (stylized as HUNTER×HUNTER and pronounced \"hunter hunter\") is a Japanese manga series written and illustrated by Yoshihiro Togashi. It has been serialized in Shueisha's shōnen manga magazine Weekly Shōnen Jump since March 1998, although the manga has frequently gone on extended hiatuses since 2006. Its chapters have been collected in 37 tankōbon volumes as of November 2022. The story focuses on a young boy named Gon Freecss who discovers that his father, who left him at a young age, is actually a world-renowned Hunter, a licensed professional who specializes in fantastical pursuits such as locating rare or unidentified animal species, treasure hunting, surveying unexplored enclaves, or hunting down lawless individuals. Gon departs on a journey to become a Hunter and eventually find his father. Along the way, Gon meets various other Hunters and encounters the paranormal.","label":"Hunter × Hunter","categories":["1998 manga","1999 anime television series debuts","2002 anime OVAs","2011 Japanese television series debuts","Adventure anime and manga","Animated films based on manga","Anime series based on manga","Coming-of-age anime and manga","Fantasy anime and manga","Fuji TV original programming","Hunter × Hunter","Japanese-language films","Madhouse (company)","Manga adapted into films","Martial arts anime and manga","Muse Communication","Musicals based on anime and manga","Nippon Animation","Nippon TV original programming","Odex","Shueisha franchises","Shueisha manga","Shōnen manga","Toonami","Viz Media anime","Viz Media manga"],"types":["http://dbpedia.org/ontology/Manga","http://dbpedia.org/ontology/WrittenWork","http://dbpedia.org/ontology/Work","http://dbpedia.org/ontology/Comic"]} -2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 -2023-10-27 14:08:05.154 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 -2023-10-27 14:08:05.158 DEBUG 12774 --- [nio-8323-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 -2023-10-27 14:08:05.159  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1dc2b4d -2023-10-27 14:08:05.159 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:05.160  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "30"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.160  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "30"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.160 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "16"^^xsd:nonNegativeInteger . - _:b1 oa:end "30"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.165  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1beb410a -2023-10-27 14:08:05.165 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:05.166  INFO 12774 --- [nio-8323-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.167  INFO 12774 --- [nio-8323-exec-8] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.167 DEBUG 12774 --- [nio-8323-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "34"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:05.172 DEBUG 12774 --- [nio-8323-exec-8] e.w.q.component.QanaryServiceController  : processing took: 199 ms -2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:16.952  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@e41eb39 -2023-10-27 14:08:16.960  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3a986671 -2023-10-27 14:08:16.960 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:16.960  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:16.961  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:16.965 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 -2023-10-27 14:08:16.965  INFO 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql -2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? -2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question Where was Roland Corporation founded? -2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+Roland+Corporation+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+Roland+Corporation+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:16.967 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:16.968  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1597811816 -2023-10-27 14:08:17.096 DEBUG 12774 --- [nio-8323-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4ee20775 -2023-10-27 14:08:17.096 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:17.096 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:17.097  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Where+was+Roland+Corporation+founded%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":10,"end":28,"spot":"Roland Corporation","confidence":0.8609,"id":26531,"title":"Roland Corporation","uri":"http://en.wikipedia.org/wiki/Roland_Corporation","abstract":"is a Japanese manufacturer of electronic musical instruments, electronic equipment, and software. It was founded by Ikutaro Kakehashi in Osaka on 18 April 1972. In 2005, its headquarters relocated to Hamamatsu in Shizuoka Prefecture. It has factories in Malaysia, Taiwan, Japan, and the United States. As of 31 March 2010, it employed 2,699 people. In 2014, it was subject to a management buyout by its CEO, Junichi Miki, supported by Taiyo Pacific Partners.","label":"Roland","categories":["1972 establishments in Japan","Audio equipment manufacturers of Japan","Audio mixing console manufacturers","Companies based in Shizuoka Prefecture","Companies listed on the Tokyo Stock Exchange","Electronics companies established in 1972","Guitar amplifier manufacturers","Guitar manufacturing companies","Hamamatsu","Japanese brands","Manufacturers of professional audio equipment","Musical instrument manufacturing companies of Japan","Percussion instrument manufacturing companies","Roland synthesizers","Synthesizer manufacturing companies of Japan"],"types":["http://dbpedia.org/ontology/Company","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:17.075"} -2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":10,"end":28,"spot":"Roland Corporation","confidence":0.8609,"id":26531,"title":"Roland Corporation","uri":"http://en.wikipedia.org/wiki/Roland_Corporation","abstract":"is a Japanese manufacturer of electronic musical instruments, electronic equipment, and software. It was founded by Ikutaro Kakehashi in Osaka on 18 April 1972. In 2005, its headquarters relocated to Hamamatsu in Shizuoka Prefecture. It has factories in Malaysia, Taiwan, Japan, and the United States. As of 31 March 2010, it employed 2,699 people. In 2014, it was subject to a management buyout by its CEO, Junichi Miki, supported by Taiyo Pacific Partners.","label":"Roland","categories":["1972 establishments in Japan","Audio equipment manufacturers of Japan","Audio mixing console manufacturers","Companies based in Shizuoka Prefecture","Companies listed on the Tokyo Stock Exchange","Electronics companies established in 1972","Guitar amplifier manufacturers","Guitar manufacturing companies","Hamamatsu","Japanese brands","Manufacturers of professional audio equipment","Musical instrument manufacturing companies of Japan","Percussion instrument manufacturing companies","Roland synthesizers","Synthesizer manufacturing companies of Japan"],"types":["http://dbpedia.org/ontology/Company","http://dbpedia.org/ontology/Organisation","http://dbpedia.org/ontology/Agent"]} -2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 10 -2023-10-27 14:08:17.097 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : Question: 28 -2023-10-27 14:08:17.104 DEBUG 12774 --- [nio-8323-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 -2023-10-27 14:08:17.104  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ffb35b3 -2023-10-27 14:08:17.105 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:17.106  INFO 12774 --- [nio-8323-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:17.108  INFO 12774 --- [nio-8323-exec-9] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:17.108 DEBUG 12774 --- [nio-8323-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "10"^^xsd:nonNegativeInteger . - _:b1 oa:end "28"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:17.113 DEBUG 12774 --- [nio-8323-exec-9] e.w.q.component.QanaryServiceController  : processing took: 161 ms -2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:24.298  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@62c26ab4 -2023-10-27 14:08:24.308  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79b9e51e -2023-10-27 14:08:24.308 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:24.309  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:24.309  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:24.316 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:24.316  INFO 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql -2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:24.318 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:24.319  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1694464597 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@401ff474 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:24.450  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+started+first%3A+impressionism+or+expressionism+%28art+movements%29%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]},{"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]},{"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:24.430"} -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":21,"end":34,"spot":"impressionism","confidence":0.8851,"id":15169,"title":"Impressionism","uri":"http://en.wikipedia.org/wiki/Impressionism","abstract":"Impressionism was a 19th-century art movement characterized by relatively small, thin, yet visible brush strokes, open composition, emphasis on accurate depiction of light in its changing qualities (often accentuating the effects of the passage of time), ordinary subject matter, unusual visual angles, and inclusion of movement as a crucial element of human perception and experience. Impressionism originated with a group of Paris-based artists whose independent exhibitions brought them to prominence during the 1870s and 1880s.","label":"Impressionist","categories":["Art movements","Articles which contain graphical timelines","French art","Impressionism"],"types":[]} -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 21 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 34 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":38,"end":51,"spot":"expressionism","confidence":0.8513,"id":102495,"title":"Expressionism","uri":"http://en.wikipedia.org/wiki/Expressionism","abstract":"Expressionism is a modernist movement, initially in poetry and painting, originating in Northern Europe around the beginning of the 20th century. Its typical trait is to present the world solely from a subjective perspective, distorting it radically for emotional effect in order to evoke moods or ideas. Expressionist artists have sought to express the meaning of emotional experience rather than physical reality.","label":"Expressionism","categories":["Expressionism","German literary movements"],"types":[]} -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 38 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 51 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":53,"end":66,"spot":"art movements","confidence":0.751,"id":228568,"title":"Art movement","uri":"http://en.wikipedia.org/wiki/Art_movement","abstract":"An art movement is a tendency or style in art with a specific common philosophy or goal, followed by a group of artists during a specific period of time, (usually a few months, years or decades) or, at least, with the heyday of the movement defined within a number of years. Art movements were especially important in modern art, when each consecutive movement was considered a new avant-garde movement. Western art had been, from the Renaissance up to the middle of the 19th century, underpinned by the logic of perspective and an attempt to reproduce an illusion of visible reality (figurative art). By the end of the 19th century many artists felt a need to create a new style which would encompass the fundamental changes taking place in technology, science and philosophy (abstract art).","label":"Art movement","categories":["Art history","Art movements","Style","Visual arts"],"types":[]} -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 53 -2023-10-27 14:08:24.450 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : Question: 66 -2023-10-27 14:08:24.460 DEBUG 12774 --- [nio-8323-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:24.461  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31f9a109 -2023-10-27 14:08:24.461 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:24.463  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.464  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.464 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.474  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75e233d -2023-10-27 14:08:24.474 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:24.475  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.475  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.475 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.483  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1ebf7b7e -2023-10-27 14:08:24.484 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:24.487  INFO 12774 --- [nio-8323-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.487  INFO 12774 --- [nio-8323-exec-1] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.487 DEBUG 12774 --- [nio-8323-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.495 DEBUG 12774 --- [nio-8323-exec-1] e.w.q.component.QanaryServiceController  : processing took: 197 ms -2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:26.119  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@6d96b5dc -2023-10-27 14:08:26.128  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b3dddbc -2023-10-27 14:08:26.129 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:26.129  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:26.129  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:26.135 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:26.135  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql -2023-10-27 14:08:26.137 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 14:08:26.137 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question How many countries have never been members of the UN? -2023-10-27 14:08:26.138 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+have+never+been+members+of+the+UN%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:26.138 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+have+never+been+members+of+the+UN%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:26.138 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:26.138  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2119996295 -2023-10-27 14:08:26.191 DEBUG 12774 --- [nio-8323-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@33ddbd52 -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:26.192  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+countries+have+never+been+members+of+the+UN%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":2,"annotations":[{"start":9,"end":18,"spot":"countries","confidence":0.699,"id":21754,"title":"Nation","uri":"http://en.wikipedia.org/wiki/Nation","abstract":"A nation is a large type of social organization where a collective identity has emerged from a combination of shared features across a given population, such as language, history, ethnicity, culture, territory and/or society. Some nations are constructed around ethnicity (see ethnic nationalism) while others are bound by political constitutions (see civic nationalism and multiculturalism).","label":"Nation","categories":["Ethnicity","Nation","Pages using page needed template with unknown parameters","Political geography","Political science terminology","Types of communities"],"types":[]},{"start":35,"end":42,"spot":"members","confidence":0.6928,"id":10890716,"title":"Member state of the European Union","uri":"http://en.wikipedia.org/wiki/Member_state_of_the_European_Union","abstract":"The European Union (EU) is a political and economic union of 27 member states that are party to the EU's founding treaties, and thereby subject to the privileges and obligations of membership. They have agreed by the treaties to share their own sovereignty through the institutions of the European Union in certain aspects of government. State governments must agree unanimously in the Council for the union to adopt some policies; for others, collective decisions are made by qualified majority voting. These obligations and sharing of sovereignty within the EU (sometimes referred to as supranational) make it unique among international organisations, as it has established its own legal order which by the provisions of the founding treaties is both legally binding and supreme on all the member states (after a landmark ruling of the ECJ in 1964). A founding principle of the union is subsidiarity, meaning that decisions are taken collectively if and only if they cannot realistically be taken individually.","label":"Member states","categories":["Countries by international organization","Member states of the European Union"],"types":[]},{"start":50,"end":52,"spot":"UN","confidence":0.7326,"id":31769,"title":"United Nations","uri":"http://en.wikipedia.org/wiki/United_Nations","abstract":"The United Nations (UN) is an intergovernmental organization whose stated purposes are to maintain international peace and security, develop friendly relations among nations, achieve international cooperation, and serve as a centre for harmonizing the actions of nations. It is the world's largest international organization. The UN is headquartered in New York City (in the United States, but with certain extraterritorial privileges), and the organization has other offices in Geneva, Nairobi, Vienna, and The Hague, where the International Court of Justice is headquartered.","label":"United Nations","categories":["1945 establishments in the United States","Intergovernmental organizations established by treaty","Organizations awarded Nobel Peace Prizes","Organizations based in New York City","Organizations established in 1945","Peace organizations","Sakharov Prize laureates","United Nations"],"types":["http://dbpedia.org/ontology/Country","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:08:26.170"} -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":18,"spot":"countries","confidence":0.699,"id":21754,"title":"Nation","uri":"http://en.wikipedia.org/wiki/Nation","abstract":"A nation is a large type of social organization where a collective identity has emerged from a combination of shared features across a given population, such as language, history, ethnicity, culture, territory and/or society. Some nations are constructed around ethnicity (see ethnic nationalism) while others are bound by political constitutions (see civic nationalism and multiculturalism).","label":"Nation","categories":["Ethnicity","Nation","Pages using page needed template with unknown parameters","Political geography","Political science terminology","Types of communities"],"types":[]} -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":35,"end":42,"spot":"members","confidence":0.6928,"id":10890716,"title":"Member state of the European Union","uri":"http://en.wikipedia.org/wiki/Member_state_of_the_European_Union","abstract":"The European Union (EU) is a political and economic union of 27 member states that are party to the EU's founding treaties, and thereby subject to the privileges and obligations of membership. They have agreed by the treaties to share their own sovereignty through the institutions of the European Union in certain aspects of government. State governments must agree unanimously in the Council for the union to adopt some policies; for others, collective decisions are made by qualified majority voting. These obligations and sharing of sovereignty within the EU (sometimes referred to as supranational) make it unique among international organisations, as it has established its own legal order which by the provisions of the founding treaties is both legally binding and supreme on all the member states (after a landmark ruling of the ECJ in 1964). A founding principle of the union is subsidiarity, meaning that decisions are taken collectively if and only if they cannot realistically be taken individually.","label":"Member states","categories":["Countries by international organization","Member states of the European Union"],"types":[]} -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 35 -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 42 -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":50,"end":52,"spot":"UN","confidence":0.7326,"id":31769,"title":"United Nations","uri":"http://en.wikipedia.org/wiki/United_Nations","abstract":"The United Nations (UN) is an intergovernmental organization whose stated purposes are to maintain international peace and security, develop friendly relations among nations, achieve international cooperation, and serve as a centre for harmonizing the actions of nations. It is the world's largest international organization. The UN is headquartered in New York City (in the United States, but with certain extraterritorial privileges), and the organization has other offices in Geneva, Nairobi, Vienna, and The Hague, where the International Court of Justice is headquartered.","label":"United Nations","categories":["1945 establishments in the United States","Intergovernmental organizations established by treaty","Organizations awarded Nobel Peace Prizes","Organizations based in New York City","Organizations established in 1945","Peace organizations","Sakharov Prize laureates","United Nations"],"types":["http://dbpedia.org/ontology/Country","http://dbpedia.org/ontology/PopulatedPlace","http://dbpedia.org/ontology/Place","http://dbpedia.org/ontology/Location"]} -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 50 -2023-10-27 14:08:26.192 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 52 -2023-10-27 14:08:26.196 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:26.196  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@d8bb43f -2023-10-27 14:08:26.197 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:26.198  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.198  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.198 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.205  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4aea9c21 -2023-10-27 14:08:26.205 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:26.206  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.206  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.206 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "35"^^xsd:nonNegativeInteger . - _:b1 oa:end "42"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.212  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fbf68fd -2023-10-27 14:08:26.212 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:26.213  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.213  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.213 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:26.219 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : processing took: 100 ms -2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:11.813  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@137085ff -2023-10-27 14:09:11.825  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f2c2d8c -2023-10-27 14:09:11.825 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:11.826  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:11.826  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:11.833 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd -2023-10-27 14:09:11.833  INFO 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd found in urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b at http://localhost:8080/sparql -2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:11.836 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:09:11.837  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=987631136 -2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@62b052a0 -2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:09:12.055  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:12.055 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":3,"annotations":[{"start":9,"end":15,"spot":"Oscars","confidence":0.7615,"id":324,"title":"Academy Awards","uri":"http://en.wikipedia.org/wiki/Academy_Awards","abstract":"The Academy Awards, mainly known as the Oscars, are awards for artistic and technical merit for the film industry. They are presented annually by the Academy of Motion Picture Arts and Sciences (AMPAS), in recognition of excellence in cinematic achievements as assessed by the Academy's voting membership. The Academy Awards are regarded by many as the most prestigious, significant awards in the entertainment industry in the United States and worldwide. The Oscar statuette depicts a knight rendered in the Art Deco style.","label":"Academy Award","categories":["1929 establishments in California","Academy Awards","American annual television specials","American film awards","American live television shows","Annual events in Los Angeles County, California","Awards established in 1929","Cinema of Southern California","Culture of Hollywood, Los Angeles","Events in Los Angeles","Performing arts trophies"],"types":["http://dbpedia.org/ontology/Award"]},{"start":47,"end":61,"spot":"Hayao Miyazaki","confidence":0.907,"id":20312,"title":"Hayao Miyazaki","uri":"http://en.wikipedia.org/wiki/Hayao_Miyazaki","abstract":"is a Japanese animator, filmmaker, and manga artist. A co-founder of Studio Ghibli, he has attained international acclaim as a masterful storyteller and creator of Japanese animated feature films, and is widely regarded as one of the most accomplished filmmakers in the history of animation.","label":"Hayao Miyazaki","categories":["1941 births","Academy Honorary Award recipients","Anime character designers","Anime directors","Annie Award winners","Anti–nuclear power activists","Directors of Best Animated Feature Academy Award winners","Directors of Golden Bear winners","Ecofeminists","Environmental writers","Fantasy artists","Fantasy film directors","Feminist artists","Feminist writers","Gakushuin University alumni","Hayao Miyazaki","Inkpot Award winners","Japanese Shintoists","Japanese animated film directors","Japanese animated film producers","Japanese animators","Japanese cartoonists","Japanese environmentalists","Japanese feminists","Japanese pacifists","Japanese production designers","Japanese screenwriters","Japanese speculative fiction artists","Japanese storyboard artists","Living people","Male feminists","Manga artists","Nebula Award winners","People from Bunkyō","Persons of Cultural Merit","Science Fiction Hall of Fame inductees","Studio Ghibli people","Topcraft","World Masterpiece Theater series"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:09:12.025"} -2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":15,"spot":"Oscars","confidence":0.7615,"id":324,"title":"Academy Awards","uri":"http://en.wikipedia.org/wiki/Academy_Awards","abstract":"The Academy Awards, mainly known as the Oscars, are awards for artistic and technical merit for the film industry. They are presented annually by the Academy of Motion Picture Arts and Sciences (AMPAS), in recognition of excellence in cinematic achievements as assessed by the Academy's voting membership. The Academy Awards are regarded by many as the most prestigious, significant awards in the entertainment industry in the United States and worldwide. The Oscar statuette depicts a knight rendered in the Art Deco style.","label":"Academy Award","categories":["1929 establishments in California","Academy Awards","American annual television specials","American film awards","American live television shows","Annual events in Los Angeles County, California","Awards established in 1929","Cinema of Southern California","Culture of Hollywood, Los Angeles","Events in Los Angeles","Performing arts trophies"],"types":["http://dbpedia.org/ontology/Award"]} -2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 -2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 15 -2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":47,"end":61,"spot":"Hayao Miyazaki","confidence":0.907,"id":20312,"title":"Hayao Miyazaki","uri":"http://en.wikipedia.org/wiki/Hayao_Miyazaki","abstract":"is a Japanese animator, filmmaker, and manga artist. A co-founder of Studio Ghibli, he has attained international acclaim as a masterful storyteller and creator of Japanese animated feature films, and is widely regarded as one of the most accomplished filmmakers in the history of animation.","label":"Hayao Miyazaki","categories":["1941 births","Academy Honorary Award recipients","Anime character designers","Anime directors","Annie Award winners","Anti–nuclear power activists","Directors of Best Animated Feature Academy Award winners","Directors of Golden Bear winners","Ecofeminists","Environmental writers","Fantasy artists","Fantasy film directors","Feminist artists","Feminist writers","Gakushuin University alumni","Hayao Miyazaki","Inkpot Award winners","Japanese Shintoists","Japanese animated film directors","Japanese animated film producers","Japanese animators","Japanese cartoonists","Japanese environmentalists","Japanese feminists","Japanese pacifists","Japanese production designers","Japanese screenwriters","Japanese speculative fiction artists","Japanese storyboard artists","Living people","Male feminists","Manga artists","Nebula Award winners","People from Bunkyō","Persons of Cultural Merit","Science Fiction Hall of Fame inductees","Studio Ghibli people","Topcraft","World Masterpiece Theater series"],"types":["http://dbpedia.org/ontology/Person","http://dbpedia.org/ontology/Species","http://dbpedia.org/ontology/Eukaryote","http://dbpedia.org/ontology/Animal"]} -2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 47 -2023-10-27 14:09:12.056 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : Question: 61 -2023-10-27 14:09:12.061 DEBUG 12774 --- [nio-8323-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd -2023-10-27 14:09:12.061  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@394f97ca -2023-10-27 14:09:12.061 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:12.062  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.062  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.062 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.069  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a15509a -2023-10-27 14:09:12.069 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:12.071  INFO 12774 --- [nio-8323-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.072  INFO 12774 --- [nio-8323-exec-5] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.072 DEBUG 12774 --- [nio-8323-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:12.078 DEBUG 12774 --- [nio-8323-exec-5] e.w.q.component.QanaryServiceController  : processing took: 265 ms -2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.273  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@6d10ea0 -2023-10-27 14:09:13.292  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43644904 -2023-10-27 14:09:13.293 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:13.295  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:13.295  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:13.301 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 -2023-10-27 14:09:13.301  INFO 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql -2023-10-27 14:09:13.304 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? -2023-10-27 14:09:13.304 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question when was the creator of saturday night live born? -2023-10-27 14:09:13.305 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=when+was+the+creator+of+saturday+night+live+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:13.305 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=when+was+the+creator+of+saturday+night+live+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:13.305 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:09:13.306  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1996780094 -2023-10-27 14:09:13.355 DEBUG 12774 --- [nio-8323-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@79a9fa35 -2023-10-27 14:09:13.355 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:13.355 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:09:13.355  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=when+was+the+creator+of+saturday+night+live+born%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":9,"end":20,"spot":"the creator","confidence":0.678,"id":64622550,"title":"The Creator (2023 film)","uri":"http://en.wikipedia.org/wiki/The_Creator_%282023_film%29","abstract":"The Creator is an upcoming American science fiction action thriller film co-produced and directed by Gareth Edwards, who co-wrote the screenplay with Chris Weitz. The film stars John David Washington, Gemma Chan, Ken Watanabe, Sturgill Simpson, Madeleine Yuna Voyles, and Allison Janney. Taking place in a future impacted by a war between the human race and the forces of artificial intelligence, the film's plot follows an ex-special forces agent who is recruited to hunt down and kill the Creator, who has developed a mysterious weapon with the power to end the war by destroying mankind itself.","label":"The Creator","types":[]},{"start":24,"end":43,"spot":"saturday night live","confidence":0.9117,"id":763013,"title":"Saturday Night Live","uri":"http://en.wikipedia.org/wiki/Saturday_Night_Live","abstract":"Saturday Night Live (often abbreviated to SNL) is an American late-night live television sketch comedy, political satire, and variety show created by Lorne Michaels and developed by Dick Ebersol that airs on NBC and Peacock. Michaels currently serves as the program's showrunner. The show’s premiere was hosted by George Carlin on NBC on October 11, 1975, under the original title NBC's Saturday Night. The show's comedy sketches, which often parody contemporary American culture and politics, are performed by a large and varying cast of repertory and newer cast members. Each episode is hosted by a celebrity guest, who usually delivers the opening monologue and performs in sketches with the cast, with featured performances by a musical guest. An episode normally begins with a cold open sketch that ends with someone breaking character and proclaiming, \"Live from New York, it's Saturday Night!\", properly beginning the show.","label":"Saturday Night Live","categories":["1970s American late-night television series","1970s American political comedy television series","1970s American satirical television series","1970s American sketch comedy television series","1970s American variety television series","1975 American television series debuts","1980s American late-night television series","1980s American political comedy television series","1980s American satirical television series","1980s American sketch comedy television series","1980s American variety television series","1990s American late-night television series","1990s American political comedy television series","1990s American satirical television series","1990s American sketch comedy television series","1990s American variety television series","2000s American late-night television series","2000s American political comedy television series","2000s American satirical television series","2000s American sketch comedy television series","2000s American variety television series","2010s American late-night television series","2010s American political comedy television series","2010s American satirical television series","2010s American sketch comedy television series","2010s American variety television series","2020s American late-night television series","2020s American political comedy television series","2020s American satirical television series","2020s American sketch comedy television series","2020s American variety television series","American live television series","American news parodies","American television series with live action and animation","American television shows featuring puppetry","English-language television shows","NBC original programming","Peabody Award-winning television programs","Political satirical television series","Primetime Emmy Award-winning television series","Primetime Emmy Award for Outstanding Variety Series winners","Saturday Night Live","Saturday mass media","Television franchises","Television series by Broadway Video","Television series by Universal Television","Television shows filmed in New York City"],"types":["http://dbpedia.org/ontology/TelevisionShow","http://dbpedia.org/ontology/Work"]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:09:13.334"} -2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":9,"end":20,"spot":"the creator","confidence":0.678,"id":64622550,"title":"The Creator (2023 film)","uri":"http://en.wikipedia.org/wiki/The_Creator_%282023_film%29","abstract":"The Creator is an upcoming American science fiction action thriller film co-produced and directed by Gareth Edwards, who co-wrote the screenplay with Chris Weitz. The film stars John David Washington, Gemma Chan, Ken Watanabe, Sturgill Simpson, Madeleine Yuna Voyles, and Allison Janney. Taking place in a future impacted by a war between the human race and the forces of artificial intelligence, the film's plot follows an ex-special forces agent who is recruited to hunt down and kill the Creator, who has developed a mysterious weapon with the power to end the war by destroying mankind itself.","label":"The Creator","types":[]} -2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 9 -2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 20 -2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":24,"end":43,"spot":"saturday night live","confidence":0.9117,"id":763013,"title":"Saturday Night Live","uri":"http://en.wikipedia.org/wiki/Saturday_Night_Live","abstract":"Saturday Night Live (often abbreviated to SNL) is an American late-night live television sketch comedy, political satire, and variety show created by Lorne Michaels and developed by Dick Ebersol that airs on NBC and Peacock. Michaels currently serves as the program's showrunner. The show’s premiere was hosted by George Carlin on NBC on October 11, 1975, under the original title NBC's Saturday Night. The show's comedy sketches, which often parody contemporary American culture and politics, are performed by a large and varying cast of repertory and newer cast members. Each episode is hosted by a celebrity guest, who usually delivers the opening monologue and performs in sketches with the cast, with featured performances by a musical guest. An episode normally begins with a cold open sketch that ends with someone breaking character and proclaiming, \"Live from New York, it's Saturday Night!\", properly beginning the show.","label":"Saturday Night Live","categories":["1970s American late-night television series","1970s American political comedy television series","1970s American satirical television series","1970s American sketch comedy television series","1970s American variety television series","1975 American television series debuts","1980s American late-night television series","1980s American political comedy television series","1980s American satirical television series","1980s American sketch comedy television series","1980s American variety television series","1990s American late-night television series","1990s American political comedy television series","1990s American satirical television series","1990s American sketch comedy television series","1990s American variety television series","2000s American late-night television series","2000s American political comedy television series","2000s American satirical television series","2000s American sketch comedy television series","2000s American variety television series","2010s American late-night television series","2010s American political comedy television series","2010s American satirical television series","2010s American sketch comedy television series","2010s American variety television series","2020s American late-night television series","2020s American political comedy television series","2020s American satirical television series","2020s American sketch comedy television series","2020s American variety television series","American live television series","American news parodies","American television series with live action and animation","American television shows featuring puppetry","English-language television shows","NBC original programming","Peabody Award-winning television programs","Political satirical television series","Primetime Emmy Award-winning television series","Primetime Emmy Award for Outstanding Variety Series winners","Saturday Night Live","Saturday mass media","Television franchises","Television series by Broadway Video","Television series by Universal Television","Television shows filmed in New York City"],"types":["http://dbpedia.org/ontology/TelevisionShow","http://dbpedia.org/ontology/Work"]} -2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 24 -2023-10-27 14:09:13.356 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : Question: 43 -2023-10-27 14:09:13.362 DEBUG 12774 --- [nio-8323-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 -2023-10-27 14:09:13.362  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c0fdcca -2023-10-27 14:09:13.362 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:13.364  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.364  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.364 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "9"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.679  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@322571e5 -2023-10-27 14:09:13.679 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:13.681  INFO 12774 --- [nio-8323-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.681  INFO 12774 --- [nio-8323-exec-6] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.681 DEBUG 12774 --- [nio-8323-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:13.694 DEBUG 12774 --- [nio-8323-exec-6] e.w.q.component.QanaryServiceController  : processing took: 421 ms -2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:24.727  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@11d67b75 -2023-10-27 14:10:24.735  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@412c1f3c -2023-10-27 14:10:24.735 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:24.737  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:24.737  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:24.746 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 -2023-10-27 14:10:24.746  INFO 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 found in urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96 at http://localhost:8080/sparql -2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? -2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question Which universities have more than 200000 students? -2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:10:24.748 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:10:24.749  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-962009526 -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3f42f159 -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:10:24.928  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+universities+have+more+than+200000+students%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":1,"annotations":[{"start":6,"end":18,"spot":"universities","confidence":0.7669,"id":19725260,"title":"University","uri":"http://en.wikipedia.org/wiki/University","abstract":"A university is an institution of higher (or tertiary) education and research which awards academic degrees in several academic disciplines. Universities typically offer both undergraduate and postgraduate programs. In the United States, the designation is reserved for colleges that have a graduate school.","label":"University","categories":["Educational stages","Higher education","Types of university or college","Universities and colleges"],"types":[]},{"start":41,"end":49,"spot":"students","confidence":0.7604,"id":155526,"title":"Student","uri":"http://en.wikipedia.org/wiki/Student","abstract":"A student is a person enrolled in a school or other educational institution. In the United Kingdom and most commonwealth countries, a \"student\" attends a secondary school or higher (e.g., college or university); those in primary or elementary schools are \"pupils\".","label":"Student","categories":["Students"],"types":[]}],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:10:24.909"} -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":6,"end":18,"spot":"universities","confidence":0.7669,"id":19725260,"title":"University","uri":"http://en.wikipedia.org/wiki/University","abstract":"A university is an institution of higher (or tertiary) education and research which awards academic degrees in several academic disciplines. Universities typically offer both undergraduate and postgraduate programs. In the United States, the designation is reserved for colleges that have a graduate school.","label":"University","categories":["Educational stages","Higher education","Types of university or college","Universities and colleges"],"types":[]} -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 6 -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 18 -2023-10-27 14:10:24.928 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: {"start":41,"end":49,"spot":"students","confidence":0.7604,"id":155526,"title":"Student","uri":"http://en.wikipedia.org/wiki/Student","abstract":"A student is a person enrolled in a school or other educational institution. In the United Kingdom and most commonwealth countries, a \"student\" attends a secondary school or higher (e.g., college or university); those in primary or elementary schools are \"pupils\".","label":"Student","categories":["Students"],"types":[]} -2023-10-27 14:10:24.929 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 41 -2023-10-27 14:10:24.929 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : Question: 49 -2023-10-27 14:10:24.936 DEBUG 12774 --- [nio-8323-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 -2023-10-27 14:10:24.936  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48660f5c -2023-10-27 14:10:24.937 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:24.938  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:24.938  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:24.938 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "6"^^xsd:nonNegativeInteger . - _:b1 oa:end "18"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:24.944  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38698368 -2023-10-27 14:10:24.944 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:24.945  INFO 12774 --- [nio-8323-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:24.946  INFO 12774 --- [nio-8323-exec-2] e.w.q.component.dandelion.ner.Dandelion  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:24.946 DEBUG 12774 --- [nio-8323-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "41"^^xsd:nonNegativeInteger . - _:b1 oa:end "49"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:24.951 DEBUG 12774 --- [nio-8323-exec-2] e.w.q.component.QanaryServiceController  : processing took: 224 ms -2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:27.225  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : process: eu.wdaqua.qanary.commons.QanaryMessage@21922e26 -2023-10-27 14:10:27.232  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f033047 -2023-10-27 14:10:27.232 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:27.233  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:27.233  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:27.238 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb -2023-10-27 14:10:27.239  INFO 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql -2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? -2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : Question Which creator of The OA also acted in it? -2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : URL: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+creator+of+The+OA+also+acted+in+it%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://api.dandelion.eu/datatxt/nex/v1/?text=Which+creator+of+The+OA+also+acted+in+it%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:10:27.240 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:10:27.240  INFO 12774 --- [nio-8323-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1608248862 -2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@33a08a7e -2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:10:27.289  INFO 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : request was actually executed: https://api.dandelion.eu/datatxt/nex/v1/?text=Which+creator+of+The+OA+also+acted+in+it%3F&include=types%2Cabstract%2Ccategories&token=7d29f867b39a432e8884e99f69c194c9 -2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.dandelion.ner.Dandelion  : JSON: {"time":0,"annotations":[],"lang":"en","langConfidence":1.0,"timestamp":"2023-10-27T12:10:27.267"} -2023-10-27 14:10:27.289 DEBUG 12774 --- [nio-8323-exec-3] e.w.q.component.QanaryServiceController  : processing took: 64 ms diff --git a/qanary-component-NER-Dandelion/pom.xml b/qanary-component-NER-Dandelion/pom.xml index ed29d791e..766fc8ce8 100644 --- a/qanary-component-NER-Dandelion/pom.xml +++ b/qanary-component-NER-Dandelion/pom.xml @@ -27,12 +27,6 @@ qa.component ${qanary.component.version} - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-NER-Dandelion/src/main/resources/config/application.properties b/qanary-component-NER-Dandelion/src/main/resources/config/application.properties index 3b0be6e6f..7d167982c 100644 --- a/qanary-component-NER-Dandelion/src/main/resources/config/application.properties +++ b/qanary-component-NER-Dandelion/src/main/resources/config/application.properties @@ -1,4 +1,4 @@ -server.port=8323 +server.port=8088 spring.application.name=DandelionNER spring.application.description=${spring.application.name} is a Qanary component @@ -45,4 +45,4 @@ qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # dandelion configuration dandelion.api.live.test.active=true -dandelion.api.key=7d29f867b39a432e8884e99f69c194c9 +dandelion.api.key= diff --git a/qanary-component-NER-MeaningCloud/pom.xml b/qanary-component-NER-MeaningCloud/pom.xml index dce1b41aa..d4cd03976 100644 --- a/qanary-component-NER-MeaningCloud/pom.xml +++ b/qanary-component-NER-MeaningCloud/pom.xml @@ -27,12 +27,6 @@ qa.component ${qanary.component.version} - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-NER-Ontotext/pom.xml b/qanary-component-NER-Ontotext/pom.xml index 2b4274729..86957df6a 100644 --- a/qanary-component-NER-Ontotext/pom.xml +++ b/qanary-component-NER-Ontotext/pom.xml @@ -27,12 +27,6 @@ qa.component ${qanary.version} - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.springframework.boot spring-boot-starter-web diff --git a/qanary-component-NER-Tagme/nohup.out b/qanary-component-NER-Tagme/nohup.out deleted file mode 100644 index 963dc7026..000000000 --- a/qanary-component-NER-Tagme/nohup.out +++ /dev/null @@ -1,2189 +0,0 @@ - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNER -- TagmeNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:22.779  INFO 9652 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9652 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) -2023-10-27 12:09:22.785 DEBUG 9652 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.848  INFO 9652 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:09:44.317  WARN 9652 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:44.663  WARN 9652 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:44.891  WARN 9652 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tagmeNER' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/tagme/ner/TagmeNER.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.tagme.ner.TagmeNER]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException -2023-10-27 12:09:45.436 ERROR 9652 --- [ main] o.s.boot.SpringApplication  : Application run failed - -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tagmeNER' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/tagme/ner/TagmeNER.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.tagme.ner.TagmeNER]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] - at eu.wdaqua.qanary.component.tagme.ner.Application.main(Application.java:36) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NER-Tagme-3.4.0.jar:3.4.0] -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.tagme.ner.TagmeNER]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 25 common frames omitted -Caused by: eu.wdaqua.qanary.component.tagme.ner.exception.ApiTokenIsNullOrEmptyException: null - at eu.wdaqua.qanary.component.tagme.ner.TagmeNER.(TagmeNER.java:65) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 27 common frames omitted - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNER -- TagmeNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:50.076  INFO 11765 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11765 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) -2023-10-27 12:15:50.108 DEBUG 11765 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:50.109  INFO 11765 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:16:18.018  WARN 11765 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:18.766  WARN 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:19.080  INFO 11765 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 -2023-10-27 12:16:19.096  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated -2023-10-27 12:16:19.237 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 12:16:19.318 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 12:16:19.337 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:19.390  INFO 11765 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 -2023-10-27 12:16:23.620 DEBUG 11765 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@452c8a40 -2023-10-27 12:16:23.629 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:23.659 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:16:23.718  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 12:16:24.421 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":5,"api":"tag","lang":"en","timestamp":"2023-10-27T10:16:23"} -2023-10-27 12:16:24.493 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} -2023-10-27 12:16:24.501 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 -2023-10-27 12:16:24.502 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 12:16:24.503 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 -2023-10-27 12:16:24.506 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} -2023-10-27 12:16:24.507 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 -2023-10-27 12:16:24.507 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 -2023-10-27 12:16:24.507 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 12:16:24.531 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 -2023-10-27 12:16:24.532  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected -2023-10-27 12:16:24.797  INFO 11765 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51e37590 -2023-10-27 12:16:24.799  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated -2023-10-27 12:16:24.800 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 12:16:24.805 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 12:16:24.811 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:24.816  INFO 11765 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 -2023-10-27 12:16:25.173 DEBUG 11765 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@deb3b60 -2023-10-27 12:16:25.173 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:25.173 DEBUG 11765 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 12:16:25.176  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T10:16:25"} -2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} -2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 -2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 -2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} -2023-10-27 12:16:25.177 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 -2023-10-27 12:16:25.178 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 -2023-10-27 12:16:25.178 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 12:16:25.178 DEBUG 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 -2023-10-27 12:16:25.178  INFO 11765 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected -2023-10-27 12:16:25.200  INFO 11765 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ner.TagmeNER@39aa45a1 -2023-10-27 12:16:25.216  INFO 11765 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8091 -spring.application.name = TagmeNER -spring.application.description = TagmeNER is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:25.382  INFO 11765 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl -2023-10-27 12:16:30.841  WARN 11765 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:30.966  INFO 11765 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 12:16:40.674  INFO 11765 --- [ main] e.w.q.component.tagme.ner.Application  : Started Application in 56.524 seconds (JVM running for 67.719) -2023-10-27 12:16:41.683  INFO 11765 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as e931f4a6f745 -2023-10-27 13:37:20.821  WARN 11765 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TagmeNER, managementUrl=http://0.0.0.0:8091/actuator, healthUrl=http://0.0.0.0:8091/actuator/health, serviceUrl=http://0.0.0.0:8091/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNER -- TagmeNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:50.363  INFO 28732 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28732 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) -2023-10-27 13:37:50.442 DEBUG 28732 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:50.476  INFO 28732 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:38:15.109  WARN 28732 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:15.859  WARN 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:15.976  INFO 28732 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1568159 -2023-10-27 13:38:15.985  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated -2023-10-27 13:38:16.060 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:38:16.082 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:38:16.093 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:16.119  INFO 28732 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 -2023-10-27 13:38:19.405 DEBUG 28732 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@534243e4 -2023-10-27 13:38:19.417 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:19.441 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:38:19.457  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:38:19.838 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T11:38:19"} -2023-10-27 13:38:19.887 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} -2023-10-27 13:38:19.889 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 -2023-10-27 13:38:19.890 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 13:38:19.892 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 -2023-10-27 13:38:19.892 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} -2023-10-27 13:38:19.893 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 -2023-10-27 13:38:19.894 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 -2023-10-27 13:38:19.894 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 13:38:19.901 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 -2023-10-27 13:38:19.902  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected -2023-10-27 13:38:20.211  INFO 28732 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@deb3b60 -2023-10-27 13:38:20.212  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated -2023-10-27 13:38:20.212 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:38:20.212 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:38:20.220 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:20.224  INFO 28732 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 -2023-10-27 13:38:20.292 DEBUG 28732 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@701a32 -2023-10-27 13:38:20.292 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:20.293 DEBUG 28732 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:38:20.293  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:38:20.293 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T11:38:20"} -2023-10-27 13:38:20.293 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 13:38:20.294 DEBUG 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 -2023-10-27 13:38:20.294  INFO 28732 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected -2023-10-27 13:38:20.296  INFO 28732 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ner.TagmeNER@73aff8f1 -2023-10-27 13:38:20.310  INFO 28732 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8091 -spring.application.name = TagmeNER -spring.application.description = TagmeNER is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:20.521  INFO 28732 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl -2023-10-27 13:38:25.337  WARN 28732 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:25.466  INFO 28732 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:38:31.050  WARN 28732 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8091 is already in use -2023-10-27 13:38:31.701 ERROR 28732 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8091 was already in use. - -Action: - -Identify and stop the process that's listening on port 8091 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TagmeNER -- TagmeNER is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:54.758  INFO 30123 --- [ main] e.w.q.component.tagme.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30123 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/target/qanary-component-NER-Tagme-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme) -2023-10-27 13:38:54.828 DEBUG 30123 --- [ main] e.w.q.component.tagme.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:54.847  INFO 30123 --- [ main] e.w.q.component.tagme.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:39:16.401  WARN 30123 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:16.754  WARN 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:16.880  INFO 30123 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e61854 -2023-10-27 13:39:16.916  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated -2023-10-27 13:39:17.137 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:39:17.186 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:39:17.209 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:17.253  INFO 30123 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 -2023-10-27 13:39:19.308 DEBUG 30123 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@452c8a40 -2023-10-27 13:39:19.313 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:19.344 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:39:19.361  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:39:19.758 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T11:39:19"} -2023-10-27 13:39:19.774 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} -2023-10-27 13:39:19.775 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 -2023-10-27 13:39:19.777 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 13:39:19.779 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 -2023-10-27 13:39:19.779 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} -2023-10-27 13:39:19.786 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 -2023-10-27 13:39:19.787 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 -2023-10-27 13:39:19.787 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 13:39:19.807 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 -2023-10-27 13:39:19.807  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected -2023-10-27 13:39:20.055  INFO 30123 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51e37590 -2023-10-27 13:39:20.056  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : API live testing is activated -2023-10-27 13:39:20.064 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:39:20.064 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:39:20.097 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:20.097  INFO 30123 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1001966609 -2023-10-27 13:39:20.336 DEBUG 30123 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@deb3b60 -2023-10-27 13:39:20.337 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:20.337 DEBUG 30123 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:39:20.337  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+birthplace+of+Albert+Einstein%3F -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"},{"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"}],"time":2,"api":"tag","lang":"en","timestamp":"2023-10-27T11:39:20"} -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"birthplace","start":12,"link_probability":0.005167291034013033,"rho":0.0025836455170065165,"end":22,"id":11206044,"title":"Place of birth"} -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005167291034013033 -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Albert Einstein","start":26,"link_probability":1,"rho":0.5,"end":41,"id":736,"title":"Albert Einstein"} -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 -2023-10-27 13:39:20.338 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 13:39:20.339 DEBUG 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 26:41 -2023-10-27 13:39:20.339  INFO 30123 --- [ main] e.w.qanary.component.tagme.ner.TagmeNER  : Functionality works as expected -2023-10-27 13:39:20.343  INFO 30123 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.tagme.ner.TagmeNER@39aa45a1 -2023-10-27 13:39:20.366  INFO 30123 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8091 -spring.application.name = TagmeNER -spring.application.description = TagmeNER is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:20.498  INFO 30123 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl -2023-10-27 13:39:25.402  WARN 30123 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-Tagme/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:25.569  INFO 30123 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:39:32.708  WARN 30123 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8091 is already in use -2023-10-27 13:39:33.234 ERROR 30123 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8091 was already in use. - -Action: - -Identify and stop the process that's listening on port 8091 or configure this application to listen on another port. - -2023-10-27 13:53:05.909  INFO 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:05.946  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:06.095  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:06.350  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@1c24512d -2023-10-27 13:53:06.514  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3bb1b7d5 -2023-10-27 13:53:06.548 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:07.296  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:07.297  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:07.393 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:07.394  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql -2023-10-27 13:53:07.399 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? -2023-10-27 13:53:07.399  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question What did the suffragettes stand for? -2023-10-27 13:53:07.399 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+did+the+suffragettes+stand+for%3F -2023-10-27 13:53:07.400 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+did+the+suffragettes+stand+for%3F -2023-10-27 13:53:07.400 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:53:07.511  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=330757041 -2023-10-27 13:53:07.953 DEBUG 11765 --- [nio-8091-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@241f9c79 -2023-10-27 13:53:07.953 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:07.953 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:53:07.954  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+did+the+suffragettes+stand+for%3F -2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"suffragettes","start":13,"link_probability":0.22401434183120728,"rho":0.11200717091560364,"end":25,"id":21671401,"title":"Suffragette"},{"spot":"stand","start":26,"link_probability":0.00850051362067461,"rho":0.004250256810337305,"end":31,"id":288153,"title":"The Stand"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:53:07"} -2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"suffragettes","start":13,"link_probability":0.22401434183120728,"rho":0.11200717091560364,"end":25,"id":21671401,"title":"Suffragette"} -2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 13 -2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 25 -2023-10-27 13:53:07.954 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.22401434183120728 -2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"stand","start":26,"link_probability":0.00850051362067461,"rho":0.004250256810337305,"end":31,"id":288153,"title":"The Stand"} -2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 26 -2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 31 -2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.00850051362067461 -2023-10-27 13:53:07.955 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : processing took: 2021 ms -2023-10-27 13:53:56.375  INFO 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:56.376  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:56.376  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:56.376  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@8f619e -2023-10-27 13:53:56.406  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b0e557 -2023-10-27 13:53:56.407 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:56.408  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:56.409  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:56.416 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 -2023-10-27 13:53:56.416  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql -2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? -2023-10-27 13:53:56.418  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question What is TNFAIP1 ? -2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+TNFAIP1+%3F -2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+TNFAIP1+%3F -2023-10-27 13:53:56.418 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:53:56.418  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=678265572 -2023-10-27 13:53:56.793 DEBUG 11765 --- [nio-8091-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@b41ec02 -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:53:56.794  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+TNFAIP1+%3F -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"TNFAIP1","start":8,"link_probability":1,"rho":0.5,"end":15,"id":15354941,"title":"TNFAIP1"}],"time":0,"api":"tag","lang":"en","timestamp":"2023-10-27T11:53:56"} -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"TNFAIP1","start":8,"link_probability":1,"rho":0.5,"end":15,"id":15354941,"title":"TNFAIP1"} -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 8 -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 13:53:56.794 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 8:15 -2023-10-27 13:53:56.801 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 -2023-10-27 13:53:56.802  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70b9ef65 -2023-10-27 13:53:56.802 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:53:56.814  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:56.814  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:56.815 DEBUG 11765 --- [nio-8091-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:53:56.824 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : processing took: 448 ms -2023-10-27 13:54:32.777  INFO 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:32.779  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:32.779  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:32.779  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@465c6d21 -2023-10-27 13:54:32.786  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@489b8b9a -2023-10-27 13:54:32.787 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:32.788  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:32.789  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:32.797 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c -2023-10-27 13:54:32.797  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql -2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:32.799  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F -2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F -2023-10-27 13:54:32.799 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:54:32.799  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=75150378 -2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@9a681a1 -2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:54:33.061  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Does+Bremerhaven%27s+local+dialing+code+start+with+4%3F -2023-10-27 13:54:33.061 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"Bremerhaven","start":5,"link_probability":0.8195652365684509,"rho":0.4997067451477051,"end":16,"id":18933240,"title":"Bremerhaven"},{"spot":"local","start":19,"link_probability":0.0012918071588501334,"rho":0.16140532493591309,"end":24,"id":17739,"title":"Local area network"},{"spot":"dialing code","start":25,"link_probability":0.037974681705236435,"rho":0.15426623821258545,"end":37,"id":7455543,"title":"Telephone numbers in Europe"},{"spot":"start","start":38,"link_probability":0.0033585745841264725,"rho":0.060777511447668076,"end":43,"id":21747480,"title":"Start (command)"}],"time":25,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:33"} -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Bremerhaven","start":5,"link_probability":0.8195652365684509,"rho":0.4997067451477051,"end":16,"id":18933240,"title":"Bremerhaven"} -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 5 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 16 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.8195652365684509 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 5:16 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"local","start":19,"link_probability":0.0012918071588501334,"rho":0.16140532493591309,"end":24,"id":17739,"title":"Local area network"} -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 19 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 24 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0012918071588501334 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"dialing code","start":25,"link_probability":0.037974681705236435,"rho":0.15426623821258545,"end":37,"id":7455543,"title":"Telephone numbers in Europe"} -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 25 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 37 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.037974681705236435 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"start","start":38,"link_probability":0.0033585745841264725,"rho":0.060777511447668076,"end":43,"id":21747480,"title":"Start (command)"} -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 38 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 43 -2023-10-27 13:54:33.062 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0033585745841264725 -2023-10-27 13:54:33.067 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c -2023-10-27 13:54:33.068  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2cb6d0d1 -2023-10-27 13:54:33.068 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:33.070  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:33.070  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:33.070 DEBUG 11765 --- [nio-8091-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "5"^^xsd:nonNegativeInteger . - _:b1 oa:end "16"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:33.078 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : processing took: 299 ms -2023-10-27 13:54:34.309  INFO 11765 --- [nio-8091-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.310  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.310  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.310  INFO 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@3657430f -2023-10-27 13:54:34.318  INFO 11765 --- [nio-8091-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29f14fac -2023-10-27 13:54:34.318 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:34.320  INFO 11765 --- [nio-8091-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.320  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.330 DEBUG 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 -2023-10-27 13:54:34.330  INFO 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql -2023-10-27 13:54:34.332 DEBUG 11765 --- [nio-8091-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? -2023-10-27 13:54:34.333  INFO 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Question How many things are part of the "One Piece" Franchise? -2023-10-27 13:54:34.333 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F -2023-10-27 13:54:34.333 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F -2023-10-27 13:54:34.333 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:54:34.333  INFO 11765 --- [nio-8091-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1025195629 -2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3c72a06a -2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:54:34.480  INFO 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+things+are+part+of+the+%22One+Piece%22+Franchise%3F -2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"One Piece","start":33,"link_probability":0.2657071053981781,"rho":0.3669940233230591,"end":42,"id":360759,"title":"One Piece"},{"spot":"Franchise","start":44,"link_probability":0.051105622202157974,"rho":0.2596932649612427,"end":53,"id":3592846,"title":"Media franchise"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:54:34"} -2023-10-27 13:54:34.480 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"One Piece","start":33,"link_probability":0.2657071053981781,"rho":0.3669940233230591,"end":42,"id":360759,"title":"One Piece"} -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 33 -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : End: 42 -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.2657071053981781 -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Franchise","start":44,"link_probability":0.051105622202157974,"rho":0.2596932649612427,"end":53,"id":3592846,"title":"Media franchise"} -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 44 -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : End: 53 -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.051105622202157974 -2023-10-27 13:54:34.481 DEBUG 11765 --- [nio-8091-exec-9] e.w.q.component.QanaryServiceController  : processing took: 172 ms -2023-10-27 13:55:04.257  INFO 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:04.257  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:04.258  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:04.258  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@4959b41d -2023-10-27 13:55:04.282  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@472d8011 -2023-10-27 13:55:04.282 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:04.283  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:04.284  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:04.292 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 -2023-10-27 13:55:04.292  INFO 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 found in urn:graph:713e7115-51ec-4875-b710-943891a2849a at http://localhost:8080/sparql -2023-10-27 13:55:04.295 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the mother tongue of the author Chimamanda Ngozi Adichie ? -2023-10-27 13:55:04.296  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question What is the mother tongue of the author Chimamanda Ngozi Adichie ? -2023-10-27 13:55:04.296 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+mother+tongue+of+the+author+Chimamanda+Ngozi+Adichie+%3F -2023-10-27 13:55:04.296 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+mother+tongue+of+the+author+Chimamanda+Ngozi+Adichie+%3F -2023-10-27 13:55:04.296 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:55:04.296  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1812827059 -2023-10-27 13:55:04.487 DEBUG 11765 --- [nio-8091-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@54b4a6fd -2023-10-27 13:55:04.487 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:55:04.487 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:55:04.487  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+is+the+mother+tongue+of+the+author+Chimamanda+Ngozi+Adichie+%3F -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"mother tongue","start":12,"link_probability":0.1734296828508377,"rho":0.08671484142541885,"end":25,"id":263257,"title":"First language"},{"spot":"author","start":33,"link_probability":0.03737027570605278,"rho":0.01868513785302639,"end":39,"id":914,"title":"Author"},{"spot":"Chimamanda Ngozi Adichie","start":40,"link_probability":1,"rho":0.5,"end":64,"id":621845,"title":"Chimamanda Ngozi Adichie"}],"time":4,"api":"tag","lang":"en","timestamp":"2023-10-27T11:55:04"} -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"mother tongue","start":12,"link_probability":0.1734296828508377,"rho":0.08671484142541885,"end":25,"id":263257,"title":"First language"} -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 12 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 25 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.1734296828508377 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"author","start":33,"link_probability":0.03737027570605278,"rho":0.01868513785302639,"end":39,"id":914,"title":"Author"} -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 33 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 39 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.03737027570605278 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Chimamanda Ngozi Adichie","start":40,"link_probability":1,"rho":0.5,"end":64,"id":621845,"title":"Chimamanda Ngozi Adichie"} -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 40 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : End: 64 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 13:55:04.488 DEBUG 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 40:64 -2023-10-27 13:55:04.498 DEBUG 11765 --- [nio-8091-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 -2023-10-27 13:55:04.500  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50c9192a -2023-10-27 13:55:04.500 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:04.502  INFO 11765 --- [nio-8091-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:04.503  INFO 11765 --- [nio-8091-exec-1] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:04.503 DEBUG 11765 --- [nio-8091-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "64"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:04.514 DEBUG 11765 --- [nio-8091-exec-1] e.w.q.component.QanaryServiceController  : processing took: 257 ms -2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:16.644  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@591cefed -2023-10-27 13:55:16.670  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c171a2e -2023-10-27 13:55:16.671 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:16.672  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:16.672  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:16.680 DEBUG 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f -2023-10-27 13:55:16.680  INFO 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql -2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation which forest is bigger, Amazon Rainforest or Congo Basin? -2023-10-27 13:55:16.682  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question which forest is bigger, Amazon Rainforest or Congo Basin? -2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=which+forest+is+bigger%2C+Amazon+Rainforest+or+Congo+Basin%3F -2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=which+forest+is+bigger%2C+Amazon+Rainforest+or+Congo+Basin%3F -2023-10-27 13:55:16.682 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:55:16.683  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1770223929 -2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@28a05e21 -2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:55:16.889  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=which+forest+is+bigger%2C+Amazon+Rainforest+or+Congo+Basin%3F -2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"bigger","start":16,"link_probability":0.0013551971642300487,"rho":6.775985821150243E-4,"end":22,"id":24937527,"title":"Bigger (Backstreet Boys song)"},{"spot":"Amazon Rainforest","start":24,"link_probability":0.9063583612442017,"rho":0.5651211738586426,"end":41,"id":48139,"title":"Amazon rainforest"},{"spot":"Congo Basin","start":45,"link_probability":0.8208954930305481,"rho":0.5223897099494934,"end":56,"id":1866767,"title":"Congo Basin"}],"time":3,"api":"tag","lang":"en","timestamp":"2023-10-27T11:55:16"} -2023-10-27 13:55:16.889 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"bigger","start":16,"link_probability":0.0013551971642300487,"rho":6.775985821150243E-4,"end":22,"id":24937527,"title":"Bigger (Backstreet Boys song)"} -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 16 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0013551971642300487 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Amazon Rainforest","start":24,"link_probability":0.9063583612442017,"rho":0.5651211738586426,"end":41,"id":48139,"title":"Amazon rainforest"} -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 24 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : End: 41 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.9063583612442017 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 24:41 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Congo Basin","start":45,"link_probability":0.8208954930305481,"rho":0.5223897099494934,"end":56,"id":1866767,"title":"Congo Basin"} -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 45 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : End: 56 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.8208954930305481 -2023-10-27 13:55:16.890 DEBUG 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 45:56 -2023-10-27 13:55:16.897 DEBUG 11765 --- [nio-8091-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f -2023-10-27 13:55:16.898  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@167dbf5f -2023-10-27 13:55:16.898 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:16.899  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:16.900  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:16.900 DEBUG 11765 --- [nio-8091-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "41"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:16.906  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22f01d4 -2023-10-27 13:55:16.906 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:16.908  INFO 11765 --- [nio-8091-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "45"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:16.908  INFO 11765 --- [nio-8091-exec-3] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "45"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:16.909 DEBUG 11765 --- [nio-8091-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "45"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:16.916 DEBUG 11765 --- [nio-8091-exec-3] e.w.q.component.QanaryServiceController  : processing took: 272 ms -2023-10-27 13:56:01.160  INFO 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:01.161  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:01.161  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:01.161  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@3d9b409f -2023-10-27 13:56:01.171  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@335cb95c -2023-10-27 13:56:01.171 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:56:01.172  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:01.173  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:01.181 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:01.181  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql -2023-10-27 13:56:01.182 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:01.183  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:01.183 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+American+presidents+followed+in+their+father%E2%80%98s+step+and+also+became+the+president%3F -2023-10-27 13:56:01.183 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+American+presidents+followed+in+their+father%E2%80%98s+step+and+also+became+the+president%3F -2023-10-27 13:56:01.183 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:56:01.183  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1217529055 -2023-10-27 13:56:01.649 DEBUG 11765 --- [nio-8091-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7261b367 -2023-10-27 13:56:01.649 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:56:01.649 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 13:56:01.649  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+American+presidents+followed+in+their+father%E2%80%98s+step+and+also+became+the+president%3F -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"American","start":6,"link_probability":0.12786918878555298,"rho":0.19345925748348236,"end":14,"id":19792942,"title":"Americans"},{"spot":"American presidents","start":6,"link_probability":0.05684754624962807,"rho":0.2519736886024475,"end":25,"id":24113,"title":"President of the United States"},{"spot":"father","start":44,"link_probability":0.003747740527614951,"rho":0.07076490670442581,"end":50,"id":8655005,"title":"Priesthood (Catholic Church)"},{"spot":"step","start":53,"link_probability":0.004248012788593769,"rho":0.058488380163908005,"end":57,"id":2808074,"title":"Stepping (African-American)"},{"spot":"president","start":78,"link_probability":0.06467332690954208,"rho":0.2558865547180176,"end":87,"id":24113,"title":"President of the United States"}],"time":199,"api":"tag","lang":"en","timestamp":"2023-10-27T11:56:01"} -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"American","start":6,"link_probability":0.12786918878555298,"rho":0.19345925748348236,"end":14,"id":19792942,"title":"Americans"} -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 6 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 14 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.12786918878555298 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"American presidents","start":6,"link_probability":0.05684754624962807,"rho":0.2519736886024475,"end":25,"id":24113,"title":"President of the United States"} -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 6 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 25 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.05684754624962807 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"father","start":44,"link_probability":0.003747740527614951,"rho":0.07076490670442581,"end":50,"id":8655005,"title":"Priesthood (Catholic Church)"} -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 44 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 50 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.003747740527614951 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"step","start":53,"link_probability":0.004248012788593769,"rho":0.058488380163908005,"end":57,"id":2808074,"title":"Stepping (African-American)"} -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 53 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 57 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.004248012788593769 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"president","start":78,"link_probability":0.06467332690954208,"rho":0.2558865547180176,"end":87,"id":24113,"title":"President of the United States"} -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 78 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 87 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.06467332690954208 -2023-10-27 13:56:01.650 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : processing took: 489 ms -2023-10-27 14:00:07.657  INFO 11765 --- [nio-8091-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:07.658  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:07.658  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:07.658  INFO 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@4663b638 -2023-10-27 14:00:07.703  INFO 11765 --- [nio-8091-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@523eee7 -2023-10-27 14:00:07.704 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:07.708  INFO 11765 --- [nio-8091-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:07.708  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:07.721 DEBUG 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 -2023-10-27 14:00:07.721  INFO 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql -2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? -2023-10-27 14:00:07.725  INFO 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : Question Which egyptian pyramid is the tallest? -2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+egyptian+pyramid+is+the+tallest%3F -2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+egyptian+pyramid+is+the+tallest%3F -2023-10-27 14:00:07.725 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:07.727  INFO 11765 --- [nio-8091-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1958538761 -2023-10-27 14:00:08.030 DEBUG 11765 --- [nio-8091-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@71dd861b -2023-10-27 14:00:08.030 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:08.030 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:00:08.030  INFO 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=Which+egyptian+pyramid+is+the+tallest%3F -2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"egyptian pyramid","start":6,"link_probability":0.20652173459529877,"rho":0.10326086729764938,"end":22,"id":864667,"title":"Egyptian pyramids"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T12:00:07"} -2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"egyptian pyramid","start":6,"link_probability":0.20652173459529877,"rho":0.10326086729764938,"end":22,"id":864667,"title":"Egyptian pyramids"} -2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 6 -2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : End: 22 -2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.20652173459529877 -2023-10-27 14:00:08.031 DEBUG 11765 --- [nio-8091-exec-2] e.w.q.component.QanaryServiceController  : processing took: 374 ms -2023-10-27 14:03:42.221  INFO 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:42.221  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:42.221  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:42.222  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@1418cfae -2023-10-27 14:03:42.288  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5c794f2c -2023-10-27 14:03:42.288 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:42.294  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:42.294  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:42.308 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 -2023-10-27 14:03:42.308  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 found in urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad at http://localhost:8080/sparql -2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What percentage of Andorra is covered with water? -2023-10-27 14:03:42.311  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question What percentage of Andorra is covered with water? -2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+percentage+of+Andorra+is+covered+with+water%3F -2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+percentage+of+Andorra+is+covered+with+water%3F -2023-10-27 14:03:42.311 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:03:42.311  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1621093784 -2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@66e69089 -2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:03:42.687  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+percentage+of+Andorra+is+covered+with+water%3F -2023-10-27 14:03:42.687 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"percentage","start":5,"link_probability":0.005027962848544121,"rho":0.06523308902978897,"end":15,"id":64493,"title":"Percentage"},{"spot":"Andorra","start":19,"link_probability":0.9778062105178833,"rho":0.5133544206619263,"end":26,"id":600,"title":"Andorra"},{"spot":"covered","start":30,"link_probability":0.009578529745340347,"rho":0.004789264872670174,"end":37,"id":159031,"title":"Cover version"},{"spot":"water","start":43,"link_probability":0.020834363996982574,"rho":0.09758763015270233,"end":48,"id":198725,"title":"Drinking water"}],"time":12,"api":"tag","lang":"en","timestamp":"2023-10-27T12:03:42"} -2023-10-27 14:03:42.688 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"percentage","start":5,"link_probability":0.005027962848544121,"rho":0.06523308902978897,"end":15,"id":64493,"title":"Percentage"} -2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 5 -2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 -2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.005027962848544121 -2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Andorra","start":19,"link_probability":0.9778062105178833,"rho":0.5133544206619263,"end":26,"id":600,"title":"Andorra"} -2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 19 -2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 26 -2023-10-27 14:03:42.691 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.9778062105178833 -2023-10-27 14:03:42.695 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 19:26 -2023-10-27 14:03:42.695 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"covered","start":30,"link_probability":0.009578529745340347,"rho":0.004789264872670174,"end":37,"id":159031,"title":"Cover version"} -2023-10-27 14:03:42.695 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 30 -2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 37 -2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.009578529745340347 -2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"water","start":43,"link_probability":0.020834363996982574,"rho":0.09758763015270233,"end":48,"id":198725,"title":"Drinking water"} -2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 43 -2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 48 -2023-10-27 14:03:42.696 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.020834363996982574 -2023-10-27 14:03:42.706 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 -2023-10-27 14:03:42.715  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34d15644 -2023-10-27 14:03:42.716 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:42.722  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:42.726  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:42.726 DEBUG 11765 --- [nio-8091-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:42.733 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : processing took: 512 ms -2023-10-27 14:04:14.409  INFO 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:14.410  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:14.410  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:14.410  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@38e54986 -2023-10-27 14:04:14.483  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@541f4645 -2023-10-27 14:04:14.483 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:14.486  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:14.486  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:14.492 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd -2023-10-27 14:04:14.493  INFO 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql -2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? -2023-10-27 14:04:14.495  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question What are the titles of the Star Wars series movies? -2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+are+the+titles+of+the+Star+Wars+series+movies%3F -2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+are+the+titles+of+the+Star+Wars+series+movies%3F -2023-10-27 14:04:14.495 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:04:14.495  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1141477862 -2023-10-27 14:04:14.961 DEBUG 11765 --- [nio-8091-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@73230b56 -2023-10-27 14:04:14.961 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:04:14.962  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+are+the+titles+of+the+Star+Wars+series+movies%3F -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"titles","start":13,"link_probability":0.0018105803756043315,"rho":0.12972739338874817,"end":19,"id":12167301,"title":"Zuda Comics"},{"spot":"Star Wars","start":27,"link_probability":0.9175929427146912,"rho":0.6275675296783447,"end":36,"id":26678,"title":"Star Wars"},{"spot":"series","start":37,"link_probability":0.004760534502565861,"rho":0.18950708210468292,"end":43,"id":19508643,"title":"Television program"},{"spot":"movies","start":44,"link_probability":0.01603647880256176,"rho":0.1879962533712387,"end":50,"id":21555729,"title":"Film"}],"time":41,"api":"tag","lang":"en","timestamp":"2023-10-27T12:04:14"} -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"titles","start":13,"link_probability":0.0018105803756043315,"rho":0.12972739338874817,"end":19,"id":12167301,"title":"Zuda Comics"} -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 13 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 19 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0018105803756043315 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Star Wars","start":27,"link_probability":0.9175929427146912,"rho":0.6275675296783447,"end":36,"id":26678,"title":"Star Wars"} -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 27 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 36 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.9175929427146912 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 27:36 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"series","start":37,"link_probability":0.004760534502565861,"rho":0.18950708210468292,"end":43,"id":19508643,"title":"Television program"} -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 37 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 43 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.004760534502565861 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"movies","start":44,"link_probability":0.01603647880256176,"rho":0.1879962533712387,"end":50,"id":21555729,"title":"Film"} -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 44 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : End: 50 -2023-10-27 14:04:14.962 DEBUG 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.01603647880256176 -2023-10-27 14:04:14.967 DEBUG 11765 --- [nio-8091-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd -2023-10-27 14:04:14.968  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6118d5cd -2023-10-27 14:04:14.968 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:14.970  INFO 11765 --- [nio-8091-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.972  INFO 11765 --- [nio-8091-exec-8] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.972 DEBUG 11765 --- [nio-8091-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "36"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:14.978 DEBUG 11765 --- [nio-8091-exec-8] e.w.q.component.QanaryServiceController  : processing took: 568 ms -2023-10-27 14:08:30.480  INFO 11765 --- [nio-8091-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:08:30.486  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:08:30.487  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:08:30.487  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f1199f2 -2023-10-27 14:08:30.602  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71d66860 -2023-10-27 14:08:30.602 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:30.604  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:30.606  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:30.646 DEBUG 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 -2023-10-27 14:08:30.647  INFO 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql -2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? -2023-10-27 14:08:30.649  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? -2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F -2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F -2023-10-27 14:08:30.649 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:30.650  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1004859743 -2023-10-27 14:08:31.032 DEBUG 11765 --- [nio-8091-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@548aa161 -2023-10-27 14:08:31.033 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:31.033 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:08:31.033  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=What+came+first%3A+the+TV+show+The+Flintstones+or+the+end+of+racial+discrimination+in+voting+in+the+US+%3F -2023-10-27 14:08:31.033 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"first","start":10,"link_probability":0.002080680103972554,"rho":0.13693776726722717,"end":15,"id":31653,"title":"First Amendment to the United States Constitution"},{"spot":"TV show","start":21,"link_probability":0.024482225999236107,"rho":0.11718680709600449,"end":28,"id":19508643,"title":"Television program"},{"spot":"Flintstones","start":33,"link_probability":1,"rho":0.5585727691650391,"end":44,"id":51787,"title":"The Flintstones"},{"spot":"end","start":52,"link_probability":0.003478773171082139,"rho":0.04351380094885826,"end":55,"id":26688484,"title":"The End (Lost)"},{"spot":"racial discrimination","start":59,"link_probability":0.17952249944210052,"rho":0.24009808897972107,"end":80,"id":2162835,"title":"Racism in the United States"},{"spot":"voting in the US","start":84,"link_probability":1,"rho":0.6362266540527344,"end":100,"id":924170,"title":"Elections in the United States"}],"time":62,"api":"tag","lang":"en","timestamp":"2023-10-27T12:08:30"} -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"first","start":10,"link_probability":0.002080680103972554,"rho":0.13693776726722717,"end":15,"id":31653,"title":"First Amendment to the United States Constitution"} -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 10 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.002080680103972554 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"TV show","start":21,"link_probability":0.024482225999236107,"rho":0.11718680709600449,"end":28,"id":19508643,"title":"Television program"} -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 21 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 28 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.024482225999236107 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Flintstones","start":33,"link_probability":1,"rho":0.5585727691650391,"end":44,"id":51787,"title":"The Flintstones"} -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 33 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 44 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 33:44 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"end","start":52,"link_probability":0.003478773171082139,"rho":0.04351380094885826,"end":55,"id":26688484,"title":"The End (Lost)"} -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 52 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 55 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.003478773171082139 -2023-10-27 14:08:31.034 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"racial discrimination","start":59,"link_probability":0.17952249944210052,"rho":0.24009808897972107,"end":80,"id":2162835,"title":"Racism in the United States"} -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 59 -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 80 -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.17952249944210052 -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"voting in the US","start":84,"link_probability":1,"rho":0.6362266540527344,"end":100,"id":924170,"title":"Elections in the United States"} -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 84 -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : End: 100 -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 14:08:31.035 DEBUG 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 84:100 -2023-10-27 14:08:31.041 DEBUG 11765 --- [nio-8091-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 -2023-10-27 14:08:31.042  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ab23add -2023-10-27 14:08:31.042 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:31.045  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:31.046  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:31.046 DEBUG 11765 --- [nio-8091-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:31.058  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3ba004f5 -2023-10-27 14:08:31.059 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:31.062  INFO 11765 --- [nio-8091-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "84"^^xsd:nonNegativeInteger . - _:b1 oa:end "100"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:31.063  INFO 11765 --- [nio-8091-exec-4] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "84"^^xsd:nonNegativeInteger . - _:b1 oa:end "100"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:31.063 DEBUG 11765 --- [nio-8091-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "84"^^xsd:nonNegativeInteger . - _:b1 oa:end "100"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:31.071 DEBUG 11765 --- [nio-8091-exec-4] e.w.q.component.QanaryServiceController  : processing took: 584 ms -2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:02.712  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@15198a0c -2023-10-27 14:09:02.726  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43d947aa -2023-10-27 14:09:02.726 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:02.727  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:02.728  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:02.735 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be -2023-10-27 14:09:02.735  INFO 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be found in urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 at http://localhost:8080/sparql -2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? -2023-10-27 14:09:02.738  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question In which country is Oberirrach ? -2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=In+which+country+is+Oberirrach+%3F -2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=In+which+country+is+Oberirrach+%3F -2023-10-27 14:09:02.738 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:09:02.739  INFO 11765 --- [nio-8091-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2111760946 -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@124e4c28 -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:09:02.943  INFO 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=In+which+country+is+Oberirrach+%3F -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"country","start":9,"link_probability":0.018311286345124245,"rho":0.009155643172562122,"end":16,"id":5247,"title":"Country music"}],"time":1,"api":"tag","lang":"en","timestamp":"2023-10-27T12:09:02"} -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"country","start":9,"link_probability":0.018311286345124245,"rho":0.009155643172562122,"end":16,"id":5247,"title":"Country music"} -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 9 -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : End: 16 -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.018311286345124245 -2023-10-27 14:09:02.943 DEBUG 11765 --- [nio-8091-exec-7] e.w.q.component.QanaryServiceController  : processing took: 231 ms -2023-10-27 14:10:12.910  INFO 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:12.910  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:12.911  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:12.911  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : process: eu.wdaqua.qanary.commons.QanaryMessage@22476fdd -2023-10-27 14:10:12.930  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@680711aa -2023-10-27 14:10:12.930 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:12.931  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:12.931  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:12.939 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e -2023-10-27 14:10:12.940  INFO 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e found in urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224 at http://localhost:8080/sparql -2023-10-27 14:10:12.941 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:12.941  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:12.941 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : URL: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F -2023-10-27 14:10:12.941 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F -2023-10-27 14:10:12.942 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:10:12.942  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1421314731 -2023-10-27 14:10:13.190 DEBUG 11765 --- [nio-8091-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4eaa49f -2023-10-27 14:10:13.190 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:10:13.190 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json;charset=UTF-8" -2023-10-27 14:10:13.190  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : request was actually executed: https://tagme.d4science.org/tagme/tag?gcube-token=354d5276-677a-4da3-acfa-30b9101feb8c-843339462&text=How+many+Oscars+did+all+the+movies+directed+by+Hayao+Miyazaki+combined+win%3F -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : JSON: {"test":"5","annotations":[{"spot":"Oscars","start":9,"link_probability":0.3021920621395111,"rho":0.30007290840148926,"end":15,"id":324,"title":"Academy Awards"},{"spot":"movies","start":28,"link_probability":0.01603647880256176,"rho":0.1388285756111145,"end":34,"id":21555729,"title":"Film"},{"spot":"directed","start":35,"link_probability":0.007569239940494299,"rho":0.14300870895385742,"end":43,"id":21554680,"title":"Film director"},{"spot":"Hayao Miyazaki","start":47,"link_probability":1,"rho":0.6224693059921265,"end":61,"id":20312,"title":"Hayao Miyazaki"},{"spot":"combined","start":62,"link_probability":0.0031111694406718016,"rho":0.01150079257786274,"end":70,"id":29612,"title":"Syncretism"},{"spot":"win","start":71,"link_probability":0.0032746954821050167,"rho":0.0016373477410525084,"end":74,"id":15861684,"title":"Winterberg bobsleigh, luge, and skeleton track"}],"time":50,"api":"tag","lang":"en","timestamp":"2023-10-27T12:10:13"} -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Oscars","start":9,"link_probability":0.3021920621395111,"rho":0.30007290840148926,"end":15,"id":324,"title":"Academy Awards"} -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 9 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 15 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.3021920621395111 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"movies","start":28,"link_probability":0.01603647880256176,"rho":0.1388285756111145,"end":34,"id":21555729,"title":"Film"} -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 28 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 34 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.01603647880256176 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"directed","start":35,"link_probability":0.007569239940494299,"rho":0.14300870895385742,"end":43,"id":21554680,"title":"Film director"} -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 35 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 43 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.007569239940494299 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"Hayao Miyazaki","start":47,"link_probability":1,"rho":0.6224693059921265,"end":61,"id":20312,"title":"Hayao Miyazaki"} -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 47 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 61 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 1.0 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Adding link_probability >= 0.65 begin:end 47:61 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"combined","start":62,"link_probability":0.0031111694406718016,"rho":0.01150079257786274,"end":70,"id":29612,"title":"Syncretism"} -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 62 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 70 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0031111694406718016 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Question: {"spot":"win","start":71,"link_probability":0.0032746954821050167,"rho":0.0016373477410525084,"end":74,"id":15861684,"title":"Winterberg bobsleigh, luge, and skeleton track"} -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : Begin: 71 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : End: 74 -2023-10-27 14:10:13.191 DEBUG 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : link_probability: 0.0032746954821050167 -2023-10-27 14:10:13.197 DEBUG 11765 --- [nio-8091-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e -2023-10-27 14:10:13.198  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1dca1a58 -2023-10-27 14:10:13.198 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:13.227  INFO 11765 --- [nio-8091-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:13.228  INFO 11765 --- [nio-8091-exec-5] e.w.qanary.component.tagme.ner.TagmeNER  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:13.228 DEBUG 11765 --- [nio-8091-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:13.234 DEBUG 11765 --- [nio-8091-exec-5] e.w.q.component.QanaryServiceController  : processing took: 324 ms diff --git a/qanary-component-NER-Tagme/pom.xml b/qanary-component-NER-Tagme/pom.xml index 8153e070d..ad21e0437 100644 --- a/qanary-component-NER-Tagme/pom.xml +++ b/qanary-component-NER-Tagme/pom.xml @@ -27,12 +27,6 @@ qa.component ${qanary.component.version} - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-NER-Tagme/src/main/resources/config/application.properties b/qanary-component-NER-Tagme/src/main/resources/config/application.properties index 3441845bc..a4dadccc9 100644 --- a/qanary-component-NER-Tagme/src/main/resources/config/application.properties +++ b/qanary-component-NER-Tagme/src/main/resources/config/application.properties @@ -47,5 +47,5 @@ qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # textrazor service tagme.api.live.test.active=true tagme.api.url=https://tagme.d4science.org/tagme/tag -tagme.api.key=354d5276-677a-4da3-acfa-30b9101feb8c-843339462 +tagme.api.key= tagme.api.threshold=0.65 diff --git a/qanary-component-NER-TextRazor/nohup.out b/qanary-component-NER-TextRazor/nohup.out deleted file mode 100644 index 2fa405b50..000000000 --- a/qanary-component-NER-TextRazor/nohup.out +++ /dev/null @@ -1,5377 +0,0 @@ - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TextRazor -- TextRazor is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:22.767  INFO 9651 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 9651 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) -2023-10-27 12:09:22.824 DEBUG 9651 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.825  INFO 9651 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:09:42.059  WARN 9651 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:42.437  WARN 9651 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:42.598  WARN 9651 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'textRazor' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/textrazor/ner/TextRazor.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.textrazor.ner.TextRazor]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException -2023-10-27 12:09:42.985 ERROR 9651 --- [ main] o.s.boot.SpringApplication  : Application run failed - -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'textRazor' defined in URL [jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar!/BOOT-INF/classes!/eu/wdaqua/qanary/component/textrazor/ner/TextRazor.class]: Bean instantiation via constructor failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.textrazor.ner.TextRazor]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:315) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.autowireConstructor(ConstructorResolver.java:296) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireConstructor(AbstractAutowireCapableBeanFactory.java:1372) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1222) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:582) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:542) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:335) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:333) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:208) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:953) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:918) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:583) ~[spring-context-5.3.19.jar!/:5.3.19] - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:145) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:740) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:415) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:303) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1312) ~[spring-boot-2.6.7.jar!/:2.6.7] - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1301) ~[spring-boot-2.6.7.jar!/:2.6.7] - at eu.wdaqua.qanary.component.textrazor.ner.Application.main(Application.java:36) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.boot.loader.MainMethodRunner.run(MainMethodRunner.java:49) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:108) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.Launcher.launch(Launcher.java:58) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] - at org.springframework.boot.loader.JarLauncher.main(JarLauncher.java:88) ~[qanary-component-NER-TextRazor-3.4.0.jar:3.4.0] -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [eu.wdaqua.qanary.component.textrazor.ner.TextRazor]: Constructor threw exception; nested exception is eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:224) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:117) ~[spring-beans-5.3.19.jar!/:5.3.19] - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:311) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 25 common frames omitted -Caused by: eu.wdaqua.qanary.component.textrazor.ner.exception.ApiTokenIsNullOrEmptyException: null - at eu.wdaqua.qanary.component.textrazor.ner.TextRazor.(TextRazor.java:65) ~[classes!/:3.4.0] - at java.base/jdk.internal.reflect.DirectConstructorHandleAccessor.newInstance(DirectConstructorHandleAccessor.java:62) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:502) ~[na:na] - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:486) ~[na:na] - at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:211) ~[spring-beans-5.3.19.jar!/:5.3.19] - ... 27 common frames omitted - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TextRazor -- TextRazor is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:53.128  INFO 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 11764 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) -2023-10-27 12:15:53.196 DEBUG 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:53.200  INFO 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" -2023-10-27 12:16:18.180  WARN 11764 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:18.860  WARN 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:19.027  INFO 11764 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5966e1 -2023-10-27 12:16:19.051  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated -2023-10-27 12:16:19.256 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 12:16:19.627 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 12:16:19.700 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:19.761 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 12:16:19.879  INFO 11764 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 -2023-10-27 12:16:20.481 DEBUG 11764 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1133ec6e -2023-10-27 12:16:20.710 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:20.739 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 12:16:20.771  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 12:16:21.189 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.00406,"ok":true} -2023-10-27 12:16:21.194 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} -2023-10-27 12:16:21.194 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 12:16:21.194 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 -2023-10-27 12:16:21.194  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected -2023-10-27 12:16:21.381  INFO 11764 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ca27722 -2023-10-27 12:16:21.382  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated -2023-10-27 12:16:21.383 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 12:16:21.389 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 12:16:21.390 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 12:16:21.390 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 12:16:21.390  INFO 11764 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 -2023-10-27 12:16:21.399 DEBUG 11764 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67427b69 -2023-10-27 12:16:21.621 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 12:16:21.622 DEBUG 11764 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 12:16:21.622  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004069,"ok":true} -2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} -2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 12:16:21.623 DEBUG 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 -2023-10-27 12:16:21.624  INFO 11764 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected -2023-10-27 12:16:21.625  INFO 11764 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.textrazor.ner.TextRazor@544630b7 -2023-10-27 12:16:21.643  INFO 11764 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8086 -spring.application.name = TextRazor -spring.application.description = TextRazor is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:21.849  INFO 11764 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl -2023-10-27 12:16:28.819  WARN 11764 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:28.847  INFO 11764 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 12:16:38.914  INFO 11764 --- [ main] e.w.q.c.textrazor.ner.Application  : Started Application in 53.431 seconds (JVM running for 65.988) -2023-10-27 12:16:40.606  INFO 11764 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 187c8cfccbc3 -2023-10-27 13:37:19.122  WARN 11764 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=TextRazor, managementUrl=http://0.0.0.0:8086/actuator, healthUrl=http://0.0.0.0:8086/actuator/health, serviceUrl=http://0.0.0.0:8086/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": localhost:8080 failed to respond; nested exception is org.apache.http.NoHttpResponseException: localhost:8080 failed to respond. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TextRazor -- TextRazor is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:48.447  INFO 28731 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 28731 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) -2023-10-27 13:37:48.461 DEBUG 28731 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:48.462  INFO 28731 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:38:08.954  WARN 28731 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:09.580  WARN 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:09.717  INFO 28731 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c345c5f -2023-10-27 13:38:09.734  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated -2023-10-27 13:38:10.039 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:38:10.570 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:38:10.614 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:10.741 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:38:10.848  INFO 28731 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 -2023-10-27 13:38:11.324 DEBUG 28731 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6063d80a -2023-10-27 13:38:11.575 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:11.629 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:38:11.659  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:38:12.096 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004109,"ok":true} -2023-10-27 13:38:12.121 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} -2023-10-27 13:38:12.134 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 13:38:12.134 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 -2023-10-27 13:38:12.134  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected -2023-10-27 13:38:12.393  INFO 28731 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@23a9ba52 -2023-10-27 13:38:12.394  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated -2023-10-27 13:38:12.405 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:38:12.406 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:38:12.406 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:38:12.407 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:38:12.414  INFO 28731 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 -2023-10-27 13:38:12.420 DEBUG 28731 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@9573b3b -2023-10-27 13:38:12.635 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:38:12.636 DEBUG 28731 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:38:12.636  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004115,"ok":true} -2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} -2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 13:38:12.637 DEBUG 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 -2023-10-27 13:38:12.637  INFO 28731 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected -2023-10-27 13:38:12.638  INFO 28731 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.textrazor.ner.TextRazor@78461bc4 -2023-10-27 13:38:12.651  INFO 28731 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8086 -spring.application.name = TextRazor -spring.application.description = TextRazor is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:12.736  INFO 28731 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl -2023-10-27 13:38:18.523  WARN 28731 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:18.679  INFO 28731 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:38:28.365  WARN 28731 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8086 is already in use -2023-10-27 13:38:28.727 ERROR 28731 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8086 was already in use. - -Action: - -Identify and stop the process that's listening on port 8086 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -TextRazor -- TextRazor is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.4.0 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:55.741  INFO 30122 --- [ main] e.w.q.c.textrazor.ner.Application  : Starting Application v3.4.0 using Java 21 on fedora with PID 30122 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/target/qanary-component-NER-TextRazor-3.4.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor) -2023-10-27 13:38:55.795 DEBUG 30122 --- [ main] e.w.q.c.textrazor.ner.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:55.800  INFO 30122 --- [ main] e.w.q.c.textrazor.ner.Application  : The following 1 profile is active: "local" -2023-10-27 13:39:19.000  WARN 30122 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:19.573  WARN 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:19.647  INFO 30122 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1568159 -2023-10-27 13:39:19.669  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated -2023-10-27 13:39:19.769 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:39:19.889 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:39:19.901 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:19.921 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:39:19.967  INFO 30122 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 -2023-10-27 13:39:20.382 DEBUG 30122 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@54709809 -2023-10-27 13:39:20.598 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:20.627 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:39:20.651  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:39:20.976 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.004575,"ok":true} -2023-10-27 13:39:21.002 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} -2023-10-27 13:39:21.009 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 13:39:21.011 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 -2023-10-27 13:39:21.011  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected -2023-10-27 13:39:21.157  INFO 30122 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9573b3b -2023-10-27 13:39:21.158  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : API live testing is activated -2023-10-27 13:39:21.159 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:39:21.168 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:39:21.179 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:39:21.180 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the birthplace of Albert Einstein?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:39:21.180  INFO 30122 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=726781760 -2023-10-27 13:39:21.189 DEBUG 30122 --- [ main] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@544630b7 -2023-10-27 13:39:21.445 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:39:21.451 DEBUG 30122 --- [ main] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:39:21.451  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:39:21.456 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"}]},"time":0.003601,"ok":true} -2023-10-27 13:39:21.456 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Scientist"],"matchingTokens":[5,6],"entityId":"Albert Einstein","freebaseTypes":["/astronomy/astronomer","/award/award_winner","/film/person_or_entity_appearing_in_film","/music/group_member","/education/academic","/organization/organization_founder","/business/board_member","/organization/organization_member","/people/family_member","/symbols/name_source","/book/book_subject","/award/hall_of_fame_inductee","/food/diet_follower","/book/author","/people/deceased_person","/fictional_universe/person_in_fiction","/visual_art/art_subject","/music/artist","/influence/influence_node","/people/person","/law/inventor","/award/ranked_item","/film/film_subject"],"confidenceScore":2.791,"wikiLink":"http://en.wikipedia.org/wiki/Albert_Einstein","matchedText":"Albert Einstein","freebaseId":"/m/0jcx","relevanceScore":0,"entityEnglishId":"Albert Einstein","startingPos":26,"endingPos":41,"wikidataId":"Q937"} -2023-10-27 13:39:21.459 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 13:39:21.460 DEBUG 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Question: 41 -2023-10-27 13:39:21.460  INFO 30122 --- [ main] e.w.q.component.textrazor.ner.TextRazor  : Functionality works as expected -2023-10-27 13:39:21.461  INFO 30122 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.textrazor.ner.TextRazor@1095f122 -2023-10-27 13:39:21.521  INFO 30122 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8086 -spring.application.name = TextRazor -spring.application.description = TextRazor is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:21.668  INFO 30122 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl -2023-10-27 13:39:25.847  WARN 30122 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-NER-TextRazor/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:25.970  INFO 30122 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=10000,expireAfterAccess=5s -2023-10-27 13:39:32.490  WARN 30122 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8086 is already in use -2023-10-27 13:39:32.821 ERROR 30122 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8086 was already in use. - -Action: - -Identify and stop the process that's listening on port 8086 or configure this application to listen on another port. - -2023-10-27 13:54:11.902  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:11.999  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:12.412  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:12.955  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@37b2e5ac -2023-10-27 13:54:13.114  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f3aaf78 -2023-10-27 13:54:13.152 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:13.513  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:13.514  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:13.950 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 -2023-10-27 13:54:13.951  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql -2023-10-27 13:54:13.969 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? -2023-10-27 13:54:13.969  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question Did Kobe Bryant leave the Lakers when LeBron James joined that team? -2023-10-27 13:54:13.973 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:54:13.974 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:54:13.975 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:54:13.975 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Did Kobe Bryant leave the Lakers when LeBron James joined that team?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:54:14.261  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=647116524 -2023-10-27 13:54:14.447 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6bcbd5cc -2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:54:14.672  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[5],"entityId":"Los Angeles Lakers","freebaseTypes":["/sports/sports_team","/basketball/basketball_team","/business/employer","/organization/organization","/sports/professional_sports_team","/award/award_nominee","/business/business_operation","/award/award_winner"],"confidenceScore":38.64,"wikiLink":"http://en.wikipedia.org/wiki/Los_Angeles_Lakers","matchedText":"Lakers","freebaseId":"/m/0jmk7","relevanceScore":0.3103,"entityEnglishId":"Los Angeles Lakers","startingPos":26,"endingPos":32,"wikidataId":"Q121783","crunchbaseId":"los-angeles-lakers"},{"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"LeBron James","freebaseTypes":["/tv/tv_program_guest","/people/person","/sports/drafted_athlete","/film/person_or_entity_appearing_in_film","/tv/tv_producer","/tv/tv_actor","/award/award_nominee","/tv/tv_writer","/music/artist","/tv/tv_personality","/film/producer","/film/actor","/basketball/basketball_player","/sports/pro_athlete","/award/award_winner","/olympics/olympic_athlete","/business/product_endorser","/book/author","/sports/sports_award_winner","/book/book_subject","/people/measured_person","/business/sponsored_recipient"],"confidenceScore":36.72,"wikiLink":"http://en.wikipedia.org/wiki/LeBron_James","matchedText":"LeBron James","freebaseId":"/m/01jz6d","relevanceScore":0.2458,"entityEnglishId":"LeBron James","startingPos":38,"endingPos":50,"wikidataId":"Q36159"},{"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[1,2],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":48.08,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.3447,"entityEnglishId":"Kobe Bryant","startingPos":4,"endingPos":15,"wikidataId":"Q25369","crunchbaseId":"black-mamba"}]},"time":0.007004,"ok":true} -2023-10-27 13:54:14.672 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[5],"entityId":"Los Angeles Lakers","freebaseTypes":["/sports/sports_team","/basketball/basketball_team","/business/employer","/organization/organization","/sports/professional_sports_team","/award/award_nominee","/business/business_operation","/award/award_winner"],"confidenceScore":38.64,"wikiLink":"http://en.wikipedia.org/wiki/Los_Angeles_Lakers","matchedText":"Lakers","freebaseId":"/m/0jmk7","relevanceScore":0.3103,"entityEnglishId":"Los Angeles Lakers","startingPos":26,"endingPos":32,"wikidataId":"Q121783","crunchbaseId":"los-angeles-lakers"} -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 32 -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"LeBron James","freebaseTypes":["/tv/tv_program_guest","/people/person","/sports/drafted_athlete","/film/person_or_entity_appearing_in_film","/tv/tv_producer","/tv/tv_actor","/award/award_nominee","/tv/tv_writer","/music/artist","/tv/tv_personality","/film/producer","/film/actor","/basketball/basketball_player","/sports/pro_athlete","/award/award_winner","/olympics/olympic_athlete","/business/product_endorser","/book/author","/sports/sports_award_winner","/book/book_subject","/people/measured_person","/business/sponsored_recipient"],"confidenceScore":36.72,"wikiLink":"http://en.wikipedia.org/wiki/LeBron_James","matchedText":"LeBron James","freebaseId":"/m/01jz6d","relevanceScore":0.2458,"entityEnglishId":"LeBron James","startingPos":38,"endingPos":50,"wikidataId":"Q36159"} -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 50 -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[1,2],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":48.08,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.3447,"entityEnglishId":"Kobe Bryant","startingPos":4,"endingPos":15,"wikidataId":"Q25369","crunchbaseId":"black-mamba"} -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 4 -2023-10-27 13:54:14.673 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 15 -2023-10-27 13:54:14.681 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 -2023-10-27 13:54:14.681  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5384080f -2023-10-27 13:54:14.681 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:14.693  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.694  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.694 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "26"^^xsd:nonNegativeInteger . - _:b1 oa:end "32"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.703  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cdb6461 -2023-10-27 13:54:14.704 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:14.706  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.706  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.706 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "50"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.714  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@463b285c -2023-10-27 13:54:14.714 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:14.716  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.717  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.717 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "4"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:14.723 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 2745 ms -2023-10-27 13:54:17.575  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:17.576  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:17.576  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:17.576  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f27a5aa -2023-10-27 13:54:17.584  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@25c21e8a -2023-10-27 13:54:17.585 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:17.586  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:17.587  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:17.596 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d -2023-10-27 13:54:17.597  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d found in urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc at http://localhost:8080/sparql -2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 13:54:17.599  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question How many countries have never been members of the UN? -2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:54:17.599 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many countries have never been members of the UN?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:54:17.600  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=369039952 -2023-10-27 13:54:17.601 DEBUG 11764 --- [nio-8086-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7930c74 -2023-10-27 13:54:17.818 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:17.818 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:54:17.818  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:54:17.819 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true},"time":0.002991,"ok":true} -2023-10-27 13:54:17.819 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : processing took: 243 ms -2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:25.902  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@4ece3469 -2023-10-27 13:55:25.920  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4009d3c0 -2023-10-27 13:55:25.920 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:25.922  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:25.922  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:25.930 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 -2023-10-27 13:55:25.930  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql -2023-10-27 13:55:25.933 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:25.933  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:25.933 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:55:25.933 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:55:25.934 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:55:25.934 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the website of NPR's “Tiny Desk Concert”?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:55:25.934  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=143736597 -2023-10-27 13:55:26.097 DEBUG 11764 --- [nio-8086-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@44365f19 -2023-10-27 13:55:26.309 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:55:26.309 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:55:26.310  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:55:26.310 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Organisation","Broadcaster","BroadcastNetwork","TelevisionStation"],"matchingTokens":[5],"entityId":"NPR","freebaseTypes":["/computer/software_developer","/award/award_winner","/broadcast/producer","/business/employer","/media_common/quotation_source","/book/book_subject","/government/polling_authority","/business/customer","/business/consumer_company","/business/business_operation","/organization/organization","/broadcast/radio_network","/organization/non_profit_organization","/internet/social_network_user"],"confidenceScore":2.935,"wikiLink":"http://en.wikipedia.org/wiki/NPR","matchedText":"NPR","freebaseId":"/m/0c0sl","relevanceScore":0,"entityEnglishId":"NPR","startingPos":23,"endingPos":26,"wikidataId":"Q671510","crunchbaseId":"npr","permid":"4296094825"}]},"time":0.004029,"ok":true} -2023-10-27 13:55:26.310 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Organisation","Broadcaster","BroadcastNetwork","TelevisionStation"],"matchingTokens":[5],"entityId":"NPR","freebaseTypes":["/computer/software_developer","/award/award_winner","/broadcast/producer","/business/employer","/media_common/quotation_source","/book/book_subject","/government/polling_authority","/business/customer","/business/consumer_company","/business/business_operation","/organization/organization","/broadcast/radio_network","/organization/non_profit_organization","/internet/social_network_user"],"confidenceScore":2.935,"wikiLink":"http://en.wikipedia.org/wiki/NPR","matchedText":"NPR","freebaseId":"/m/0c0sl","relevanceScore":0,"entityEnglishId":"NPR","startingPos":23,"endingPos":26,"wikidataId":"Q671510","crunchbaseId":"npr","permid":"4296094825"} -2023-10-27 13:55:26.310 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 -2023-10-27 13:55:26.312 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 26 -2023-10-27 13:55:26.318 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 -2023-10-27 13:55:26.318  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@134d9fb -2023-10-27 13:55:26.318 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:26.320  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:26.320  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:26.320 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "26"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:26.328 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : processing took: 426 ms -2023-10-27 13:57:22.027  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:22.030  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:22.031  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:22.031  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@7c17a909 -2023-10-27 13:57:22.052  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72d058fb -2023-10-27 13:57:22.052 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:22.054  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:22.054  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:22.068 DEBUG 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:22.068  INFO 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql -2023-10-27 13:57:22.071 DEBUG 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? -2023-10-27 13:57:22.071  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question What is the twitter name of Running Wild? -2023-10-27 13:57:22.071 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:57:22.072 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:57:22.072 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:57:22.072 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the twitter name of Running Wild?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:57:22.072  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=481231456 -2023-10-27 13:57:22.212 DEBUG 11764 --- [nio-8086-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@76efc279 -2023-10-27 13:57:22.424 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:22.425 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:57:22.425  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:57:22.425 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[3],"entityId":"Twitter","freebaseTypes":["/media_common/quotation_source","/business/employer","/award/award_nominated_work","/book/book_subject","/media_common/quotation_subject","/organization/organization_partnership","/business/customer","/award/award_winning_work","/internet/website"],"confidenceScore":1.506,"wikiLink":"http://en.wikipedia.org/wiki/Twitter","matchedText":"twitter","freebaseId":"/m/0289n8t","relevanceScore":0,"entityEnglishId":"Twitter","startingPos":12,"endingPos":19,"wikidataId":"Q918","crunchbaseId":"twitter","lei":"549300I8RX485XMK6836","permid":"4296301199"}]},"time":0.00579,"ok":true} -2023-10-27 13:57:22.433 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[3],"entityId":"Twitter","freebaseTypes":["/media_common/quotation_source","/business/employer","/award/award_nominated_work","/book/book_subject","/media_common/quotation_subject","/organization/organization_partnership","/business/customer","/award/award_winning_work","/internet/website"],"confidenceScore":1.506,"wikiLink":"http://en.wikipedia.org/wiki/Twitter","matchedText":"twitter","freebaseId":"/m/0289n8t","relevanceScore":0,"entityEnglishId":"Twitter","startingPos":12,"endingPos":19,"wikidataId":"Q918","crunchbaseId":"twitter","lei":"549300I8RX485XMK6836","permid":"4296301199"} -2023-10-27 13:57:22.434 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question: 12 -2023-10-27 13:57:22.434 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 -2023-10-27 13:57:22.455 DEBUG 11764 --- [nio-8086-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:22.457  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33ed52c0 -2023-10-27 13:57:22.457 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:22.465  INFO 11764 --- [nio-8086-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:22.466  INFO 11764 --- [nio-8086-exec-6] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:22.466 DEBUG 11764 --- [nio-8086-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "12"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:22.485 DEBUG 11764 --- [nio-8086-exec-6] e.w.q.component.QanaryServiceController  : processing took: 455 ms -2023-10-27 13:57:29.905  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:29.905  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:29.905  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:29.906  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@3eabd903 -2023-10-27 13:57:29.937  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@306c20a6 -2023-10-27 13:57:29.937 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:29.948  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:29.949  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:29.974 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 -2023-10-27 13:57:29.975  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql -2023-10-27 13:57:29.985 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many different colors can water take? -2023-10-27 13:57:29.986  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question How many different colors can water take? -2023-10-27 13:57:29.986 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:57:29.986 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:57:29.986 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:57:29.987 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many different colors can water take?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:57:29.987  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1937681384 -2023-10-27 13:57:30.098 DEBUG 11764 --- [nio-8086-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3453b273 -2023-10-27 13:57:30.316 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:30.317 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:57:30.317  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:57:30.317 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true},"time":0.008865,"ok":true} -2023-10-27 13:57:30.317 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : processing took: 412 ms -2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:04.598  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@50a8452d -2023-10-27 13:58:04.605  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e6fb148 -2023-10-27 13:58:04.606 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:04.607  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:04.607  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:04.614 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:04.614  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql -2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:04.616  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 13:58:04.616 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Who is the oldest cast member of the Netflix show “Queer Eye” ?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 13:58:04.616  INFO 11764 --- [io-8086-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=264905833 -2023-10-27 13:58:04.762 DEBUG 11764 --- [io-8086-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@5a502e5d -2023-10-27 13:58:05.003 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:05.003 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 13:58:05.003  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 13:58:05.003 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[8],"entityId":"Netflix","freebaseTypes":["/business/business_operation","/award/award_nominee","/business/issuer","/business/employer","/award/award_winner","/venture_capital/venture_funded_company","/tv/tv_network","/internet/website_owner","/dataworld/information_source","/organization/organization"],"confidenceScore":4.163,"wikiLink":"http://en.wikipedia.org/wiki/Netflix","matchedText":"Netflix","freebaseId":"/m/017rf_","relevanceScore":0.01622,"entityEnglishId":"Netflix","startingPos":37,"endingPos":44,"wikidataId":"Q907311","crunchbaseId":"netflix","lei":"549300Y7VHGU0I7CE873","figi":"BBG001SF6L46","permid":"4295902158"},{"id":1,"type":["Work","TelevisionShow"],"matchingTokens":[10,11,12,13],"entityId":"Queer Eye (2018 TV series)","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.209,"wikiLink":"http://en.wikipedia.org/wiki/Queer_Eye_(2018_TV_series)","matchedText":"“Queer Eye”","freebaseId":"","relevanceScore":0.2218,"entityEnglishId":"Queer Eye (2018 TV series)","startingPos":50,"endingPos":61,"wikidataId":"Q48817408"}]},"time":0.006571,"ok":true} -2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Work","Agent","Website","Organisation","Company"],"matchingTokens":[8],"entityId":"Netflix","freebaseTypes":["/business/business_operation","/award/award_nominee","/business/issuer","/business/employer","/award/award_winner","/venture_capital/venture_funded_company","/tv/tv_network","/internet/website_owner","/dataworld/information_source","/organization/organization"],"confidenceScore":4.163,"wikiLink":"http://en.wikipedia.org/wiki/Netflix","matchedText":"Netflix","freebaseId":"/m/017rf_","relevanceScore":0.01622,"entityEnglishId":"Netflix","startingPos":37,"endingPos":44,"wikidataId":"Q907311","crunchbaseId":"netflix","lei":"549300Y7VHGU0I7CE873","figi":"BBG001SF6L46","permid":"4295902158"} -2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 -2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 44 -2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Work","TelevisionShow"],"matchingTokens":[10,11,12,13],"entityId":"Queer Eye (2018 TV series)","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.209,"wikiLink":"http://en.wikipedia.org/wiki/Queer_Eye_(2018_TV_series)","matchedText":"“Queer Eye”","freebaseId":"","relevanceScore":0.2218,"entityEnglishId":"Queer Eye (2018 TV series)","startingPos":50,"endingPos":61,"wikidataId":"Q48817408"} -2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 50 -2023-10-27 13:58:05.004 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 61 -2023-10-27 13:58:05.009 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:05.009  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1f52bb73 -2023-10-27 13:58:05.009 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:05.012  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:05.012  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:05.012 DEBUG 11764 --- [io-8086-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "37"^^xsd:nonNegativeInteger . - _:b1 oa:end "44"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:05.019  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@dc10499 -2023-10-27 13:58:05.019 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:58:05.021  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:05.021  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:05.021 DEBUG 11764 --- [io-8086-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "50"^^xsd:nonNegativeInteger . - _:b1 oa:end "61"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:58:05.027 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : processing took: 429 ms -2023-10-27 14:00:13.271  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:13.271  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:13.271  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:13.272  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@3ee6c8c8 -2023-10-27 14:00:13.282  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@307f9b07 -2023-10-27 14:00:13.282 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:13.283  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:13.284  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:13.290 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d -2023-10-27 14:00:13.290  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql -2023-10-27 14:00:13.292 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:13.292  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:13.292 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:00:13.293 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:00:13.293 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:13.293 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Who was the fellow Hobbit who was an enemy of Frodo?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:00:13.293  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-2050175224 -2023-10-27 14:00:13.448 DEBUG 11764 --- [nio-8086-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4647d486 -2023-10-27 14:00:14.000 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:14.000 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:00:14.001  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","FictionalCharacter"],"matchingTokens":[10],"entityId":"Frodo Baggins","freebaseTypes":["/theater/theater_character","/fictional_universe/fictional_character","/book/book_character","/fictional_universe/fictional_employer","/film/film_character"],"confidenceScore":6.111,"wikiLink":"http://en.wikipedia.org/wiki/Frodo_Baggins","matchedText":"Frodo","freebaseId":"/m/02vzw","relevanceScore":0.3331,"entityEnglishId":"Frodo Baggins","startingPos":46,"endingPos":51,"wikidataId":"Q177329"},{"id":1,"matchingTokens":[4],"entityId":"Hobbit","freebaseTypes":["/fictional_universe/character_species","/book/book_subject","/film/film_subject"],"confidenceScore":9.628,"wikiLink":"http://en.wikipedia.org/wiki/Hobbit","matchedText":"Hobbit","freebaseId":"/m/0g01s","relevanceScore":0.2816,"entityEnglishId":"Hobbit","startingPos":19,"endingPos":25,"wikidataId":"Q74359"}]},"time":0.006496,"ok":true} -2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","FictionalCharacter"],"matchingTokens":[10],"entityId":"Frodo Baggins","freebaseTypes":["/theater/theater_character","/fictional_universe/fictional_character","/book/book_character","/fictional_universe/fictional_employer","/film/film_character"],"confidenceScore":6.111,"wikiLink":"http://en.wikipedia.org/wiki/Frodo_Baggins","matchedText":"Frodo","freebaseId":"/m/02vzw","relevanceScore":0.3331,"entityEnglishId":"Frodo Baggins","startingPos":46,"endingPos":51,"wikidataId":"Q177329"} -2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 46 -2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 51 -2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"matchingTokens":[4],"entityId":"Hobbit","freebaseTypes":["/fictional_universe/character_species","/book/book_subject","/film/film_subject"],"confidenceScore":9.628,"wikiLink":"http://en.wikipedia.org/wiki/Hobbit","matchedText":"Hobbit","freebaseId":"/m/0g01s","relevanceScore":0.2816,"entityEnglishId":"Hobbit","startingPos":19,"endingPos":25,"wikidataId":"Q74359"} -2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 -2023-10-27 14:00:14.001 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 25 -2023-10-27 14:00:14.007 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d -2023-10-27 14:00:14.007  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@611b26b4 -2023-10-27 14:00:14.007 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:14.009  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "46"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:14.011  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "46"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:14.011 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "46"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:14.022  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@693312d7 -2023-10-27 14:00:14.023 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:14.026  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:14.026  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:14.027 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:14.039 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : processing took: 768 ms -2023-10-27 14:00:20.826  INFO 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:20.826  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:20.827  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:20.827  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@2e870198 -2023-10-27 14:00:20.921  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75fee0d3 -2023-10-27 14:00:20.922 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:20.922  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:20.923  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:20.930 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 -2023-10-27 14:00:20.930  INFO 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql -2023-10-27 14:00:20.933 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? -2023-10-27 14:00:20.934  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question Through which countries does the Danube go? -2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:20.934 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Through which countries does the Danube go?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:00:20.934  INFO 11764 --- [io-8086-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1513651188 -2023-10-27 14:00:21.100 DEBUG 11764 --- [io-8086-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7f7d443c -2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:00:21.315  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","NaturalPlace","BodyOfWater","Stream","River"],"matchingTokens":[5],"entityId":"Danube","freebaseTypes":["/geography/body_of_water","/location/location","/book/book_subject","/geography/geographical_feature","/travel/travel_destination","/geography/river"],"confidenceScore":2.412,"wikiLink":"http://en.wikipedia.org/wiki/Danube","matchedText":"Danube","freebaseId":"/m/06xgl5","relevanceScore":0,"entityEnglishId":"Danube","startingPos":33,"endingPos":39,"wikidataId":"Q1653"}]},"time":0.003883,"ok":true} -2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","NaturalPlace","BodyOfWater","Stream","River"],"matchingTokens":[5],"entityId":"Danube","freebaseTypes":["/geography/body_of_water","/location/location","/book/book_subject","/geography/geographical_feature","/travel/travel_destination","/geography/river"],"confidenceScore":2.412,"wikiLink":"http://en.wikipedia.org/wiki/Danube","matchedText":"Danube","freebaseId":"/m/06xgl5","relevanceScore":0,"entityEnglishId":"Danube","startingPos":33,"endingPos":39,"wikidataId":"Q1653"} -2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 -2023-10-27 14:00:21.315 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : Question: 39 -2023-10-27 14:00:21.320 DEBUG 11764 --- [io-8086-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 -2023-10-27 14:00:21.321  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7a1d6286 -2023-10-27 14:00:21.321 DEBUG 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:21.322  INFO 11764 --- [io-8086-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:21.323  INFO 11764 --- [io-8086-exec-10] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:21.323 DEBUG 11764 --- [io-8086-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:21.329 DEBUG 11764 --- [io-8086-exec-10] e.w.q.component.QanaryServiceController  : processing took: 503 ms -2023-10-27 14:00:22.582  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:22.583  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:22.583  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:22.583  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@68839916 -2023-10-27 14:00:22.592  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5549f88a -2023-10-27 14:00:22.592 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:22.593  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:22.593  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:22.599 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f -2023-10-27 14:00:22.599  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql -2023-10-27 14:00:22.601 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? -2023-10-27 14:00:22.601  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question What is the second letter in the Greek alphabet? -2023-10-27 14:00:22.601 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:00:22.601 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:00:22.602 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:22.602 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the second letter in the Greek alphabet?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:00:22.602  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=128651038 -2023-10-27 14:00:22.603 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7a35716e -2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:00:22.824  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Language"],"matchingTokens":[7],"entityId":"Greek language","freebaseTypes":["/book/book_subject","/fictional_universe/fictional_language","/language/human_language","/media_common/netflix_genre","/education/field_of_study","/language/languoid","/broadcast/genre"],"confidenceScore":2.339,"wikiLink":"http://en.wikipedia.org/wiki/Greek_language","matchedText":"Greek","freebaseId":"/m/0349s","relevanceScore":0.2026,"entityEnglishId":"Greek language","startingPos":33,"endingPos":38,"wikidataId":"Q9129"},{"id":1,"matchingTokens":[7,8],"entityId":"Greek alphabet","freebaseTypes":["/language/language_writing_system","/book/book_subject"],"confidenceScore":9.456,"wikiLink":"http://en.wikipedia.org/wiki/Greek_alphabet","matchedText":"Greek alphabet","freebaseId":"/m/0358gm","relevanceScore":0.165,"entityEnglishId":"Greek alphabet","startingPos":33,"endingPos":47,"wikidataId":"Q8216"},{"id":2,"matchingTokens":[8],"entityId":"Alphabet","freebaseTypes":["/book/book_subject","/film/film_subject","/language/language_writing_type"],"confidenceScore":1.45,"wikiLink":"http://en.wikipedia.org/wiki/Alphabet","matchedText":"alphabet","freebaseId":"/m/0hwf","relevanceScore":0.215,"entityEnglishId":"Alphabet","startingPos":39,"endingPos":47,"wikidataId":"Q9779"}]},"time":0.008499,"ok":true} -2023-10-27 14:00:22.824 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Language"],"matchingTokens":[7],"entityId":"Greek language","freebaseTypes":["/book/book_subject","/fictional_universe/fictional_language","/language/human_language","/media_common/netflix_genre","/education/field_of_study","/language/languoid","/broadcast/genre"],"confidenceScore":2.339,"wikiLink":"http://en.wikipedia.org/wiki/Greek_language","matchedText":"Greek","freebaseId":"/m/0349s","relevanceScore":0.2026,"entityEnglishId":"Greek language","startingPos":33,"endingPos":38,"wikidataId":"Q9129"} -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"matchingTokens":[7,8],"entityId":"Greek alphabet","freebaseTypes":["/language/language_writing_system","/book/book_subject"],"confidenceScore":9.456,"wikiLink":"http://en.wikipedia.org/wiki/Greek_alphabet","matchedText":"Greek alphabet","freebaseId":"/m/0358gm","relevanceScore":0.165,"entityEnglishId":"Greek alphabet","startingPos":33,"endingPos":47,"wikidataId":"Q8216"} -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 47 -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"matchingTokens":[8],"entityId":"Alphabet","freebaseTypes":["/book/book_subject","/film/film_subject","/language/language_writing_type"],"confidenceScore":1.45,"wikiLink":"http://en.wikipedia.org/wiki/Alphabet","matchedText":"alphabet","freebaseId":"/m/0hwf","relevanceScore":0.215,"entityEnglishId":"Alphabet","startingPos":39,"endingPos":47,"wikidataId":"Q9779"} -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 39 -2023-10-27 14:00:22.825 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 47 -2023-10-27 14:00:22.831 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f -2023-10-27 14:00:22.831  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a042cb6 -2023-10-27 14:00:22.831 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:22.833  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.833  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.834 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "38"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.839  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5ebb4bc9 -2023-10-27 14:00:22.839 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:22.841  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.841  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.841 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "33"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.849  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44ac753c -2023-10-27 14:00:22.849 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:22.850  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "39"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.851  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "39"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.851 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "39"^^xsd:nonNegativeInteger . - _:b1 oa:end "47"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:22.856 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 273 ms -2023-10-27 14:00:31.028  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:31.029  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:31.029  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:31.029  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@315c1a2d -2023-10-27 14:00:31.037  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64c82932 -2023-10-27 14:00:31.038 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:31.039  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:31.040  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:31.045 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:31.045  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql -2023-10-27 14:00:31.047 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? -2023-10-27 14:00:31.047  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question Which of the dragons in Game of Thrones died? -2023-10-27 14:00:31.047 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:00:31.047 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:00:31.048 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:00:31.048 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Which of the dragons in Game of Thrones died?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:00:31.048  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1377505949 -2023-10-27 14:00:31.160 DEBUG 11764 --- [nio-8086-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@678c75c5 -2023-10-27 14:00:31.376 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:00:31.377  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Work","TelevisionShow"],"matchingTokens":[5,6,7],"entityId":"Game of Thrones","freebaseTypes":["/tv/tv_program","/award/award_nominated_work","/award/award_winning_work","/media_common/adapted_work","/media_common/netflix_title","/media_common/adaptation"],"confidenceScore":5.326,"wikiLink":"http://en.wikipedia.org/wiki/Game_of_Thrones","matchedText":"Game of Thrones","freebaseId":"/m/0524b41","relevanceScore":0.05312,"entityEnglishId":"Game of Thrones","startingPos":24,"endingPos":39,"wikidataId":"Q23572"}]},"time":0.004439,"ok":true} -2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Work","TelevisionShow"],"matchingTokens":[5,6,7],"entityId":"Game of Thrones","freebaseTypes":["/tv/tv_program","/award/award_nominated_work","/award/award_winning_work","/media_common/adapted_work","/media_common/netflix_title","/media_common/adaptation"],"confidenceScore":5.326,"wikiLink":"http://en.wikipedia.org/wiki/Game_of_Thrones","matchedText":"Game of Thrones","freebaseId":"/m/0524b41","relevanceScore":0.05312,"entityEnglishId":"Game of Thrones","startingPos":24,"endingPos":39,"wikidataId":"Q23572"} -2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 24 -2023-10-27 14:00:31.377 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 39 -2023-10-27 14:00:31.384 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:31.385  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@74e15945 -2023-10-27 14:00:31.385 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:31.392  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:31.392  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:31.392 DEBUG 11764 --- [nio-8086-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "24"^^xsd:nonNegativeInteger . - _:b1 oa:end "39"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:31.400 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : processing took: 371 ms -2023-10-27 14:01:11.678  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:11.679  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:11.679  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:11.679  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@2386308e -2023-10-27 14:01:11.688  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d41da8e -2023-10-27 14:01:11.689 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:01:11.690  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:11.690  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:11.698 DEBUG 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:11.699  INFO 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql -2023-10-27 14:01:11.700 DEBUG 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:11.701  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:01:11.701 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many times did the Italian national soccer team win the Fifa World Cup?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:01:11.701  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=888418286 -2023-10-27 14:01:11.811 DEBUG 11764 --- [nio-8086-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@297e5bfe -2023-10-27 14:01:12.030 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:01:12.031 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:01:12.031  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[5],"entityId":"Italy","freebaseTypes":["/periodicals/newspaper_circulation_area","/organization/organization_member","/location/dated_location","/military/military_combatant","/law/court_jurisdiction_area","/location/country","/sports/sports_team_location","/sports/sport_country","/exhibitions/exhibition_subject","/organization/organization_scope","/symbols/name_source","/symbols/flag_referent","/government/governmental_jurisdiction","/location/administrative_division","/travel/travel_destination","/organization/organization_founder","/meteorology/forecast_zone","/fictional_universe/fictional_setting","/location/region","/media_common/netflix_genre","/location/statistical_region","/book/book_subject","/olympics/olympic_participating_country","/film/film_location","/exhibitions/exhibition_venue","/biology/breed_origin","/business/business_location","/food/beer_country_region","/business/employer","/location/location"],"confidenceScore":5.545,"wikiLink":"http://en.wikipedia.org/wiki/Italy","matchedText":"Italian","freebaseId":"/m/03rjj","relevanceScore":0.02572,"entityEnglishId":"Italy","startingPos":23,"endingPos":30,"wikidataId":"Q38"},{"id":1,"type":["Activity","Sport"],"matchingTokens":[7],"entityId":"Association football","freebaseTypes":["/olympics/olympic_participating_country","/interests/hobby","/book/book_subject","/olympics/olympic_sport","/media_common/media_genre","/organization/club_interest","/interests/hobbyist","/internet/website_category","/sports/sport","/award/competition_type","/award/award_discipline","/cvg/computer_game_subject","/film/film_subject","/interests/interest","/cvg/cvg_genre","/organization/organization_sector","/award/hall_of_fame_induction_category","/broadcast/genre","/media_common/netflix_genre","/book/periodical_subject","/tv/tv_subject","/exhibitions/exhibition_subject","/comic_books/comic_book_genre","/sports/school_sports_team","/award/hall_of_fame_discipline","/sports/sports_team"],"confidenceScore":30.55,"wikiLink":"http://en.wikipedia.org/wiki/Association_football","matchedText":"soccer","freebaseId":"/m/0fxc1s","relevanceScore":0.2286,"entityEnglishId":"Association football","startingPos":40,"endingPos":46,"wikidataId":"Q2736"},{"id":2,"type":["Agent","Organisation","SportsTeam","SoccerClub"],"matchingTokens":[5,6,7,8],"entityId":"Italy national football team","freebaseTypes":["/sports/sports_team","/award/award_winner","/award/award_nominee","/soccer/football_team","/organization/organization"],"confidenceScore":1.003,"wikiLink":"http://en.wikipedia.org/wiki/Italy_national_football_team","matchedText":"Italian national soccer team","freebaseId":"/m/01_lhg","relevanceScore":0.2105,"entityEnglishId":"Italy national football team","startingPos":23,"endingPos":51,"wikidataId":"Q676899"},{"id":3,"type":["Event","SocietalEvent","SportsEvent"],"matchingTokens":[11,12,13],"entityId":"FIFA World Cup","freebaseTypes":["/soccer/football_award","/time/recurring_event","/sports/sports_championship","/film/film_subject"],"confidenceScore":14.23,"wikiLink":"http://en.wikipedia.org/wiki/FIFA_World_Cup","matchedText":"Fifa World Cup","freebaseId":"/m/030q7","relevanceScore":0.04699,"entityEnglishId":"FIFA World Cup","startingPos":60,"endingPos":74,"wikidataId":"Q19317"}]},"time":0.0093,"ok":true} -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[5],"entityId":"Italy","freebaseTypes":["/periodicals/newspaper_circulation_area","/organization/organization_member","/location/dated_location","/military/military_combatant","/law/court_jurisdiction_area","/location/country","/sports/sports_team_location","/sports/sport_country","/exhibitions/exhibition_subject","/organization/organization_scope","/symbols/name_source","/symbols/flag_referent","/government/governmental_jurisdiction","/location/administrative_division","/travel/travel_destination","/organization/organization_founder","/meteorology/forecast_zone","/fictional_universe/fictional_setting","/location/region","/media_common/netflix_genre","/location/statistical_region","/book/book_subject","/olympics/olympic_participating_country","/film/film_location","/exhibitions/exhibition_venue","/biology/breed_origin","/business/business_location","/food/beer_country_region","/business/employer","/location/location"],"confidenceScore":5.545,"wikiLink":"http://en.wikipedia.org/wiki/Italy","matchedText":"Italian","freebaseId":"/m/03rjj","relevanceScore":0.02572,"entityEnglishId":"Italy","startingPos":23,"endingPos":30,"wikidataId":"Q38"} -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 30 -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Activity","Sport"],"matchingTokens":[7],"entityId":"Association football","freebaseTypes":["/olympics/olympic_participating_country","/interests/hobby","/book/book_subject","/olympics/olympic_sport","/media_common/media_genre","/organization/club_interest","/interests/hobbyist","/internet/website_category","/sports/sport","/award/competition_type","/award/award_discipline","/cvg/computer_game_subject","/film/film_subject","/interests/interest","/cvg/cvg_genre","/organization/organization_sector","/award/hall_of_fame_induction_category","/broadcast/genre","/media_common/netflix_genre","/book/periodical_subject","/tv/tv_subject","/exhibitions/exhibition_subject","/comic_books/comic_book_genre","/sports/school_sports_team","/award/hall_of_fame_discipline","/sports/sports_team"],"confidenceScore":30.55,"wikiLink":"http://en.wikipedia.org/wiki/Association_football","matchedText":"soccer","freebaseId":"/m/0fxc1s","relevanceScore":0.2286,"entityEnglishId":"Association football","startingPos":40,"endingPos":46,"wikidataId":"Q2736"} -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 40 -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 46 -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Organisation","SportsTeam","SoccerClub"],"matchingTokens":[5,6,7,8],"entityId":"Italy national football team","freebaseTypes":["/sports/sports_team","/award/award_winner","/award/award_nominee","/soccer/football_team","/organization/organization"],"confidenceScore":1.003,"wikiLink":"http://en.wikipedia.org/wiki/Italy_national_football_team","matchedText":"Italian national soccer team","freebaseId":"/m/01_lhg","relevanceScore":0.2105,"entityEnglishId":"Italy national football team","startingPos":23,"endingPos":51,"wikidataId":"Q676899"} -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 51 -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":3,"type":["Event","SocietalEvent","SportsEvent"],"matchingTokens":[11,12,13],"entityId":"FIFA World Cup","freebaseTypes":["/soccer/football_award","/time/recurring_event","/sports/sports_championship","/film/film_subject"],"confidenceScore":14.23,"wikiLink":"http://en.wikipedia.org/wiki/FIFA_World_Cup","matchedText":"Fifa World Cup","freebaseId":"/m/030q7","relevanceScore":0.04699,"entityEnglishId":"FIFA World Cup","startingPos":60,"endingPos":74,"wikidataId":"Q19317"} -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 60 -2023-10-27 14:01:12.032 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : Question: 74 -2023-10-27 14:01:12.039 DEBUG 11764 --- [nio-8086-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:12.039  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c7cd0b5 -2023-10-27 14:01:12.039 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:12.042  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "30"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.042  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "30"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.042 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "30"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.052  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7eec9ff4 -2023-10-27 14:01:12.053 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:12.055  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.056  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.056 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "40"^^xsd:nonNegativeInteger . - _:b1 oa:end "46"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.067  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d5abf0d -2023-10-27 14:01:12.068 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:12.071  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.072  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.072 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.084  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@620aef3 -2023-10-27 14:01:12.084 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:01:12.087  INFO 11764 --- [nio-8086-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.087  INFO 11764 --- [nio-8086-exec-5] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.087 DEBUG 11764 --- [nio-8086-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "60"^^xsd:nonNegativeInteger . - _:b1 oa:end "74"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:01:12.096 DEBUG 11764 --- [nio-8086-exec-5] e.w.q.component.QanaryServiceController  : processing took: 418 ms -2023-10-27 14:02:10.903  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:10.904  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:10.904  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:10.904  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@456fab76 -2023-10-27 14:02:10.913  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f570b86 -2023-10-27 14:02:10.913 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:10.922  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:10.923  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:10.934 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d -2023-10-27 14:02:10.934  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql -2023-10-27 14:02:10.935 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:02:10.936  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:02:10.936 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Which started first: impressionism or expressionism (art movements)?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:02:10.936  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1476072986 -2023-10-27 14:02:11.086 DEBUG 11764 --- [nio-8086-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3ed87818 -2023-10-27 14:02:11.306 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:02:11.306 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:02:11.306  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:02:11.306 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"matchingTokens":[4],"entityId":"Impressionism","freebaseTypes":["/book/book_subject","/visual_art/visual_art_support","/visual_art/art_period_movement","/interests/collection_category","/symbols/namesake","/exhibitions/exhibition_subject"],"confidenceScore":25.43,"wikiLink":"http://en.wikipedia.org/wiki/Impressionism","matchedText":"impressionism","freebaseId":"/m/03xj1","relevanceScore":0.6412,"entityEnglishId":"Impressionism","startingPos":21,"endingPos":34,"wikidataId":"Q40415"},{"id":1,"matchingTokens":[6],"entityId":"Expressionism","freebaseTypes":["/book/school_or_movement","/visual_art/art_period_movement","/film/film_genre","/architecture/architectural_style","/theater/theater_genre","/media_common/media_genre"],"confidenceScore":17.16,"wikiLink":"http://en.wikipedia.org/wiki/Expressionism","matchedText":"expressionism","freebaseId":"/m/0pybl","relevanceScore":0.7015,"entityEnglishId":"Expressionism","startingPos":38,"endingPos":51,"wikidataId":"Q80113"},{"id":2,"matchingTokens":[8],"entityId":"Art","freebaseTypes":["/business/consumer_product","/book/book_subject","/media_common/quotation_subject","/interests/hobby","/award/award_discipline","/business/industry","/education/field_of_study","/film/film_subject","/interests/collection_category","/book/periodical_subject","/business/product_theme","/internet/website_category","/interests/interest","/exhibitions/exhibition_subject","/organization/organization_sector"],"confidenceScore":3.297,"wikiLink":"http://en.wikipedia.org/wiki/Art","matchedText":"art","freebaseId":"/m/0jjw","relevanceScore":0.5816,"entityEnglishId":"Art","startingPos":53,"endingPos":56,"wikidataId":"Q735"},{"id":3,"matchingTokens":[8,9],"entityId":"Art movement","confidenceScore":3.83,"wikiLink":"http://en.wikipedia.org/wiki/Art_movement","matchedText":"art movements","freebaseId":"/m/01h8mp","relevanceScore":0.2373,"entityEnglishId":"Art movement","startingPos":53,"endingPos":66,"wikidataId":"Q968159"}]},"time":0.007981,"ok":true} -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"matchingTokens":[4],"entityId":"Impressionism","freebaseTypes":["/book/book_subject","/visual_art/visual_art_support","/visual_art/art_period_movement","/interests/collection_category","/symbols/namesake","/exhibitions/exhibition_subject"],"confidenceScore":25.43,"wikiLink":"http://en.wikipedia.org/wiki/Impressionism","matchedText":"impressionism","freebaseId":"/m/03xj1","relevanceScore":0.6412,"entityEnglishId":"Impressionism","startingPos":21,"endingPos":34,"wikidataId":"Q40415"} -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 21 -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 34 -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"matchingTokens":[6],"entityId":"Expressionism","freebaseTypes":["/book/school_or_movement","/visual_art/art_period_movement","/film/film_genre","/architecture/architectural_style","/theater/theater_genre","/media_common/media_genre"],"confidenceScore":17.16,"wikiLink":"http://en.wikipedia.org/wiki/Expressionism","matchedText":"expressionism","freebaseId":"/m/0pybl","relevanceScore":0.7015,"entityEnglishId":"Expressionism","startingPos":38,"endingPos":51,"wikidataId":"Q80113"} -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 51 -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"matchingTokens":[8],"entityId":"Art","freebaseTypes":["/business/consumer_product","/book/book_subject","/media_common/quotation_subject","/interests/hobby","/award/award_discipline","/business/industry","/education/field_of_study","/film/film_subject","/interests/collection_category","/book/periodical_subject","/business/product_theme","/internet/website_category","/interests/interest","/exhibitions/exhibition_subject","/organization/organization_sector"],"confidenceScore":3.297,"wikiLink":"http://en.wikipedia.org/wiki/Art","matchedText":"art","freebaseId":"/m/0jjw","relevanceScore":0.5816,"entityEnglishId":"Art","startingPos":53,"endingPos":56,"wikidataId":"Q735"} -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 53 -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 56 -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":3,"matchingTokens":[8,9],"entityId":"Art movement","confidenceScore":3.83,"wikiLink":"http://en.wikipedia.org/wiki/Art_movement","matchedText":"art movements","freebaseId":"/m/01h8mp","relevanceScore":0.2373,"entityEnglishId":"Art movement","startingPos":53,"endingPos":66,"wikidataId":"Q968159"} -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 53 -2023-10-27 14:02:11.307 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 66 -2023-10-27 14:02:11.312 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d -2023-10-27 14:02:11.312  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4319e689 -2023-10-27 14:02:11.312 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:11.316  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.316  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.316 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "21"^^xsd:nonNegativeInteger . - _:b1 oa:end "34"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.323  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7b95c187 -2023-10-27 14:02:11.323 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:11.325  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.325  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.325 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "51"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.333  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3cd9ee48 -2023-10-27 14:02:11.333 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:11.334  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.335  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.335 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "56"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.341  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@413c5973 -2023-10-27 14:02:11.341 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:02:11.343  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.343  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.343 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "53"^^xsd:nonNegativeInteger . - _:b1 oa:end "66"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:02:11.350 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : processing took: 446 ms -2023-10-27 14:03:01.324  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.325  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.325  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.325  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@74b316ab -2023-10-27 14:03:01.336  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@367bf762 -2023-10-27 14:03:01.336 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:01.337  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:01.337  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:01.343 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:01.343  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql -2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:01.345  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:03:01.345 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:03:01.345  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=800550060 -2023-10-27 14:03:01.534 DEBUG 11764 --- [nio-8086-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3f88969 -2023-10-27 14:03:01.750 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:01.751 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:03:01.751  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[4],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":53.36,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1402,"entityEnglishId":"National Basketball Association","startingPos":17,"endingPos":20,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"},{"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"Michael Jordan","freebaseTypes":["/people/measured_person","/celebrities/celebrity","/award/ranked_item","/award/hall_of_fame_inductee","/award/award_nominee","/film/person_or_entity_appearing_in_film","/people/person","/business/sponsored_recipient","/sports/pro_athlete","/tv/tv_subject","/award/award_winner","/sports/drafted_athlete","/olympics/olympic_athlete","/film/actor","/film/film_subject","/tv/tv_actor","/sports/sports_team_owner","/sports/sports_award_winner","/book/author","/baseball/baseball_player","/tv/tv_personality","/book/book_subject","/influence/influence_node","/basketball/basketball_player"],"confidenceScore":24.64,"wikiLink":"http://en.wikipedia.org/wiki/Michael_Jordan","matchedText":"Michael Jordan","freebaseId":"/m/054c1","relevanceScore":0.3442,"entityEnglishId":"Michael Jordan","startingPos":29,"endingPos":43,"wikidataId":"Q41421"},{"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[10,11,12],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":1.785,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bean Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.2821,"entityEnglishId":"Kobe Bryant","startingPos":47,"endingPos":63,"wikidataId":"Q25369","crunchbaseId":"black-mamba"}]},"time":0.009304,"ok":true} -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[4],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":53.36,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1402,"entityEnglishId":"National Basketball Association","startingPos":17,"endingPos":20,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"} -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 17 -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 20 -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[7,8],"entityId":"Michael Jordan","freebaseTypes":["/people/measured_person","/celebrities/celebrity","/award/ranked_item","/award/hall_of_fame_inductee","/award/award_nominee","/film/person_or_entity_appearing_in_film","/people/person","/business/sponsored_recipient","/sports/pro_athlete","/tv/tv_subject","/award/award_winner","/sports/drafted_athlete","/olympics/olympic_athlete","/film/actor","/film/film_subject","/tv/tv_actor","/sports/sports_team_owner","/sports/sports_award_winner","/book/author","/baseball/baseball_player","/tv/tv_personality","/book/book_subject","/influence/influence_node","/basketball/basketball_player"],"confidenceScore":24.64,"wikiLink":"http://en.wikipedia.org/wiki/Michael_Jordan","matchedText":"Michael Jordan","freebaseId":"/m/054c1","relevanceScore":0.3442,"entityEnglishId":"Michael Jordan","startingPos":29,"endingPos":43,"wikidataId":"Q41421"} -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 29 -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 43 -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Person","Athlete","BasketballPlayer"],"matchingTokens":[10,11,12],"entityId":"Kobe Bryant","freebaseTypes":["/film/film_subject","/sports/sports_award_winner","/olympics/olympic_athlete","/basketball/basketball_player","/sports/pro_athlete","/business/product_endorser","/tv/tv_personality","/business/sponsored_recipient","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/music/artist","/people/person","/sports/drafted_athlete","/award/award_nominee","/music/group_member","/celebrities/celebrity","/people/measured_person","/award/award_winner","/music/featured_artist","/organization/organization","/business/employer"],"confidenceScore":1.785,"wikiLink":"http://en.wikipedia.org/wiki/Kobe_Bryant","matchedText":"Kobe Bean Bryant","freebaseId":"/m/0cn_06n","relevanceScore":0.2821,"entityEnglishId":"Kobe Bryant","startingPos":47,"endingPos":63,"wikidataId":"Q25369","crunchbaseId":"black-mamba"} -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 47 -2023-10-27 14:03:01.752 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 63 -2023-10-27 14:03:01.760 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:01.760  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c97c5ce -2023-10-27 14:03:01.760 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:01.762  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.763  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.763 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "17"^^xsd:nonNegativeInteger . - _:b1 oa:end "20"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.775  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70fd8eb9 -2023-10-27 14:03:01.775 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:01.778  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.778  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.778 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "29"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.789  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19d4a723 -2023-10-27 14:03:01.789 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:01.791  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.791  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.791 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "47"^^xsd:nonNegativeInteger . - _:b1 oa:end "63"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:01.801 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : processing took: 476 ms -2023-10-27 14:04:26.953  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:04:26.955  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:04:26.955  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:04:26.955  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@4d9dd273 -2023-10-27 14:04:26.963  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1851abbe -2023-10-27 14:04:26.963 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:26.964  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:26.964  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:26.971 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b -2023-10-27 14:04:26.971  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql -2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 14:04:26.973  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:04:26.973 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Did the Chicago Bulls win at least two seasons of the NBA championship?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:04:26.973  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-464899173 -2023-10-27 14:04:27.183 DEBUG 11764 --- [nio-8086-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6b89bd52 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:04:27.403  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[2],"entityId":"Chicago","freebaseTypes":["/book/book_subject","/periodicals/newspaper_circulation_area","/symbols/name_source","/location/dated_location","/location/hud_county_place","/location/place_with_neighborhoods","/location/capital_of_administrative_division","/travel/travel_destination","/fictional_universe/fictional_setting","/film/film_location","/government/governmental_jurisdiction","/organization/organization_scope","/exhibitions/exhibition_sponsor","/business/business_location","/award/award_discipline","/location/citytown","/sports/sports_team_location","/tv/tv_location","/location/administrative_division","/business/employer","/location/statistical_region","/location/location","/olympics/olympic_bidding_city"],"confidenceScore":11.35,"wikiLink":"http://en.wikipedia.org/wiki/Chicago","matchedText":"Chicago","freebaseId":"/m/01_d4","relevanceScore":0.07726,"entityEnglishId":"Chicago","startingPos":8,"endingPos":15,"wikidataId":"Q1297"},{"id":1,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[2,3],"entityId":"Chicago Bulls","freebaseTypes":["/sports/sports_team","/award/award_nominee","/sports/professional_sports_team","/award/award_winner","/basketball/basketball_team"],"confidenceScore":4.324,"wikiLink":"http://en.wikipedia.org/wiki/Chicago_Bulls","matchedText":"Chicago Bulls","freebaseId":"/m/0jm74","relevanceScore":0.2012,"entityEnglishId":"Chicago Bulls","startingPos":8,"endingPos":21,"wikidataId":"Q128109","crunchbaseId":"chicago-bulls"},{"id":2,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[11],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":6.66,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1132,"entityEnglishId":"National Basketball Association","startingPos":54,"endingPos":57,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"},{"id":3,"type":["Event","SocietalEvent","Convention"],"matchingTokens":[11,12],"entityId":"NBA Finals","freebaseTypes":["/sports/sports_championship","/time/recurring_event"],"confidenceScore":1.533,"wikiLink":"http://en.wikipedia.org/wiki/NBA_Finals","matchedText":"NBA championship","freebaseId":"/m/03m5x4","relevanceScore":0.1795,"entityEnglishId":"NBA Finals","startingPos":54,"endingPos":70,"wikidataId":"Q842375"}]},"time":0.008018,"ok":true} -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[2],"entityId":"Chicago","freebaseTypes":["/book/book_subject","/periodicals/newspaper_circulation_area","/symbols/name_source","/location/dated_location","/location/hud_county_place","/location/place_with_neighborhoods","/location/capital_of_administrative_division","/travel/travel_destination","/fictional_universe/fictional_setting","/film/film_location","/government/governmental_jurisdiction","/organization/organization_scope","/exhibitions/exhibition_sponsor","/business/business_location","/award/award_discipline","/location/citytown","/sports/sports_team_location","/tv/tv_location","/location/administrative_division","/business/employer","/location/statistical_region","/location/location","/olympics/olympic_bidding_city"],"confidenceScore":11.35,"wikiLink":"http://en.wikipedia.org/wiki/Chicago","matchedText":"Chicago","freebaseId":"/m/01_d4","relevanceScore":0.07726,"entityEnglishId":"Chicago","startingPos":8,"endingPos":15,"wikidataId":"Q1297"} -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 8 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 15 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Organisation","SportsTeam","BasketballTeam"],"matchingTokens":[2,3],"entityId":"Chicago Bulls","freebaseTypes":["/sports/sports_team","/award/award_nominee","/sports/professional_sports_team","/award/award_winner","/basketball/basketball_team"],"confidenceScore":4.324,"wikiLink":"http://en.wikipedia.org/wiki/Chicago_Bulls","matchedText":"Chicago Bulls","freebaseId":"/m/0jm74","relevanceScore":0.2012,"entityEnglishId":"Chicago Bulls","startingPos":8,"endingPos":21,"wikidataId":"Q128109","crunchbaseId":"chicago-bulls"} -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 8 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 21 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":2,"type":["Agent","Event","Organisation","SocietalEvent","SportsLeague","SportsEvent","BasketballLeague"],"matchingTokens":[11],"entityId":"National Basketball Association","freebaseTypes":["/book/book_subject","/business/customer","/organization/organization","/business/business_operation","/business/employer","/award/award_presenting_organization","/sports/sports_league"],"confidenceScore":6.66,"wikiLink":"http://en.wikipedia.org/wiki/National_Basketball_Association","matchedText":"NBA","freebaseId":"/m/05jvx","relevanceScore":0.1132,"entityEnglishId":"National Basketball Association","startingPos":54,"endingPos":57,"wikidataId":"Q155223","crunchbaseId":"national-basketball-association","permid":"5000294118"} -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 54 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 57 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":3,"type":["Event","SocietalEvent","Convention"],"matchingTokens":[11,12],"entityId":"NBA Finals","freebaseTypes":["/sports/sports_championship","/time/recurring_event"],"confidenceScore":1.533,"wikiLink":"http://en.wikipedia.org/wiki/NBA_Finals","matchedText":"NBA championship","freebaseId":"/m/03m5x4","relevanceScore":0.1795,"entityEnglishId":"NBA Finals","startingPos":54,"endingPos":70,"wikidataId":"Q842375"} -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 54 -2023-10-27 14:04:27.403 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 70 -2023-10-27 14:04:27.409 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b -2023-10-27 14:04:27.409  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48dd9691 -2023-10-27 14:04:27.409 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:27.410  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.410  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.410 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "15"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.416  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6bf0dbb3 -2023-10-27 14:04:27.416 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:27.417  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.417  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.417 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "8"^^xsd:nonNegativeInteger . - _:b1 oa:end "21"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.423  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ee98128 -2023-10-27 14:04:27.423 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:27.424  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "54"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.424  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "54"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.424 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "54"^^xsd:nonNegativeInteger . - _:b1 oa:end "57"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.430  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@582cc08a -2023-10-27 14:04:27.430 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:27.431  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "54"^^xsd:nonNegativeInteger . - _:b1 oa:end "70"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.432  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "54"^^xsd:nonNegativeInteger . - _:b1 oa:end "70"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.432 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "54"^^xsd:nonNegativeInteger . - _:b1 oa:end "70"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:27.437 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : processing took: 482 ms -2023-10-27 14:04:57.084  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:57.084  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:57.085  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:57.085  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@1543c2c6 -2023-10-27 14:04:57.095  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e293d44 -2023-10-27 14:04:57.095 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:57.096  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:57.096  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:57.108 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:04:57.108  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql -2023-10-27 14:04:57.110 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? -2023-10-27 14:04:57.110  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question What is the capital of the prefecture Tokyo ? -2023-10-27 14:04:57.110 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:04:57.110 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:04:57.111 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:04:57.111 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What is the capital of the prefecture Tokyo ?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:04:57.111  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-570284519 -2023-10-27 14:04:57.263 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1ac8d84b -2023-10-27 14:04:57.480 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:04:57.480 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:04:57.481  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"matchingTokens":[6],"entityId":"Prefecture","confidenceScore":1.081,"wikiLink":"http://en.wikipedia.org/wiki/Prefecture","matchedText":"prefecture","freebaseId":"/m/0jw6r","relevanceScore":0.08958,"entityEnglishId":"Prefecture","startingPos":27,"endingPos":37,"wikidataId":"Q515716"},{"id":1,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[7],"entityId":"Tokyo","freebaseTypes":["/travel/travel_destination","/location/citytown","/location/administrative_division","/location/statistical_region","/location/dated_location","/location/location","/location/jp_designated_city","/location/administrative_division","/location/statistical_region","/periodicals/newspaper_circulation_area","/location/jp_prefecture","/film/film_location","/book/book_subject","/olympics/olympic_host_city","/location/location","/government/governmental_jurisdiction","/location/jp_city_town","/travel/travel_destination","/business/employer","/location/citytown","/meteorology/cyclone_affected_area","/fictional_universe/fictional_setting","/organization/organization_scope","/symbols/name_source","/location/place_with_neighborhoods","/location/dated_location","/location/location"],"confidenceScore":2.29,"wikiLink":"http://en.wikipedia.org/wiki/Tokyo","matchedText":"Tokyo","freebaseId":"/m/0swk_t7","relevanceScore":0.1411,"entityEnglishId":"Tokyo","startingPos":38,"endingPos":43,"wikidataId":"Q1490"}]},"time":0.003488,"ok":true} -2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"matchingTokens":[6],"entityId":"Prefecture","confidenceScore":1.081,"wikiLink":"http://en.wikipedia.org/wiki/Prefecture","matchedText":"prefecture","freebaseId":"/m/0jw6r","relevanceScore":0.08958,"entityEnglishId":"Prefecture","startingPos":27,"endingPos":37,"wikidataId":"Q515716"} -2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 27 -2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 -2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Place","PopulatedPlace","Settlement","City"],"matchingTokens":[7],"entityId":"Tokyo","freebaseTypes":["/travel/travel_destination","/location/citytown","/location/administrative_division","/location/statistical_region","/location/dated_location","/location/location","/location/jp_designated_city","/location/administrative_division","/location/statistical_region","/periodicals/newspaper_circulation_area","/location/jp_prefecture","/film/film_location","/book/book_subject","/olympics/olympic_host_city","/location/location","/government/governmental_jurisdiction","/location/jp_city_town","/travel/travel_destination","/business/employer","/location/citytown","/meteorology/cyclone_affected_area","/fictional_universe/fictional_setting","/organization/organization_scope","/symbols/name_source","/location/place_with_neighborhoods","/location/dated_location","/location/location"],"confidenceScore":2.29,"wikiLink":"http://en.wikipedia.org/wiki/Tokyo","matchedText":"Tokyo","freebaseId":"/m/0swk_t7","relevanceScore":0.1411,"entityEnglishId":"Tokyo","startingPos":38,"endingPos":43,"wikidataId":"Q1490"} -2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 38 -2023-10-27 14:04:57.481 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 43 -2023-10-27 14:04:57.487 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:04:57.487  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3dea4bbb -2023-10-27 14:04:57.488 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:57.489  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.489  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.489 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "27"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.495  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@36b4eb32 -2023-10-27 14:04:57.495 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:04:57.497  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.497  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.497 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "38"^^xsd:nonNegativeInteger . - _:b1 oa:end "43"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:04:57.503 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 419 ms -2023-10-27 14:06:01.592  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:01.592  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:01.592  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:01.593  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@71512a9d -2023-10-27 14:06:01.599  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11529675 -2023-10-27 14:06:01.600 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:01.600  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:01.601  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:01.607 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:01.607  INFO 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql -2023-10-27 14:06:01.609 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many poems did Allen Ginsberg published? -2023-10-27 14:06:01.609  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question How many poems did Allen Ginsberg published? -2023-10-27 14:06:01.609 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:06:01.609 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:06:01.610 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:06:01.610 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How many poems did Allen Ginsberg published?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:06:01.610  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-987132577 -2023-10-27 14:06:01.878 DEBUG 11764 --- [nio-8086-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@40eafde9 -2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:06:02.104  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[4,5],"entityId":"Allen Ginsberg","freebaseTypes":["/music/composer","/film/film_story_contributor","/award/award_nominee","/music/group_member","/tv/tv_personality","/film/person_or_entity_appearing_in_film","/people/person","/people/deceased_person","/music/writer","/film/film_subject","/film/actor","/film/writer","/visual_art/visual_artist","/medicine/notable_person_with_medical_condition","/music/artist","/book/author","/tv/tv_actor","/award/award_winner","/fictional_universe/person_in_fiction","/music/lyricist","/organization/organization_founder","/influence/influence_node","/book/book_subject"],"confidenceScore":6.25,"wikiLink":"http://en.wikipedia.org/wiki/Allen_Ginsberg","matchedText":"Allen Ginsberg","freebaseId":"/m/0lrh","relevanceScore":0.3673,"entityEnglishId":"Allen Ginsberg","startingPos":19,"endingPos":33,"wikidataId":"Q6711"}]},"time":0.006951,"ok":true} -2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[4,5],"entityId":"Allen Ginsberg","freebaseTypes":["/music/composer","/film/film_story_contributor","/award/award_nominee","/music/group_member","/tv/tv_personality","/film/person_or_entity_appearing_in_film","/people/person","/people/deceased_person","/music/writer","/film/film_subject","/film/actor","/film/writer","/visual_art/visual_artist","/medicine/notable_person_with_medical_condition","/music/artist","/book/author","/tv/tv_actor","/award/award_winner","/fictional_universe/person_in_fiction","/music/lyricist","/organization/organization_founder","/influence/influence_node","/book/book_subject"],"confidenceScore":6.25,"wikiLink":"http://en.wikipedia.org/wiki/Allen_Ginsberg","matchedText":"Allen Ginsberg","freebaseId":"/m/0lrh","relevanceScore":0.3673,"entityEnglishId":"Allen Ginsberg","startingPos":19,"endingPos":33,"wikidataId":"Q6711"} -2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 -2023-10-27 14:06:02.104 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : Question: 33 -2023-10-27 14:06:02.109 DEBUG 11764 --- [nio-8086-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:02.109  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@69031fad -2023-10-27 14:06:02.110 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:02.111  INFO 11764 --- [nio-8086-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:02.112  INFO 11764 --- [nio-8086-exec-7] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:02.112 DEBUG 11764 --- [nio-8086-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "19"^^xsd:nonNegativeInteger . - _:b1 oa:end "33"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:02.129 DEBUG 11764 --- [nio-8086-exec-7] e.w.q.component.QanaryServiceController  : processing took: 537 ms -2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:30.823  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@7ce1ac00 -2023-10-27 14:06:30.832  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1121cd6c -2023-10-27 14:06:30.832 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:30.833  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:30.833  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:30.839 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 -2023-10-27 14:06:30.839  INFO 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 found in urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 at http://localhost:8080/sparql -2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? -2023-10-27 14:06:30.841  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question Is Dr. Pepper named after its inventor? -2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:06:30.841 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Is Dr. Pepper named after its inventor?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:06:30.841  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=967908090 -2023-10-27 14:06:30.953 DEBUG 11764 --- [nio-8086-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@23f3fea1 -2023-10-27 14:06:31.228 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:06:31.228 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:06:31.229  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Food","Beverage"],"matchingTokens":[1,2],"entityId":"Dr Pepper","freebaseTypes":["/business/brand","/food/beverage"],"confidenceScore":3.088,"wikiLink":"http://en.wikipedia.org/wiki/Dr_Pepper","matchedText":"Dr. Pepper","freebaseId":"/m/0128401y","relevanceScore":0,"entityEnglishId":"Dr Pepper","startingPos":3,"endingPos":13,"wikidataId":"Q623561"}]},"time":0.003654,"ok":true} -2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Food","Beverage"],"matchingTokens":[1,2],"entityId":"Dr Pepper","freebaseTypes":["/business/brand","/food/beverage"],"confidenceScore":3.088,"wikiLink":"http://en.wikipedia.org/wiki/Dr_Pepper","matchedText":"Dr. Pepper","freebaseId":"/m/0128401y","relevanceScore":0,"entityEnglishId":"Dr Pepper","startingPos":3,"endingPos":13,"wikidataId":"Q623561"} -2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 3 -2023-10-27 14:06:31.229 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : Question: 13 -2023-10-27 14:06:31.233 DEBUG 11764 --- [nio-8086-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 -2023-10-27 14:06:31.234  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d6552c5 -2023-10-27 14:06:31.234 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:06:31.235  INFO 11764 --- [nio-8086-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:31.235  INFO 11764 --- [nio-8086-exec-9] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:31.235 DEBUG 11764 --- [nio-8086-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "13"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:06:31.240 DEBUG 11764 --- [nio-8086-exec-9] e.w.q.component.QanaryServiceController  : processing took: 417 ms -2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:22.827  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@5e20c6b1 -2023-10-27 14:07:22.836  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c3bd10e -2023-10-27 14:07:22.836 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:22.837  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:22.837  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:22.844 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 -2023-10-27 14:07:22.844  INFO 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql -2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? -2023-10-27 14:07:22.846  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question In how many movies did Carey Mulligan and Ryan Gosling star together? -2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:07:22.846 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:07:22.847 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[In how many movies did Carey Mulligan and Ryan Gosling star together?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:07:22.847  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1734149481 -2023-10-27 14:07:23.076 DEBUG 11764 --- [nio-8086-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@602f1076 -2023-10-27 14:07:23.334 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:07:23.335  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[5,6],"entityId":"Carey Mulligan","freebaseTypes":["/influence/influence_node","/music/artist","/theater/theater_actor","/people/person","/tv/tv_actor","/film/actor","/award/award_winner","/award/award_nominee"],"confidenceScore":5.717,"wikiLink":"http://en.wikipedia.org/wiki/Carey_Mulligan","matchedText":"Carey Mulligan","freebaseId":"/m/0bwgc_","relevanceScore":0.1383,"entityEnglishId":"Carey Mulligan","startingPos":23,"endingPos":37,"wikidataId":"Q219655"},{"id":1,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[8,9],"entityId":"Ryan Gosling","freebaseTypes":["/music/group_member","/tv/tv_program_guest","/music/artist","/film/director","/people/person","/film/actor","/film/producer","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/film/writer","/celebrities/celebrity","/influence/influence_node","/award/award_nominee","/award/award_winner"],"confidenceScore":4.525,"wikiLink":"http://en.wikipedia.org/wiki/Ryan_Gosling","matchedText":"Ryan Gosling","freebaseId":"/m/03m6_z","relevanceScore":0.0659,"entityEnglishId":"Ryan Gosling","startingPos":42,"endingPos":54,"wikidataId":"Q193815"}]},"time":0.009594,"ok":true} -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[5,6],"entityId":"Carey Mulligan","freebaseTypes":["/influence/influence_node","/music/artist","/theater/theater_actor","/people/person","/tv/tv_actor","/film/actor","/award/award_winner","/award/award_nominee"],"confidenceScore":5.717,"wikiLink":"http://en.wikipedia.org/wiki/Carey_Mulligan","matchedText":"Carey Mulligan","freebaseId":"/m/0bwgc_","relevanceScore":0.1383,"entityEnglishId":"Carey Mulligan","startingPos":23,"endingPos":37,"wikidataId":"Q219655"} -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 23 -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Agent","Person","Artist","Actor"],"matchingTokens":[8,9],"entityId":"Ryan Gosling","freebaseTypes":["/music/group_member","/tv/tv_program_guest","/music/artist","/film/director","/people/person","/film/actor","/film/producer","/tv/tv_actor","/film/person_or_entity_appearing_in_film","/film/writer","/celebrities/celebrity","/influence/influence_node","/award/award_nominee","/award/award_winner"],"confidenceScore":4.525,"wikiLink":"http://en.wikipedia.org/wiki/Ryan_Gosling","matchedText":"Ryan Gosling","freebaseId":"/m/03m6_z","relevanceScore":0.0659,"entityEnglishId":"Ryan Gosling","startingPos":42,"endingPos":54,"wikidataId":"Q193815"} -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 42 -2023-10-27 14:07:23.335 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : Question: 54 -2023-10-27 14:07:23.339 DEBUG 11764 --- [nio-8086-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 -2023-10-27 14:07:23.340  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5cfe5eef -2023-10-27 14:07:23.340 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:23.341  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:23.341  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:23.341 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "23"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:23.347  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4331e8f -2023-10-27 14:07:23.347 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:07:23.348  INFO 11764 --- [nio-8086-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "54"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:23.348  INFO 11764 --- [nio-8086-exec-2] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "54"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:23.348 DEBUG 11764 --- [nio-8086-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "54"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:07:23.353 DEBUG 11764 --- [nio-8086-exec-2] e.w.q.component.QanaryServiceController  : processing took: 526 ms -2023-10-27 14:08:24.494  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:24.495  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:24.495  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:24.495  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@25d81b55 -2023-10-27 14:08:24.510  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d43188c -2023-10-27 14:08:24.511 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:24.512  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:24.513  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:24.525 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c -2023-10-27 14:08:24.525  INFO 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql -2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? -2023-10-27 14:08:24.528  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question How often was Naomi Novik nominated for a Hugo Award? -2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:08:24.528 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[How often was Naomi Novik nominated for a Hugo Award?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:08:24.529  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2035953308 -2023-10-27 14:08:24.660 DEBUG 11764 --- [nio-8086-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6555bb16 -2023-10-27 14:08:24.878 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:08:24.879  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[3,4],"entityId":"Naomi Novik","freebaseTypes":["/award/award_winner","/influence/influence_node","/award/award_nominee","/book/author","/people/person","/fictional_universe/fictional_character_creator"],"confidenceScore":2.733,"wikiLink":"http://en.wikipedia.org/wiki/Naomi_Novik","matchedText":"Naomi Novik","freebaseId":"/m/0ckkqp","relevanceScore":0.1639,"entityEnglishId":"Naomi Novik","startingPos":14,"endingPos":25,"wikidataId":"Q242643"},{"id":1,"type":["Award"],"matchingTokens":[8,9],"entityId":"Hugo Award","freebaseTypes":["/event/speech_topic","/symbols/namesake","/award/award"],"confidenceScore":3.854,"wikiLink":"http://en.wikipedia.org/wiki/Hugo_Award","matchedText":"Hugo Award","freebaseId":"/m/03gw9","relevanceScore":0.1182,"entityEnglishId":"Hugo Award","startingPos":42,"endingPos":52,"wikidataId":"Q188914"}]},"time":0.00652,"ok":true} -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Agent","Person","Artist","Writer"],"matchingTokens":[3,4],"entityId":"Naomi Novik","freebaseTypes":["/award/award_winner","/influence/influence_node","/award/award_nominee","/book/author","/people/person","/fictional_universe/fictional_character_creator"],"confidenceScore":2.733,"wikiLink":"http://en.wikipedia.org/wiki/Naomi_Novik","matchedText":"Naomi Novik","freebaseId":"/m/0ckkqp","relevanceScore":0.1639,"entityEnglishId":"Naomi Novik","startingPos":14,"endingPos":25,"wikidataId":"Q242643"} -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 14 -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 25 -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["Award"],"matchingTokens":[8,9],"entityId":"Hugo Award","freebaseTypes":["/event/speech_topic","/symbols/namesake","/award/award"],"confidenceScore":3.854,"wikiLink":"http://en.wikipedia.org/wiki/Hugo_Award","matchedText":"Hugo Award","freebaseId":"/m/03gw9","relevanceScore":0.1182,"entityEnglishId":"Hugo Award","startingPos":42,"endingPos":52,"wikidataId":"Q188914"} -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 42 -2023-10-27 14:08:24.879 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : Question: 52 -2023-10-27 14:08:24.883 DEBUG 11764 --- [nio-8086-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c -2023-10-27 14:08:24.885  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1401b8c1 -2023-10-27 14:08:24.886 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:24.887  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.888  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.888 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "14"^^xsd:nonNegativeInteger . - _:b1 oa:end "25"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.893  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71e61ba7 -2023-10-27 14:08:24.893 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:08:24.895  INFO 11764 --- [nio-8086-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.895  INFO 11764 --- [nio-8086-exec-8] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.895 DEBUG 11764 --- [nio-8086-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "42"^^xsd:nonNegativeInteger . - _:b1 oa:end "52"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:08:24.900 DEBUG 11764 --- [nio-8086-exec-8] e.w.q.component.QanaryServiceController  : processing took: 405 ms -2023-10-27 14:09:00.691  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:00.693  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:00.693  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:00.693  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@612033bd -2023-10-27 14:09:00.710  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d76b552 -2023-10-27 14:09:00.711 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:00.714  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:00.714  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:00.728 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf -2023-10-27 14:09:00.728  INFO 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql -2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? -2023-10-27 14:09:00.731  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question What language do they speak in Poland ? -2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:09:00.731 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[What language do they speak in Poland ?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:09:00.731  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-27051051 -2023-10-27 14:09:00.843 DEBUG 11764 --- [nio-8086-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@52ae96d4 -2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:09:01.063  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[6],"entityId":"Poland","freebaseTypes":["/symbols/coat_of_arms_bearer","/media_common/netflix_genre","/business/employer","/biology/breed_origin","/organization/organization_member","/fictional_universe/fictional_setting","/symbols/name_source","/location/dated_location","/sports/sports_team_location","/location/country","/government/governmental_jurisdiction","/travel/travel_destination","/film/film_festival_focus","/location/statistical_region","/sports/sport_country","/military/military_combatant","/film/film_location","/location/location","/organization/organization_scope","/food/beer_country_region","/book/book_subject","/organization/organization_founder","/symbols/flag_referent","/business/business_location","/periodicals/newspaper_circulation_area","/olympics/olympic_participating_country"],"confidenceScore":3.754,"wikiLink":"http://en.wikipedia.org/wiki/Poland","matchedText":"Poland","freebaseId":"/m/05qhw","relevanceScore":0,"entityEnglishId":"Poland","startingPos":31,"endingPos":37,"wikidataId":"Q36"}]},"time":0.003654,"ok":true} -2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"type":["Place","PopulatedPlace","Country"],"matchingTokens":[6],"entityId":"Poland","freebaseTypes":["/symbols/coat_of_arms_bearer","/media_common/netflix_genre","/business/employer","/biology/breed_origin","/organization/organization_member","/fictional_universe/fictional_setting","/symbols/name_source","/location/dated_location","/sports/sports_team_location","/location/country","/government/governmental_jurisdiction","/travel/travel_destination","/film/film_festival_focus","/location/statistical_region","/sports/sport_country","/military/military_combatant","/film/film_location","/location/location","/organization/organization_scope","/food/beer_country_region","/book/book_subject","/organization/organization_founder","/symbols/flag_referent","/business/business_location","/periodicals/newspaper_circulation_area","/olympics/olympic_participating_country"],"confidenceScore":3.754,"wikiLink":"http://en.wikipedia.org/wiki/Poland","matchedText":"Poland","freebaseId":"/m/05qhw","relevanceScore":0,"entityEnglishId":"Poland","startingPos":31,"endingPos":37,"wikidataId":"Q36"} -2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 31 -2023-10-27 14:09:01.063 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : Question: 37 -2023-10-27 14:09:01.070 DEBUG 11764 --- [nio-8086-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf -2023-10-27 14:09:01.071  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43d20ac8 -2023-10-27 14:09:01.071 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:01.072  INFO 11764 --- [nio-8086-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:01.073  INFO 11764 --- [nio-8086-exec-1] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:01.073 DEBUG 11764 --- [nio-8086-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "31"^^xsd:nonNegativeInteger . - _:b1 oa:end "37"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:01.083 DEBUG 11764 --- [nio-8086-exec-1] e.w.q.component.QanaryServiceController  : processing took: 391 ms -2023-10-27 14:09:10.786  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:10.786  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:10.787  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:10.787  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : process: eu.wdaqua.qanary.commons.QanaryMessage@4bfeb21 -2023-10-27 14:09:10.800  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7e2bb164 -2023-10-27 14:09:10.800 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:10.800  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:10.801  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:10.807 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 -2023-10-27 14:09:10.807  INFO 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql -2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:10.808  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : URL: http://api.textrazor.com -2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP POST http://api.textrazor.com -2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[text/plain, application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json, */*] -2023-10-27 14:09:10.808 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Writing [{text=[Is samurai champloo a piece of original work or an adaptation?], extractors=[entities]}] as "application/x-www-form-urlencoded" -2023-10-27 14:09:10.808  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1512567479 -2023-10-27 14:09:10.921 DEBUG 11764 --- [nio-8086-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@536bb63 -2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [java.lang.String] as "application/json" -2023-10-27 14:09:11.142  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : request was actually executed: http://api.textrazor.com -2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : JSON: {"response":{"language":"eng","languageIsReliable":true,"entities":[{"id":0,"matchingTokens":[1],"entityId":"Samurai","freebaseTypes":["/film/film_subject","/fictional_universe/character_occupation","/people/profession","/book/book_subject","/royalty/system_of_nobility","/royalty/noble_title"],"confidenceScore":3.575,"wikiLink":"http://en.wikipedia.org/wiki/Samurai","matchedText":"samurai","freebaseId":"/m/01183wql","relevanceScore":0.08118,"entityEnglishId":"Samurai","startingPos":3,"endingPos":10,"wikidataId":"Q38142"},{"id":1,"type":["ComicBook","Work","WrittenWork","Comics","Manga"],"matchingTokens":[1,2],"entityId":"Samurai Champloo","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.669,"wikiLink":"http://en.wikipedia.org/wiki/Samurai_Champloo","matchedText":"samurai champloo","freebaseId":"/m/0324s1","relevanceScore":0.02947,"entityEnglishId":"Samurai Champloo","startingPos":3,"endingPos":19,"wikidataId":"Q143276"}]},"time":0.004887,"ok":true} -2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":0,"matchingTokens":[1],"entityId":"Samurai","freebaseTypes":["/film/film_subject","/fictional_universe/character_occupation","/people/profession","/book/book_subject","/royalty/system_of_nobility","/royalty/noble_title"],"confidenceScore":3.575,"wikiLink":"http://en.wikipedia.org/wiki/Samurai","matchedText":"samurai","freebaseId":"/m/01183wql","relevanceScore":0.08118,"entityEnglishId":"Samurai","startingPos":3,"endingPos":10,"wikidataId":"Q38142"} -2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 3 -2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 10 -2023-10-27 14:09:11.142 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: {"id":1,"type":["ComicBook","Work","WrittenWork","Comics","Manga"],"matchingTokens":[1,2],"entityId":"Samurai Champloo","freebaseTypes":["/tv/tv_program"],"confidenceScore":1.669,"wikiLink":"http://en.wikipedia.org/wiki/Samurai_Champloo","matchedText":"samurai champloo","freebaseId":"/m/0324s1","relevanceScore":0.02947,"entityEnglishId":"Samurai Champloo","startingPos":3,"endingPos":19,"wikidataId":"Q143276"} -2023-10-27 14:09:11.143 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 3 -2023-10-27 14:09:11.143 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : Question: 19 -2023-10-27 14:09:11.147 DEBUG 11764 --- [nio-8086-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 -2023-10-27 14:09:11.147  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a7f6ce6 -2023-10-27 14:09:11.147 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:11.149  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "10"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.149  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "10"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.149 DEBUG 11764 --- [nio-8086-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "10"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.156  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@46360bbf -2023-10-27 14:09:11.156 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: prefix qa: -prefix oa: -prefix xsd: - -INSERT { -GRAPH ?graph { - ?a a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time . -}} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:09:11.158  INFO 11764 --- [nio-8086-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.158  INFO 11764 --- [nio-8086-exec-3] e.w.q.component.textrazor.ner.TextRazor  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.158 DEBUG 11764 --- [nio-8086-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfSpotInstance . - ?a oa:hasTarget _:b0 . - _:b0 oa:SpecificResource . - _:b0 oa:hasSource . - _:b0 oa:hasSelector _:b1 . - _:b1 oa:TextPositionSelector . - _:b1 oa:start "3"^^xsd:nonNegativeInteger . - _:b1 oa:end "19"^^xsd:nonNegativeInteger . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:09:11.163 DEBUG 11764 --- [nio-8086-exec-3] e.w.q.component.QanaryServiceController  : processing took: 377 ms diff --git a/qanary-component-NER-TextRazor/pom.xml b/qanary-component-NER-TextRazor/pom.xml index be4623084..a931d9d80 100644 --- a/qanary-component-NER-TextRazor/pom.xml +++ b/qanary-component-NER-TextRazor/pom.xml @@ -27,11 +27,6 @@ qa.component ${qanary.component.version} - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-NER-TextRazor/src/main/resources/config/application.properties b/qanary-component-NER-TextRazor/src/main/resources/config/application.properties index 0630c3302..5568cb573 100644 --- a/qanary-component-NER-TextRazor/src/main/resources/config/application.properties +++ b/qanary-component-NER-TextRazor/src/main/resources/config/application.properties @@ -47,4 +47,4 @@ qanary.webservicecalls.cache.specs=maximumSize=10000,expireAfterAccess=5s # textrazor service textrazor.api.live.test.active=true textrazor.api.url=http://api.textrazor.com -textrazor.api.key=7411ec7b19fd78780cd60dbb07eaee0b9b05f63e8df210c6841c8334 +textrazor.api.key= diff --git a/qanary-component-QB-GAnswerWrapper/pom.xml b/qanary-component-QB-GAnswerWrapper/pom.xml index c72562f87..51ac996e5 100644 --- a/qanary-component-QB-GAnswerWrapper/pom.xml +++ b/qanary-component-QB-GAnswerWrapper/pom.xml @@ -10,7 +10,7 @@ org.springframework.boot spring-boot-starter-parent - 2.6.7 + 2.7.0 @@ -50,15 +50,16 @@ + org.springframework.boot spring-boot-starter-web - - de.codecentric - spring-boot-admin-starter-client - ${spring-boot-admin.version} - + + de.codecentric + spring-boot-admin-starter-client + ${spring-boot-admin.version} + org.hamcrest hamcrest-all diff --git a/qanary-component-QB-MonoliticWrapper/pom.xml b/qanary-component-QB-MonoliticWrapper/pom.xml index 83a94e299..a57c05b14 100644 --- a/qanary-component-QB-MonoliticWrapper/pom.xml +++ b/qanary-component-QB-MonoliticWrapper/pom.xml @@ -32,11 +32,6 @@ - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.apache.logging.log4j log4j-to-slf4j diff --git a/qanary-component-QB-PlatypusWrapper/nohup.out b/qanary-component-QB-PlatypusWrapper/nohup.out deleted file mode 100644 index 37bc56b5f..000000000 --- a/qanary-component-QB-PlatypusWrapper/nohup.out +++ /dev/null @@ -1,5294 +0,0 @@ - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.3.1 -Spring Boot Version: 2.7.9 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:22.606  INFO 9654 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 9654 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) -2023-10-27 12:09:22.612 DEBUG 9654 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 -2023-10-27 12:09:22.624  INFO 9654 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:47.912  INFO 9654 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = PlatypusQueryBuilder -spring.application.description = PlatypusQueryBuilder is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:48.047  WARN 9654 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:49.066  WARN 9654 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:49.897  INFO 9654 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 12:09:49.962  INFO 9654 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 12:09:49.983  INFO 9654 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 12:09:50.010  INFO 9654 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 12:09:50.022  INFO 9654 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@3d4d3fe7 -2023-10-27 12:09:50.050  INFO 9654 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 12:09:54.603  INFO 9654 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 12:09:54.603  INFO 9654 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 12:09:54.697  INFO 9654 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 12:10:01.621  INFO 9654 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 12:10:01.811  INFO 9654 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 12:10:01.811  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 12:10:01.813  INFO 9654 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 12:10:01.820  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3a01773b -2023-10-27 12:10:02.261  WARN 9654 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 12:10:02.262  INFO 9654 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 12:10:02.262  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 12:10:02.263  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:10:02.263  INFO 9654 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 12:10:02.401 ERROR 9654 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.3.1 -Spring Boot Version: 2.7.9 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:51.614  INFO 11767 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 11767 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) -2023-10-27 12:15:51.665 DEBUG 11767 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 -2023-10-27 12:15:51.682  INFO 11767 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:23.333  INFO 11767 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = PlatypusQueryBuilder -spring.application.description = PlatypusQueryBuilder is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:23.635  WARN 11767 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:25.388  WARN 11767 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:26.994  INFO 11767 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 12:16:27.014  INFO 11767 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 12:16:27.015  INFO 11767 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 12:16:27.066  INFO 11767 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 12:16:27.071  INFO 11767 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@7dac3fd8 -2023-10-27 12:16:27.087  INFO 11767 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 12:16:33.728  INFO 11767 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 12:16:33.728  INFO 11767 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 12:16:33.887  INFO 11767 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 12:16:45.588  INFO 11767 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 12:16:45.741  INFO 11767 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 12:16:45.742  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 12:16:45.743  INFO 11767 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 12:16:45.745  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 12:16:45.746  INFO 11767 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 12:16:45.746  INFO 11767 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 12:16:45.747  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5c1f6d57 -2023-10-27 12:16:46.173  WARN 11767 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 12:16:46.175  INFO 11767 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 12:16:46.176  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 12:16:46.179  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:16:46.180  INFO 11767 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 12:16:46.394 ERROR 11767 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.3.1 -Spring Boot Version: 2.7.9 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:49.810  INFO 28734 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 28734 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) -2023-10-27 13:37:49.852 DEBUG 28734 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 -2023-10-27 13:37:49.857  INFO 28734 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:21.585  INFO 28734 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = PlatypusQueryBuilder -spring.application.description = PlatypusQueryBuilder is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:21.682  WARN 28734 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:23.026  WARN 28734 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:24.626  INFO 28734 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:38:24.713  INFO 28734 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 13:38:24.773  INFO 28734 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 13:38:24.917  INFO 28734 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:38:24.966  INFO 28734 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@7dac3fd8 -2023-10-27 13:38:25.047  INFO 28734 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 13:38:30.761  INFO 28734 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:38:30.761  INFO 28734 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:38:30.814  INFO 28734 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 13:38:35.910  INFO 28734 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:38:36.073  INFO 28734 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:38:36.074  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:38:36.075  INFO 28734 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:38:36.076  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5c1f6d57 -2023-10-27 13:38:36.554  WARN 28734 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 13:38:36.566  INFO 28734 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 13:38:36.568  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 13:38:36.568  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:38:36.569  INFO 28734 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 13:38:36.809 ERROR 28734 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.3.1 -Spring Boot Version: 2.7.9 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:52.491  INFO 30125 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 30125 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) -2023-10-27 13:38:52.514 DEBUG 30125 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 -2023-10-27 13:38:52.527  INFO 30125 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:21.880  INFO 30125 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = PlatypusQueryBuilder -spring.application.description = PlatypusQueryBuilder is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:22.104  WARN 30125 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:23.089  WARN 30125 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:24.610  INFO 30125 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:39:24.694  INFO 30125 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 13:39:24.716  INFO 30125 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 13:39:24.854  INFO 30125 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:39:24.879  INFO 30125 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@7dac3fd8 -2023-10-27 13:39:24.938  INFO 30125 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 13:39:30.523  INFO 30125 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:39:30.523  INFO 30125 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:39:30.570  INFO 30125 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 13:39:37.466  INFO 30125 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:39:37.574  INFO 30125 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:39:37.575  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:39:37.576  INFO 30125 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:39:37.577  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@5c1f6d57 -2023-10-27 13:39:37.841  WARN 30125 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 13:39:37.842  INFO 30125 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 13:39:37.842  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 13:39:37.842  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:39:37.842  INFO 30125 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 13:39:38.066 ERROR 30125 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.3.1 -Spring Boot Version: 2.7.9 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:40:18.776  INFO 31141 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 31141 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) -2023-10-27 13:40:18.778 DEBUG 31141 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 -2023-10-27 13:40:18.779  INFO 31141 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:40:21.192  INFO 31141 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5555 -spring.application.name = PlatypusQueryBuilder -spring.application.description = PlatypusQueryBuilder is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:40:21.210  WARN 31141 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:40:21.323  WARN 31141 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:40:21.455  INFO 31141 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:40:21.463  INFO 31141 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5555/api-docs -2023-10-27 13:40:21.464  INFO 31141 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5555/swagger-ui.html -2023-10-27 13:40:21.475  INFO 31141 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:40:21.476  INFO 31141 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@3d4d3fe7 -2023-10-27 13:40:21.482  INFO 31141 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 13:40:21.989  INFO 31141 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:40:21.989  INFO 31141 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:40:22.002  INFO 31141 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 13:40:23.003  INFO 31141 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:40:23.015  INFO 31141 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:40:23.016  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:40:23.016  INFO 31141 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:40:23.017  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@3a01773b -2023-10-27 13:40:23.104  WARN 31141 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 5555 is already in use -2023-10-27 13:40:23.104  INFO 31141 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 13:40:23.104  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 13:40:23.104  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:40:23.104  INFO 31141 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 13:40:23.145 ERROR 31141 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 5555 was already in use. - -Action: - -Identify and stop the process that's listening on port 5555 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -PlatypusQueryBuilder -- PlatypusQueryBuilder is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.3.1 -Spring Boot Version: 2.7.9 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:41:45.118  INFO 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Starting Application v3.3.1 using Java 21 on fedora with PID 31614 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper) -2023-10-27 13:41:45.120 DEBUG 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Running with Spring Boot v2.7.9, Spring v5.3.25 -2023-10-27 13:41:45.121  INFO 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:41:47.474  INFO 31614 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 5982 -spring.application.name = PlatypusQueryBuilder -spring.application.description = PlatypusQueryBuilder is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:41:47.494  WARN 31614 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:41:47.620  WARN 31614 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:41:47.712  INFO 31614 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:41:47.717  INFO 31614 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs available at http://0.0.0.0:5982/api-docs -2023-10-27 13:41:47.717  INFO 31614 --- [ main] w.q.c.p.q.PlatypusQueryBuilderController : Service API docs UI available at http://0.0.0.0:5982/swagger-ui.html -2023-10-27 13:41:47.725  INFO 31614 --- [ main] e.w.q.c.p.qb.PlatypusQueryBuilder  : supportedLang: [en, fr, es] -2023-10-27 13:41:47.725  INFO 31614 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder@41382722 -2023-10-27 13:41:47.729  INFO 31614 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: jar:file:/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-PlatypusWrapper/target/qanary-component-QB-PlatypusWrapper-3.3.1.jar!/BOOT-INF/classes!/component-description.ttl -2023-10-27 13:41:48.125  INFO 31614 --- [ main] q.c.QanaryComponentDescriptionController : result for 'TURTLE': -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:41:48.126  INFO 31614 --- [ main] q.c.QanaryComponentDescriptionController : size of loaded model: 16 triples as TURTLE -@prefix ISO6391: . -@prefix qa: . -@prefix rdfs: . - -qa:Platypus a qa:QanaryComponentQB; - rdfs:label "Qanary component: Platypus Query Builder"@en; - qa:hasInputAnnotations [ a qa:AnnotationQuestion; - qa:supportedLanguages ISO6391:es , ISO6391:fr , ISO6391:en - ]; - qa:hasOutputAnnotations [ a qa:AnnotationAnswer; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerType; - qa:supportedKnowledgeGraphs - ]; - qa:hasOutputAnnotations [ a qa:AnnotationOfAnswerSPARQL; - qa:supportedKnowledgeGraphs - ] . - -2023-10-27 13:41:48.134  INFO 31614 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=100000,expireAfterAccess=7d -2023-10-27 13:41:49.173  INFO 31614 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:41:49.183  INFO 31614 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:41:49.183  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:41:49.184  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@6794ac0b -2023-10-27 13:41:49.305  INFO 31614 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now -2023-10-27 13:41:49.305  INFO 31614 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. -2023-10-27 13:41:49.320  INFO 31614 --- [ main] e.w.q.c.platypuswrapper.qb.Application  : Started Application in 4.67 seconds (JVM running for 5.205) -2023-10-27 13:41:49.441  INFO 31614 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 68984f8d521e -2023-10-27 13:53:40.703  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:40.719  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:40.834  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:40.980  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@b243847 -2023-10-27 13:53:41.677  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql -2023-10-27 13:53:41.677 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:53:41.800  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5dc0e763 -2023-10-27 13:53:41.803 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:41.838  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:41.839  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:41.848 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:41.848  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 found in urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 at http://localhost:8080/sparql -2023-10-27 13:53:41.883 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? -2023-10-27 13:53:41.946  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20universities%20have%20more%20than%20200000%20students?&lang=en -2023-10-27 13:53:41.946 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20universities%20have%20more%20than%20200000%20students?&lang=en -2023-10-27 13:53:41.947  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20universities%20have%20more%20than%20200000%20students?&lang=en -2023-10-27 13:53:41.960 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520universities%2520have%2520more%2520than%2520200000%2520students?&lang=en -2023-10-27 13:53:42.000 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:53:42.051  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2061339155 -2023-10-27 13:53:54.503 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6fbdea91 -2023-10-27 13:53:54.504 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:53:54.633 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:53:57.238  INFO 31614 --- [nio-5982-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:57.239  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:57.239  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"},"inGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251","outGraph":"urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251"} -2023-10-27 13:53:57.239  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@204a2ff4 -2023-10-27 13:53:57.250  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql -2023-10-27 13:53:57.250 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:53:57.261  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49a1a72a -2023-10-27 13:53:57.261 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:57.263  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:57.264  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:57.270 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 -2023-10-27 13:53:57.270  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 found in urn:graph:0ad81c4a-edf0-4bfe-8793-55b7a4f9b251 at http://localhost:8080/sparql -2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is TNFAIP1 ? -2023-10-27 13:53:57.272  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20TNFAIP1%20?&lang=en -2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20is%20TNFAIP1%20?&lang=en -2023-10-27 13:53:57.272  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20TNFAIP1%20?&lang=en -2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520is%2520TNFAIP1%2520?&lang=en -2023-10-27 13:53:57.272 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:53:57.273  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-196862961 -2023-10-27 13:53:59.093 DEBUG 31614 --- [nio-5982-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@11a0aa8c -2023-10-27 13:53:59.093 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:53:59.093 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:53:59.103  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=What is TNFAIP1 ?, lang=en -2023-10-27 13:53:59.104  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... -2023-10-27 13:53:59.117 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhat\twhat\tPRON\t_\t_\t0\troot\t_\t_\n2\tis\tbe\tVERB\t_\t_\t1\tcop\t_\t_\n3\tTNFAIP1\ttnfaip1\tNOUN\t_\t_\t1\tnsubj\t_\t_\n4\t?\t?\tSYM\t_\t_\t1\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?TNFAIP1 WHERE {\n\tBIND(wd:Q18032040 AS ?TNFAIP1)\n} LIMIT 100","platypus:term":"{ ?TNFAIP1 | [?TNFAIP1 = ] }","result":{"@id":"wd:Q18032040","alternateName":[{"@language":"en","@value":"B12"},{"@language":"en","@value":"B12"},{"@language":"en","@value":"EDP1"},{"@language":"en","@value":"EDP1"},{"@language":"en","@value":"B61"},{"@language":"en","@value":"B61"},{"@language":"en","@value":"hBACURD2"},{"@language":"en","@value":"hBACURD2"},{"@language":"en","@value":"BTBD34"},{"@language":"en","@value":"BTBD34"},{"@language":"en","@value":"TNF alpha induced protein 1"},{"@language":"en","@value":"TNF alpha induced protein 1"}],"description":{"@language":"en","@value":"protein-coding gene in the species Homo sapiens"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/TNFAIP1","@type":"Article","articleBody":"BTB/POZ domain-containing protein TNFAIP1 is a protein that in humans is encoded by the TNFAIP1 gene.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"TNFAIP1"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/0/00/Ideogram_human_chromosome_17.svg/320px-Ideogram_human_chromosome_17.svg.png","height":128,"width":320},"name":{"@language":"en","@value":"TNFAIP1"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/TNFAIP1"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/TNFAIP1"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/TNFAIP1"}]},"resultScore":0.04} -2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?TNFAIP1 WHERE { - BIND(wd:Q18032040 AS ?TNFAIP1) -} LIMIT 100 -2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.04 -2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' -2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null -2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' -2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: http://www.wikidata.org/entity/Q18032040 (http://www.w3.org/2001/XMLSchema#anyURI) -2023-10-27 13:53:59.118 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' -2023-10-27 13:53:59.126 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_25385d3a-243d-4d38-918a-a67487af8f39 -2023-10-27 13:53:59.129 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "wd:Q18032040" )( ?confidence, "0.04"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" )( ?graph, ) -2023-10-27 13:53:59.129  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4847fe5a -2023-10-27 13:53:59.129 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (now() as ?time) . -} -2023-10-27 13:53:59.145  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" . - ?newAnnotation qa:score "0.04"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.146  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" . - ?newAnnotation qa:score "0.04"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.146  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b00fd29 -2023-10-27 13:53:59.146 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - - ?answer rdf:type qa:Answer . - ?answer rdf:value ?answerValue . - - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget ?targetQuestion . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score ?confidence . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy ?application . - - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value ?answerDataType . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (now() as ?time) . -} -2023-10-27 13:53:59.151  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.04"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q18032040" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.04"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.152  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.04"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q18032040" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.04"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.152 DEBUG 31614 --- [nio-5982-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?TNFAIP1 WHERE {\tBIND(wd:Q18032040 AS ?TNFAIP1)} LIMIT 100" . - ?newAnnotation qa:score "0.04"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.168 DEBUG 31614 --- [nio-5982-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.04"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q18032040" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.04"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:53:59.180 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.component.QanaryServiceController  : processing took: 1941 ms -2023-10-27 13:54:15.320  INFO 31614 --- [nio-5982-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:15.320  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:15.321  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"},"inGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6","outGraph":"urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6"} -2023-10-27 13:54:15.321  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@1af36d8e -2023-10-27 13:54:15.330  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql -2023-10-27 13:54:15.331 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:54:15.342  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1eccea08 -2023-10-27 13:54:15.342 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:15.345  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:15.345  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:15.351 DEBUG 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 -2023-10-27 13:54:15.351  INFO 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c4e8088-cfe8-4547-9d34-7ba28f9ec236 found in urn:graph:4efabb51-2b75-4ee1-be38-6662ff91d0e6 at http://localhost:8080/sparql -2023-10-27 13:54:15.353 DEBUG 31614 --- [nio-5982-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did Kobe Bryant leave the Lakers when LeBron James joined that team? -2023-10-27 13:54:15.354  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20Kobe%20Bryant%20leave%20the%20Lakers%20when%20LeBron%20James%20joined%20that%20team?&lang=en -2023-10-27 13:54:15.354 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Did%20Kobe%20Bryant%20leave%20the%20Lakers%20when%20LeBron%20James%20joined%20that%20team?&lang=en -2023-10-27 13:54:15.354  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20Kobe%20Bryant%20leave%20the%20Lakers%20when%20LeBron%20James%20joined%20that%20team?&lang=en -2023-10-27 13:54:15.354 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Did%2520Kobe%2520Bryant%2520leave%2520the%2520Lakers%2520when%2520LeBron%2520James%2520joined%2520that%2520team?&lang=en -2023-10-27 13:54:15.354 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:54:15.355  INFO 31614 --- [nio-5982-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=222484989 -2023-10-27 13:54:17.003 DEBUG 31614 --- [nio-5982-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@441ea1b5 -2023-10-27 13:54:17.004 DEBUG 31614 --- [nio-5982-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:54:17.005 ERROR 31614 --- [nio-5982-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:55:14.372  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:14.373  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:14.373  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"},"inGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b","outGraph":"urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b"} -2023-10-27 13:55:14.373  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@2eab860b -2023-10-27 13:55:14.384  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql -2023-10-27 13:55:14.384 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:55:14.413  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@206c7dae -2023-10-27 13:55:14.413 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:14.414  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:14.415  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:14.420 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 -2023-10-27 13:55:14.420  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_292275b4-ee49-491d-adba-fda2ad60f6d6 found in urn:graph:f66f91e6-d9ee-4f7f-9dd8-e0057570a28b at http://localhost:8080/sparql -2023-10-27 13:55:14.422 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the magazine in which hunter x hunter is published established? -2023-10-27 13:55:14.422  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20magazine%20in%20which%20hunter%20x%20hunter%20is%20published%20established?&lang=en -2023-10-27 13:55:14.422 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20magazine%20in%20which%20hunter%20x%20hunter%20is%20published%20established?&lang=en -2023-10-27 13:55:14.422  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20magazine%20in%20which%20hunter%20x%20hunter%20is%20published%20established?&lang=en -2023-10-27 13:55:14.422 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=when%2520was%2520the%2520magazine%2520in%2520which%2520hunter%2520x%2520hunter%2520is%2520published%2520established?&lang=en -2023-10-27 13:55:14.423 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:55:14.423  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=82601702 -2023-10-27 13:55:16.094 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@61517795 -2023-10-27 13:55:16.094 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:55:16.096 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:19.352  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@735ca3e1 -2023-10-27 13:55:19.362  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql -2023-10-27 13:55:19.362 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:55:19.370  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7d9b43fa -2023-10-27 13:55:19.370 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:19.371  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:19.371  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:19.379 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f -2023-10-27 13:55:19.379  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f found in urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea at http://localhost:8080/sparql -2023-10-27 13:55:19.381 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation which forest is bigger, Amazon Rainforest or Congo Basin? -2023-10-27 13:55:19.382  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=which%20forest%20is%20bigger,%20Amazon%20Rainforest%20or%20Congo%20Basin?&lang=en -2023-10-27 13:55:19.382 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=which%20forest%20is%20bigger,%20Amazon%20Rainforest%20or%20Congo%20Basin?&lang=en -2023-10-27 13:55:19.382  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=which%20forest%20is%20bigger,%20Amazon%20Rainforest%20or%20Congo%20Basin?&lang=en -2023-10-27 13:55:19.382 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=which%2520forest%2520is%2520bigger,%2520Amazon%2520Rainforest%2520or%2520Congo%2520Basin?&lang=en -2023-10-27 13:55:19.382 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:55:19.382  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1410940707 -2023-10-27 13:55:24.948 DEBUG 31614 --- [nio-5982-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@79a4c891 -2023-10-27 13:55:24.949 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:55:24.950 ERROR 31614 --- [nio-5982-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:37.219  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@4cdd939 -2023-10-27 13:55:37.230  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql -2023-10-27 13:55:37.230 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:55:37.252  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c22d51b -2023-10-27 13:55:37.252 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:37.253  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:37.253  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:37.258 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 -2023-10-27 13:55:37.258  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 found in urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 at http://localhost:8080/sparql -2023-10-27 13:55:37.261 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many public holidays does the state Bavaria have in a year? -2023-10-27 13:55:37.262  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20public%20holidays%20does%20the%20state%20Bavaria%20have%20in%20a%20year?&lang=en -2023-10-27 13:55:37.262 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20public%20holidays%20does%20the%20state%20Bavaria%20have%20in%20a%20year?&lang=en -2023-10-27 13:55:37.262  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20public%20holidays%20does%20the%20state%20Bavaria%20have%20in%20a%20year?&lang=en -2023-10-27 13:55:37.262 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520public%2520holidays%2520does%2520the%2520state%2520Bavaria%2520have%2520in%2520a%2520year?&lang=en -2023-10-27 13:55:37.263 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:55:37.263  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-134904073 -2023-10-27 13:56:35.637  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:35.637  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:35.638  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:35.638  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@53338071 -2023-10-27 13:56:35.647  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql -2023-10-27 13:56:35.647 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:56:35.656  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5df46467 -2023-10-27 13:56:35.657 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:56:35.659  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:35.659  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:35.666 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d -2023-10-27 13:56:35.666  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d found in urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 at http://localhost:8080/sparql -2023-10-27 13:56:35.669 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Goethe’s unmarried partner born ? -2023-10-27 13:56:35.670  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Where%20was%20Goethe%E2%80%99s%20unmarried%20partner%20born%20?&lang=en -2023-10-27 13:56:35.670 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Where%20was%20Goethe%E2%80%99s%20unmarried%20partner%20born%20?&lang=en -2023-10-27 13:56:35.670  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Where%20was%20Goethe%E2%80%99s%20unmarried%20partner%20born%20?&lang=en -2023-10-27 13:56:35.670 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Where%2520was%2520Goethe%25E2%2580%2599s%2520unmarried%2520partner%2520born%2520?&lang=en -2023-10-27 13:56:35.670 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:56:35.670  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=644210054 -2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:06.347  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@517519fa -2023-10-27 13:57:06.357  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql -2023-10-27 13:57:06.357 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:57:06.369  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fb2fda4 -2023-10-27 13:57:06.370 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:06.371  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:06.372  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:06.381 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:06.382  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 found in urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c at http://localhost:8080/sparql -2023-10-27 13:57:06.384 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was the University of Hamburg founded? -2023-10-27 13:57:06.384  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=When%20was%20the%20University%20of%20Hamburg%20founded?&lang=en -2023-10-27 13:57:06.384 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=When%20was%20the%20University%20of%20Hamburg%20founded?&lang=en -2023-10-27 13:57:06.384  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=When%20was%20the%20University%20of%20Hamburg%20founded?&lang=en -2023-10-27 13:57:06.384 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=When%2520was%2520the%2520University%2520of%2520Hamburg%2520founded?&lang=en -2023-10-27 13:57:06.385 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:57:06.385  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=423100088 -2023-10-27 13:57:20.737 DEBUG 31614 --- [nio-5982-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1e8ff79f -2023-10-27 13:57:20.738 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:20.739 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:57:20.742  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=When was the University of Hamburg founded?, lang=en -2023-10-27 13:57:20.742  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... -2023-10-27 13:57:20.748 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhen\twhen\tADV\t_\t_\t2\tadvmod\t_\t_\n2\twas\tbe\tVERB\t_\t_\t7\taux:pass\t_\t_\n3\tthe\tthe\tDET\t_\t_\t4\tdet\t_\t_\n4\tUniversity\tUniversity\tNOUN\t_\t_\t7\tnsubj:pass\t_\t_\n5\tof\tof\tADP\t_\t_\t6\tcase\t_\t_\n6\tHamburg\tHamburg\tNOUN\t_\t_\t4\tnmod\t_\t_\n7\tfounded\tfound\tVERB\t_\t_\t0\troot\t_\t_\n8\t?\t?\tSYM\t_\t_\t7\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result3 WHERE {\n\twd:Q156725 wdt:P571 ?result3 .\n} LIMIT 100","platypus:term":"{ ?result3 | <, , ?result3> }","result":{"@reverse":{"dateCreated":{"@id":"wd:Q156725","@type":["EducationalOrganization","Organization","HighSchool"],"alternateName":[{"@language":"en","@value":"Hamburg University"},{"@language":"en","@value":"Hamburg University"}],"description":{"@language":"en","@value":"university in Hamburg, Germany"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/University_of_Hamburg","@type":"Article","articleBody":"The University of Hamburg is a public research university in Hamburg, Germany. It was founded on 28 March 1919 by combining the previous General Lecture System, the Hamburg Colonial Institute, and the Academic College. The main campus is located in the central district of Rotherbaum, with affiliated institutes and research centres distributed around the city-state. Seven Nobel Prize winners and one Wolf Prize winner are affiliated with UHH.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"University of Hamburg"},"hasPart":[{"@id":"wd:Q2324644","@type":"Organization","alternateName":[{"@language":"en","@value":"Hamburg State and University Library"},{"@language":"en","@value":"Hamburg State and University Library"}],"description":{"@language":"en","@value":"scientific general library of the city-state of Hamburg"},"name":{"@language":"en","@value":"Hamburg State and University Library Carl von Ossietzky"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/158350553"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Staats-_und_Universit%C3%A4tsbibliothek_Hamburg"}],"url":{"@type":"xsd:anyURI","@value":"http://www.sub.uni-hamburg.de/home.html"}},{"@id":"wd:Q1998467","@type":"Organization","sameAs":[{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/134074187"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Nordost-Institut"}]},{"@id":"wd:Q23441223","@type":"Organization","alternateName":[{"@language":"en","@value":"ÄZB"},{"@language":"en","@value":"ÄZB"}],"description":{"@language":"en","@value":"Medical library in Hamburg Germany"},"name":{"@language":"en","@value":"Central Medical Library"},"sameAs":{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/%C3%84rztliche_Zentralbibliothek"},"url":{"@type":"xsd:anyURI","@value":"http://www.uke.de/aerztliche-zentralbibliothek"}},{"@id":"wd:Q65156553","@type":"Organization","sameAs":{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Abteilung_Ostrechtsforschung_der_Universit%C3%A4t_Hamburg"}}],"http://www.opengis.net/ont/geosparql#":{"@id":"http://www.opengis.net/ont/geosparql#53.56694444444487,9.983888888888968","@type":"GeoCoordinates","http://www.opengis.net/ont/geosparql#asWKT":{"@type":"http://www.opengis.net/ont/geosparql#wktLiteral","@value":"POINT (9.983888888888968 53.56694444444487)"},"latitude":53.56694444444487,"longitude":9.983888888888968},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/88/Seal_of_the_University_of_Hamburg.svg/320px-Seal_of_the_University_of_Hamburg.svg.png","height":320,"width":320},"name":{"@language":"en","@value":"University of Hamburg"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%90%D7%95%D7%A0%D7%99%D7%91%D7%A8%D7%A1%D7%99%D7%98%D7%AA_%D7%94%D7%9E%D7%91%D7%95%D7%A8%D7%92"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Hamburg_%C3%9Cniversitesi"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Universit%C3%A4t_Hamburg"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%AC%D8%A7%D9%85%D8%B9%D8%A9_%D9%87%D8%A7%D9%85%D8%A8%D9%88%D8%B1%D8%BA"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CE%B1%CE%BD%CE%B5%CF%80%CE%B9%CF%83%CF%84%CE%AE%CE%BC%CE%B9%CE%BF_%CF%84%CE%BF%CF%85_%CE%91%CE%BC%CE%B2%CE%BF%CF%8D%CF%81%CE%B3%CE%BF%CF%85"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Universit%C3%A0_di_Amburgo"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Universitas_Hamburgensis"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Chuo_Kikuu_cha_Hamburg"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Hamburgo_universitetas"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Universitat_d%27Hamburg"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Universitas_Hamburg"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/University_of_Hamburg"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%93%D0%B0%D0%BC%D0%B1%D1%83%D1%80%D0%B7%D1%8C%D0%BA%D0%B8%D0%B9_%D1%83%D0%BD%D1%96%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%82%D0%B5%D1%82"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Uniwersytet_Hamburski"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Universidad_de_Hamburgo"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%8F%E3%83%B3%E3%83%96%E3%83%AB%E3%82%AF%E5%A4%A7%E5%AD%A6"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E6%B1%89%E5%A0%A1%E5%A4%A7%E5%AD%A6"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Universit%C3%A4t_Hamburg"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/6944322"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%A1%E0%B8%AB%E0%B8%B2%E0%B8%A7%E0%B8%B4%E0%B8%97%E0%B8%A2%E0%B8%B2%E0%B8%A5%E0%B8%B1%E0%B8%A2%E0%B8%AE%E0%B8%B1%E0%B8%A1%E0%B8%9A%E0%B8%A7%E0%B8%A3%E0%B9%8C%E0%B8%84"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%ED%95%A8%EB%B6%80%EB%A5%B4%ED%81%AC_%EB%8C%80%ED%95%99%EA%B5%90"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%93%D0%B0%D0%BC%D0%B1%D1%83%D1%80%D0%B3%D1%81%D0%BA%D0%B8%D0%B9_%D1%83%D0%BD%D0%B8%D0%B2%D0%B5%D1%80%D1%81%D0%B8%D1%82%D0%B5%D1%82"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Universidade_de_Hamburgo"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Univerza_v_Hamburgu"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Universit%C3%A4t_Hamburg"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Universitatea_din_Hamburg"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BA%A1i_h%E1%BB%8Dc_Hamburg"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/05t7c1"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/University-of-Hamburg"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Hampurin_yliopisto"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Unibersidad_ng_Hamburg"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Hamburgi_%C3%9Clikool"},{"@type":"xsd:anyURI","@value":"http://www.instagram.com/uni_hamburg"},{"@type":"xsd:anyURI","@value":"http://twitter.com/unihh"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%B9%E0%AE%AE%E0%AF%8D%E0%AE%AA%E0%AE%B0%E0%AF%8D%E0%AE%95%E0%AF%81_%E0%AE%AA%E0%AE%B2%E0%AF%8D%E0%AE%95%E0%AE%B2%E0%AF%88%E0%AE%95%E0%AF%8D%E0%AE%95%E0%AE%B4%E0%AE%95%E0%AE%AE%E0%AF%8D"},{"@type":"xsd:anyURI","@value":"http://www.facebook.com/uni.hamburg"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/133411557"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Universit%C3%A9_de_Hambourg"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%AF%D8%A7%D9%86%D8%B4%DA%AF%D8%A7%D9%87_%D9%87%D8%A7%D9%85%D8%A8%D9%88%D8%B1%DA%AF"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Hamburgs_universitet"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Universiteit_Hamburg"}],"url":{"@type":"xsd:anyURI","@value":"http://www.uni-hamburg.de/"}}},"@type":"xsd:date","name":"1919-01-01Z","rdf:value":{"@type":"xsd:date","@value":"1919-01-01Z"}},"resultScore":0.42} -2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result3 WHERE { - wd:Q156725 wdt:P571 ?result3 . -} LIMIT 100 -2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.42 -2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' -2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: 1919-01-01Z (http://www.w3.org/2001/XMLSchema#date) -2023-10-27 13:57:20.750 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'literal' -2023-10-27 13:57:20.771 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:20.771 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "1919-01-01Z" )( ?confidence, "0.42"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" )( ?graph, ) -2023-10-27 13:57:20.772  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@674c877d -2023-10-27 13:57:20.772 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (now() as ?time) . -} -2023-10-27 13:57:20.776  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" . - ?newAnnotation qa:score "0.42"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:57:20.777  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" . - ?newAnnotation qa:score "0.42"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:57:20.777  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2fdb09ed -2023-10-27 13:57:20.777 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - - ?answer rdf:type qa:Answer . - ?answer rdf:value ?answerValue . - - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget ?targetQuestion . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score ?confidence . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy ?application . - - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value ?answerDataType . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (now() as ?time) . -} -2023-10-27 13:57:20.791  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.42"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "1919-01-01Z" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.42"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:date . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:57:20.792  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.42"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "1919-01-01Z" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.42"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:date . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:57:20.792 DEBUG 31614 --- [nio-5982-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result3 WHERE {\twd:Q156725 wdt:P571 ?result3 .} LIMIT 100" . - ?newAnnotation qa:score "0.42"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:57:20.819 DEBUG 31614 --- [nio-5982-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.42"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "1919-01-01Z" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.42"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:date . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:57:20.836 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : processing took: 14489 ms -2023-10-27 13:57:48.214  INFO 31614 --- [nio-5982-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:48.214  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:48.215  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"},"inGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de","outGraph":"urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de"} -2023-10-27 13:57:48.215  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@26d20031 -2023-10-27 13:57:48.224  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql -2023-10-27 13:57:48.224 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:57:48.239  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@729bf604 -2023-10-27 13:57:48.240 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:48.241  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:48.242  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:48.249 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 -2023-10-27 13:57:48.250  INFO 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d370f45a-146c-4a92-a84d-cdc030261158 found in urn:graph:76e846af-46e8-4c6c-ac15-e3e16db434de at http://localhost:8080/sparql -2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in the country where ghost in the shell is born, who is the current head of the state? -2023-10-27 13:57:48.252  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20the%20country%20where%20ghost%20in%20the%20shell%20is%20born,%20who%20is%20the%20current%20head%20of%20the%20state?&lang=en -2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=in%20the%20country%20where%20ghost%20in%20the%20shell%20is%20born,%20who%20is%20the%20current%20head%20of%20the%20state?&lang=en -2023-10-27 13:57:48.252  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20the%20country%20where%20ghost%20in%20the%20shell%20is%20born,%20who%20is%20the%20current%20head%20of%20the%20state?&lang=en -2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=in%2520the%2520country%2520where%2520ghost%2520in%2520the%2520shell%2520is%2520born,%2520who%2520is%2520the%2520current%2520head%2520of%2520the%2520state?&lang=en -2023-10-27 13:57:48.252 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:57:48.253  INFO 31614 --- [nio-5982-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-753024794 -2023-10-27 13:57:48.918 DEBUG 31614 --- [nio-5982-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@56425057 -2023-10-27 13:57:48.918 DEBUG 31614 --- [nio-5982-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:57:48.919 ERROR 31614 --- [nio-5982-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:57:55.025  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:55.025  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:55.026  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:55.026  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7bb69825 -2023-10-27 13:57:55.036  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql -2023-10-27 13:57:55.037 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:57:55.046  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@75717923 -2023-10-27 13:57:55.047 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:55.048  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:55.048  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:55.055 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:55.055  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 found in urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 at http://localhost:8080/sparql -2023-10-27 13:57:55.057 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies does the Scream franchise have? -2023-10-27 13:57:55.058  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20does%20the%20Scream%20franchise%20have?&lang=en -2023-10-27 13:57:55.058 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20does%20the%20Scream%20franchise%20have?&lang=en -2023-10-27 13:57:55.058  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20does%20the%20Scream%20franchise%20have?&lang=en -2023-10-27 13:57:55.058 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520movies%2520does%2520the%2520Scream%2520franchise%2520have?&lang=en -2023-10-27 13:57:55.058 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:57:55.058  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-764444990 -2023-10-27 13:57:57.000 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@53b655bc -2023-10-27 13:57:57.001 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:57:57.035 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:57:57.038  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=Where was Goethe’s unmarried partner born ?, lang=en -2023-10-27 13:57:57.038  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... -2023-10-27 13:57:57.043 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : found an answer array, processing just the first result -2023-10-27 13:57:57.043 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhere\twhere\tADV\t_\t_\t7\tadvmod\t_\t_\n2\twas\tbe\tVERB\t_\t_\t7\taux:pass\t_\t_\n3\tGoethe\tGoethe\tNOUN\t_\t_\t6\tnmod:poss\t_\t_\n4\t's\t's\tPART\t_\t_\t3\tcase\t_\t_\n5\tunmarried\tunmarried\tADJ\t_\t_\t6\tamod\t_\t_\n6\tpartner\tpartner\tNOUN\t_\t_\t7\tnsubj:pass\t_\t_\n7\tborn\tbear\tVERB\t_\t_\t0\troot\t_\t_\n8\t?\t?\tSYM\t_\t_\t7\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result78 WHERE {\n\t?arg4 wdt:P19 ?temp79 .\n\twd:Q5879 wdt:P451 ?arg4 .\n\t?temp79 wdt:P625 ?result78 .\n} LIMIT 100","platypus:term":"{ ?result78 | ∃ ?temp79 (, ?result78> ∧ ∃ ?arg4 (<, , ?arg4> ∧ , ?temp79>)) }","result":{"@id":"geo:50.1,8.766666666","@reverse":{"geo":{"@id":"wd:Q3042","@type":["AdministrativeArea","Organization","CivicStructure","House","City","Accommodation","GovernmentBuilding","Place"],"alternateName":[{"@language":"en","@value":"Offenbach"},{"@language":"en","@value":"Offenbach"},{"@language":"en","@value":"Offenbach/Main"},{"@language":"en","@value":"Offenbach/Main"}],"description":{"@language":"en","@value":"city in Hesse, Germany"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Offenbach_am_Main","@type":"Article","articleBody":"Offenbach am Main is a city in Hesse, Germany, on the left bank of the river Main. It borders Frankfurt and is part of the Frankfurt urban area and the larger Frankfurt Rhein-Main urban area. It has a population of 138,335.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Offenbach am Main"},"hasPart":[{"@id":"wd:Q2015467","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Offenbach-Bürgel"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-B%C3%BCrgel"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-B%C3%BCrgel"}]},{"@id":"wd:Q14216964","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"url":{"@type":"xsd:anyURI","@value":"http://www.offenbach.de/index.php"}},{"@id":"wd:Q881631","@type":"Place","description":{"@language":"en","@value":"District of Offenbach, Hesse, Germany"},"name":{"@language":"en","@value":"Lauterborn"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Lauterborn"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Lauterborn"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D9%88%D9%81%D9%86%D8%A8%D8%A7%D8%AE-%D9%84%D8%A7%D9%88%D8%AA%D8%B1%D8%A8%D9%88%D8%B1%D9%86"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach-Lauterborn"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/03mbwkk"}]},{"@id":"wd:Q1791003","@type":"Place","alternateName":[{"@language":"en","@value":"Offenbach-Rosenhöhe"},{"@language":"en","@value":"Offenbach-Rosenhöhe"}],"description":{"@language":"en","@value":"District of Offenbach am Main, Hesse, Germany"},"name":{"@language":"en","@value":"Rosenhöhe"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach-Rosenh%C3%B6he"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Rosenh%C3%B6he"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Rosenh%C3%B6he"}]},{"@id":"wd:Q2015478","@type":"Place","description":{"@language":"en","@value":"District of Offenbach, Hesse, Germany"},"name":{"@language":"en","@value":"Rumpenheim"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Rumpenheim"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Rumpenheim"}]},{"@id":"wd:Q1369228","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"sameAs":{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Mathildenviertel"}},{"@id":"wd:Q2015470","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Kaiserlei"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Kaiserlei"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Kaiserlei"}]},{"@id":"wd:Q314727","@type":"Place","description":{"@language":"en","@value":"district of Offenbach, Hesse, Germany"},"name":{"@language":"en","@value":"Bieber"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0771sy"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach-Bieber"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Bieber"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A8%DB%8C%D8%A8%D8%B1_%28%D8%A7%D9%81%D9%86%D8%A8%D8%A7%D8%AE%29"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Offenbach-Bieber"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/153614826"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Bieber"}]},{"@id":"wd:Q2015481","@type":"Place","description":{"@language":"en","@value":"District of Offenbach am Main, Hesse, Germany"},"name":{"@language":"en","@value":"Offenbach-Tempelsee"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Tempelsee"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Tempelsee"}]},{"@id":"wd:Q1605868","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Offenbach-Waldheim"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach-Waldheim"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach-Waldheim"}]}],"http://www.opengis.net/ont/geosparql#":{"@id":"http://www.opengis.net/ont/geosparql#50.1000000000004,8.766666666666737","@type":"GeoCoordinates","http://www.opengis.net/ont/geosparql#asWKT":{"@type":"http://www.opengis.net/ont/geosparql#wktLiteral","@value":"POINT (8.766666666666737 50.1000000000004)"},"latitude":50.1000000000004,"longitude":8.766666666666737},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/de/Offenbach_am_main_from_drone.jpg/320px-Offenbach_am_main_from_drone.jpg","height":180,"width":320},"isPartOf":{"@id":"wd:Q707278","@type":["AdministrativeArea","Place"],"description":{"@language":"en","@value":"metropolitan region in Germany"},"name":{"@language":"en","@value":"Frankfurt Rhine-Main Metropolitan Region"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Regi%C3%B3n_Rin-Meno"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Regi%C3%A3o_metropolitana_Frankfurt/Reno-Meno"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%A0%D0%B0%D1%98%D0%BD%D0%B0-%D0%9C%D0%B0%D1%98%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Rhen-Main-omr%C3%A5det"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Rhein-Main-omr%C3%A5det"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Frankfurt_Rajna-Majna"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Rein%E2%80%93Main"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0bgtry"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Ren-Main"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Rijn-Maingebied"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Region_Ren-Men"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Reino-Maino_sritis"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Frankfurt/Rhein-Main"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CE%B5%CF%81%CE%B9%CE%BF%CF%87%CE%AE_%CE%A1%CE%AE%CE%BD%CE%BF%CF%85-%CE%9C%CE%AC%CE%B9%CE%BD"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E6%B3%95%E8%98%AD%E5%85%8B%E7%A6%8F%E8%90%8A%E8%8C%B5-%E7%BE%8E%E8%8C%B5%E5%A4%A7%E9%83%BD%E6%9C%83%E5%8D%80"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Rhein-Main-Gebiet"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Regione_metropolitana_Reno-Meno"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/R%C3%A9gion_Rhin-Main"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Frankfurt_Rhine-Main"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/240330115"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%81%D8%B1%D8%A7%D9%86%DA%A9%D9%81%D9%88%D8%B1%D8%AA_%D8%B1%D8%A7%DB%8C%D9%86-%D9%85%D8%A7%DB%8C%D9%86"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%A9%E3%82%A4%E3%83%B3%EF%BC%9D%E3%83%9E%E3%82%A4%E3%83%B3%E5%9C%B0%E6%96%B9"}],"url":{"@type":"xsd:anyURI","@value":"http://www.planungsverband.de/"}},"name":{"@language":"en","@value":"Offenbach am Main"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/140657703"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9E%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85_%D0%BD%D0%B0_%D0%9C%D0%B0%D0%B9%D0%BD"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9E%D1%84%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85-%D0%B0%D0%BC-%D0%9C%D0%B0%D0%B9%D0%BD"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Offenbach"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%83%E3%83%95%E3%82%A7%E3%83%B3%E3%83%90%E3%83%83%E3%83%8F%E3%83%BB%E3%82%A2%E3%83%A0%E3%83%BB%E3%83%9E%E3%82%A4%E3%83%B3"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Offenbach_na_Majni"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Ofenbaha_pie_Mainas"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Offenbachium_ad_Moenum"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9E%D1%84%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85-%D0%BD%D0%B0-%D0%9C%D0%B0%D0%B9%D0%BD%D1%96"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/6559110"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A3%D9%88%D9%81%D9%86%D8%A8%D8%A7%D8%AE_%D8%A3%D9%85_%D9%85%D8%A7%D9%8A%D9%86"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E7%BE%8E%E5%9B%A0%E6%B2%B3%E7%95%94%E5%A5%A5%E8%8A%AC%E5%B7%B4%E8%B5%AB"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%90%D7%95%D7%A4%D7%A0%D7%91%D7%9A"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Offenbach-sur-le-Main"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Offenbach_del_Meno"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%8C%CF%86%CE%B5%CE%BD%CE%BC%CF%80%CE%B1%CF%87"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D9%81%D9%86%D8%A8%D8%A7%D8%AE_%D8%A2%D9%85_%D9%85%D8%A7%DB%8C%D9%86"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Ofenbachas"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%98%A4%ED%8E%9C%EB%B0%94%ED%9D%90"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0254wm"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Offenbach_am_Main"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/84a83c9d-b5b5-40c4-a000-e06d64f9fc94"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9E%D1%84%D0%B5%D0%BD%D0%B1%D0%B0%D1%85_%D0%BD%D0%B0_%D0%9C%D0%B0%D1%98%D0%BD%D0%B8"}],"url":{"@type":"xsd:anyURI","@value":"https://www.offenbach.de/"}}},"@type":"GeoCoordinates","latitude":50.1,"longitude":8.766666666},"resultScore":0.58} -2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result78 WHERE { - ?arg4 wdt:P19 ?temp79 . - wd:Q5879 wdt:P451 ?arg4 . - ?temp79 wdt:P625 ?result78 . -} LIMIT 100 -2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.58 -2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' -2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null -2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' -2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: geo:50.1,8.766666666 (http://www.w3.org/2001/XMLSchema#anyURI) -2023-10-27 13:57:57.046 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' -2023-10-27 13:57:57.053 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d -2023-10-27 13:57:57.053 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "geo:50.1,8.766666666" )( ?confidence, "0.58"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" )( ?graph, ) -2023-10-27 13:57:57.054  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d9fd4f1 -2023-10-27 13:57:57.054 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (now() as ?time) . -} -2023-10-27 13:57:57.057  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" . - ?newAnnotation qa:score "0.58"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:57:57.057  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" . - ?newAnnotation qa:score "0.58"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:57:57.057  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2b0ab1a0 -2023-10-27 13:57:57.058 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - - ?answer rdf:type qa:Answer . - ?answer rdf:value ?answerValue . - - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget ?targetQuestion . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score ?confidence . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy ?application . - - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value ?answerDataType . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (now() as ?time) . -} -2023-10-27 13:57:57.063  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.58"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "geo:50.1,8.766666666" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.58"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:57:57.063  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.58"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "geo:50.1,8.766666666" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.58"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:57:57.064 DEBUG 31614 --- [nio-5982-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result78 WHERE {\t?arg4 wdt:P19 ?temp79 .\twd:Q5879 wdt:P451 ?arg4 .\t?temp79 wdt:P625 ?result78 .} LIMIT 100" . - ?newAnnotation qa:score "0.58"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 13:57:57.072 DEBUG 31614 --- [nio-5982-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.58"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "geo:50.1,8.766666666" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.58"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 13:57:57.081 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : processing took: 81444 ms -2023-10-27 13:57:59.049 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@344c7318 -2023-10-27 13:57:59.049 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:57:59.050 ERROR 31614 --- [nio-5982-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:58:12.524 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30821149 -2023-10-27 13:58:12.524 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:58:12.526 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:58:38.068  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:38.069  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:38.069  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"},"inGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196","outGraph":"urn:graph:ae63121f-efb3-4734-b669-bb33399c5196"} -2023-10-27 13:58:38.069  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@50fab0be -2023-10-27 13:58:38.077  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql -2023-10-27 13:58:38.077 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:58:38.085  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6bf9b7ef -2023-10-27 13:58:38.085 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:38.087  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:38.087  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:38.093 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 -2023-10-27 13:58:38.094  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_9d367a72-46ef-4c75-a80f-79221281ea76 found in urn:graph:ae63121f-efb3-4734-b669-bb33399c5196 at http://localhost:8080/sparql -2023-10-27 13:58:38.097 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation how many plays has William Shakespeare written in the 16th century. -2023-10-27 13:58:38.098  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=how%20many%20plays%20has%20William%20Shakespeare%20written%20in%20the%2016th%20century.&lang=en -2023-10-27 13:58:38.098 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=how%20many%20plays%20has%20William%20Shakespeare%20written%20in%20the%2016th%20century.&lang=en -2023-10-27 13:58:38.098  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=how%20many%20plays%20has%20William%20Shakespeare%20written%20in%20the%2016th%20century.&lang=en -2023-10-27 13:58:38.098 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=how%2520many%2520plays%2520has%2520William%2520Shakespeare%2520written%2520in%2520the%252016th%2520century.&lang=en -2023-10-27 13:58:38.098 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:58:38.098  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1996961654 -2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:49.119  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@2af3a61f -2023-10-27 13:58:49.126  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql -2023-10-27 13:58:49.127 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:58:49.135  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@dd0b428 -2023-10-27 13:58:49.135 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:49.136  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:49.136  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:49.143 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:49.143  INFO 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 found in urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f at http://localhost:8080/sparql -2023-10-27 13:58:49.146 DEBUG 31614 --- [nio-5982-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:49.146  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20actor%20starring%20in%20Free%20Guy%20also%20starred%20in%20Deadpool?&lang=en -2023-10-27 13:58:49.146 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20actor%20starring%20in%20Free%20Guy%20also%20starred%20in%20Deadpool?&lang=en -2023-10-27 13:58:49.153  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20actor%20starring%20in%20Free%20Guy%20also%20starred%20in%20Deadpool?&lang=en -2023-10-27 13:58:49.154 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520actor%2520starring%2520in%2520Free%2520Guy%2520also%2520starred%2520in%2520Deadpool?&lang=en -2023-10-27 13:58:49.154 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:58:49.154  INFO 31614 --- [nio-5982-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=777975705 -2023-10-27 13:58:57.614 DEBUG 31614 --- [nio-5982-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6384b8fd -2023-10-27 13:58:57.614 DEBUG 31614 --- [nio-5982-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 13:58:57.616 ERROR 31614 --- [nio-5982-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:59:51.984  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:51.984  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:51.985  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"},"inGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0","outGraph":"urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0"} -2023-10-27 13:59:51.985  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@5326428 -2023-10-27 13:59:51.993  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql -2023-10-27 13:59:51.993 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 13:59:52.005  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e0fb80 -2023-10-27 13:59:52.005 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:52.006  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:52.006  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:52.014 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 13:59:52.014  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 found in urn:graph:56f2b5fc-2ba6-4c48-bc43-be2f43e832d0 at http://localhost:8080/sparql -2023-10-27 13:59:52.016 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the professions of John Lennon’s sons? -2023-10-27 13:59:52.016  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20professions%20of%20John%20Lennon%E2%80%99s%20sons?&lang=en -2023-10-27 13:59:52.017 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20professions%20of%20John%20Lennon%E2%80%99s%20sons?&lang=en -2023-10-27 13:59:52.017  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20professions%20of%20John%20Lennon%E2%80%99s%20sons?&lang=en -2023-10-27 13:59:52.017 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520are%2520the%2520professions%2520of%2520John%2520Lennon%25E2%2580%2599s%2520sons?&lang=en -2023-10-27 13:59:52.017 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:59:52.017  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1361505563 -2023-10-27 14:00:02.057 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@a59e04d -2023-10-27 14:00:02.057 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:02.130 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:00:02.132  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=What are the professions of John Lennon’s sons?, lang=en -2023-10-27 14:00:02.132  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... -2023-10-27 14:00:02.136 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : found an answer array, processing just the first result -2023-10-27 14:00:02.136 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhat\twhat\tPRON\t_\t_\t0\troot\t_\t_\n2\tare\tbe\tVERB\t_\t_\t1\tcop\t_\t_\n3\tthe\tthe\tDET\t_\t_\t4\tdet\t_\t_\n4\tprofessions\tprofession\tNOUN\t_\t_\t1\tnsubj\t_\t_\n5\tof\tof\tADP\t_\t_\t9\tcase\t_\t_\n6\tJohn\tJohn\tNOUN\t_\t_\t7\tcompound\t_\t_\n7\tLennon\tLennon\tNOUN\t_\t_\t9\tnmod:poss\t_\t_\n8\t's\t's\tPART\t_\t_\t7\tcase\t_\t_\n9\tsons\tson\tNOUN\t_\t_\t4\tnmod\t_\t_\n10\t?\t?\tSYM\t_\t_\t1\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result2 WHERE {\n\t?arg5 wdt:P106 ?result2 .\n\twd:Q1203 wdt:P40 ?arg5 .\n} LIMIT 100","platypus:term":"{ ?result2 | ∃ ?arg5 (, ?result2> ∧ <, , ?arg5>) }","result":{"@id":"wd:Q28389","alternateName":[{"@language":"en","@value":"writer"},{"@language":"en","@value":"writer"},{"@language":"en","@value":"film writer"},{"@language":"en","@value":"film writer"},{"@language":"en","@value":"screen writer"},{"@language":"en","@value":"screen writer"},{"@language":"en","@value":"script writer"},{"@language":"en","@value":"script writer"},{"@language":"en","@value":"scenarist"},{"@language":"en","@value":"scenarist"},{"@language":"en","@value":"tv writer"},{"@language":"en","@value":"tv writer"},{"@language":"en","@value":"scriptwriter"},{"@language":"en","@value":"scriptwriter"}],"description":{"@language":"en","@value":"writer who writes for TV, films, comics and games"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Screenwriter","@type":"Article","articleBody":"A screenplay writer is a writer who practices the craft of screenwriting, writing screenplays on which mass media, such as films, television programs, and video games, are based.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Screenwriter"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Screenplay_example.svg/320px-Screenplay_example.svg.png","height":414,"width":320},"name":{"@language":"en","@value":"screenwriter"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Scenarist"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%AA%D7%A1%D7%A8%D7%99%D7%98%D7%90%D7%99"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Guionista"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E7%B7%A8%E5%8A%87"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%99%E0%B8%B1%E0%B8%81%E0%B9%80%E0%B8%82%E0%B8%B5%E0%B8%A2%E0%B8%99%E0%B8%9A%E0%B8%97"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Forgat%C3%B3k%C3%B6nyv%C3%ADr%C3%B3"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A3%CE%B5%CE%BD%CE%B1%CF%81%CE%B9%CE%BF%CE%B3%CF%81%CE%AC%CF%86%CE%BF%CF%82"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0dxtg"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D9%83%D8%A7%D8%AA%D8%A8_%D8%B3%D9%8A%D9%86%D8%A7%D8%B1%D9%8A%D9%88"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Scenarist"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Manusf%C3%B6rfattare"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Scenarzysta"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Screenwriter"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%81%DB%8C%D9%84%D9%85%E2%80%8C%D9%86%D8%A7%D9%85%D9%87%E2%80%8C%D9%86%D9%88%DB%8C%D8%B3"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Manuskriptforfatter"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/Scenarista"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%A1%D1%86%D0%B5%D0%BD%D0%B0%D1%80%D0%B8%D1%81%D1%82"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E8%84%9A%E6%9C%AC%E5%AE%B6"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Penulis_skenario"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Scenarioschrijver"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Sc%C3%A9nariste"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Senarist"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Scenarist"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Nh%C3%A0_bi%C3%AAn_k%E1%BB%8Bch"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EA%B0%81%EB%B3%B8%EA%B0%80"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Scen%C4%81rists"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%A1%D1%86%D0%B5%D0%BD%D0%B0%D1%80%D0%B8%D1%81%D1%82"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Roteirista"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Screenwriters"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Drehbuchautor"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Stsenarist"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Manusforfatter"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Guionista"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/K%C3%A4sikirjoittaja"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%A4%E0%AE%BF%E0%AE%B0%E0%AF%88%E0%AE%95%E0%AF%8D%E0%AE%95%E0%AE%A4%E0%AF%88_%E0%AE%86%E0%AE%9A%E0%AE%BF%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%B0%E0%AF%8D"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%A1%D1%86%D0%B5%D0%BD%D0%B0%D1%80%D0%B8%D1%81%D1%82"}]},"resultScore":0.62} -2023-10-27 14:00:02.137 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result2 WHERE { - ?arg5 wdt:P106 ?result2 . - wd:Q1203 wdt:P40 ?arg5 . -} LIMIT 100 -2023-10-27 14:00:02.137 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.62 -2023-10-27 14:00:02.137 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' -2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null -2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' -2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: http://www.wikidata.org/entity/Q28389 (http://www.w3.org/2001/XMLSchema#anyURI) -2023-10-27 14:00:02.138 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' -2023-10-27 14:00:02.143 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5160f85a-9431-4209-9edf-ce4ab1b4cab3 -2023-10-27 14:00:02.144 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "wd:Q28389" )( ?confidence, "0.62"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" )( ?graph, ) -2023-10-27 14:00:02.144  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c5cd60a -2023-10-27 14:00:02.145 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (now() as ?time) . -} -2023-10-27 14:00:02.147  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" . - ?newAnnotation qa:score "0.62"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.147  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" . - ?newAnnotation qa:score "0.62"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.147  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18e412fa -2023-10-27 14:00:02.148 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - - ?answer rdf:type qa:Answer . - ?answer rdf:value ?answerValue . - - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget ?targetQuestion . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score ?confidence . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy ?application . - - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value ?answerDataType . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (now() as ?time) . -} -2023-10-27 14:00:02.151  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.62"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q28389" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.62"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.151  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.62"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q28389" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.62"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.151 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result2 WHERE {\t?arg5 wdt:P106 ?result2 .\twd:Q1203 wdt:P40 ?arg5 .} LIMIT 100" . - ?newAnnotation qa:score "0.62"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.157 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.62"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q28389" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.62"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 14:00:02.166 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : processing took: 10182 ms -2023-10-27 14:00:18.483  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:18.483  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:18.484  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:18.484  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@3e33e60c -2023-10-27 14:00:18.500  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql -2023-10-27 14:00:18.500 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:00:18.517  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e9bb0da -2023-10-27 14:00:18.517 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:18.519  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:18.519  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:18.526 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d -2023-10-27 14:00:18.527  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d found in urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a at http://localhost:8080/sparql -2023-10-27 14:00:18.529 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:18.530  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Who%20was%20the%20fellow%20Hobbit%20who%20was%20an%20enemy%20of%20Frodo?&lang=en -2023-10-27 14:00:18.530 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Who%20was%20the%20fellow%20Hobbit%20who%20was%20an%20enemy%20of%20Frodo?&lang=en -2023-10-27 14:00:18.530  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Who%20was%20the%20fellow%20Hobbit%20who%20was%20an%20enemy%20of%20Frodo?&lang=en -2023-10-27 14:00:18.531 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Who%2520was%2520the%2520fellow%2520Hobbit%2520who%2520was%2520an%2520enemy%2520of%2520Frodo?&lang=en -2023-10-27 14:00:18.531 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:00:18.531  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1807209424 -2023-10-27 14:00:19.534 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@742ffb18 -2023-10-27 14:00:19.534 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:00:19.535 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:00:46.011  INFO 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:46.011  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:46.012  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:46.013  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@1ff227be -2023-10-27 14:00:46.021  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql -2023-10-27 14:00:46.021 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:00:46.028  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ea008d0 -2023-10-27 14:00:46.028 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:46.029  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:46.030  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:46.035 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:46.035  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 found in urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 at http://localhost:8080/sparql -2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many movies were directed by Akira Kurosawa ? -2023-10-27 14:00:46.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20were%20directed%20by%20Akira%20Kurosawa%20?&lang=en -2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20were%20directed%20by%20Akira%20Kurosawa%20?&lang=en -2023-10-27 14:00:46.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20movies%20were%20directed%20by%20Akira%20Kurosawa%20?&lang=en -2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520movies%2520were%2520directed%2520by%2520Akira%2520Kurosawa%2520?&lang=en -2023-10-27 14:00:46.037 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:00:46.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-401806449 -2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"},"inGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df","outGraph":"urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df"} -2023-10-27 14:01:40.793  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7ce69113 -2023-10-27 14:01:40.802  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql -2023-10-27 14:01:40.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:01:40.810  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d1c2086 -2023-10-27 14:01:40.811 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:01:40.811  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:40.812  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:40.819 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 -2023-10-27 14:01:40.819  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efffff4d-c19a-465a-86e3-ddf1d2898f24 found in urn:graph:4e0cf09b-f86a-42a0-b95f-d19cbb6a40df at http://localhost:8080/sparql -2023-10-27 14:01:40.820 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the boiling point of water? -2023-10-27 14:01:40.821  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20the%20boiling%20point%20of%20water?&lang=en -2023-10-27 14:01:40.821 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20is%20the%20boiling%20point%20of%20water?&lang=en -2023-10-27 14:01:40.821  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20is%20the%20boiling%20point%20of%20water?&lang=en -2023-10-27 14:01:40.821 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520is%2520the%2520boiling%2520point%2520of%2520water?&lang=en -2023-10-27 14:01:40.821 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:01:40.821  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1798464153 -2023-10-27 14:02:35.004 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@300e7857 -2023-10-27 14:02:35.006 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:02:35.006 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:02:35.007  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=What is the boiling point of water?, lang=en -2023-10-27 14:02:35.007  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... -2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhat\twhat\tPRON\t_\t_\t0\troot\t_\t_\n2\tis\tbe\tVERB\t_\t_\t1\tcop\t_\t_\n3\tthe\tthe\tDET\t_\t_\t5\tdet\t_\t_\n4\tboiling\tboiling\tADJ\t_\t_\t5\tamod\t_\t_\n5\tpoint\tpoint\tNOUN\t_\t_\t1\tnsubj\t_\t_\n6\tof\tof\tADP\t_\t_\t7\tcase\t_\t_\n7\twater\twater\tNOUN\t_\t_\t5\tnmod\t_\t_\n8\t?\t?\tSYM\t_\t_\t1\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result17 WHERE {\n\twd:Q283 wdt:P2102 ?result17 .\n} LIMIT 100","platypus:term":"{ ?result17 | <, , ?result17> }","result":{"@type":"xsd:decimal","name":"99.9839","rdf:value":{"@type":"xsd:decimal","@value":"99.9839"}},"resultScore":0.53} -2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result17 WHERE { - wd:Q283 wdt:P2102 ?result17 . -} LIMIT 100 -2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.53 -2023-10-27 14:02:35.007 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' -2023-10-27 14:02:35.011 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': 'xsd:decimal' found, but no URI can be assigned to this literal datatype. -2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' -2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'resource': Cannot invoke "com.google.gson.JsonElement.getAsString()" because the return value of "com.google.gson.JsonObject.get(String)" is null -2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'boolean' -2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : NOT IMPLEMENTED -2023-10-27 14:02:35.012 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'boolean': method 'getDataBoolean' is not implemented. -2023-10-27 14:02:35.020 ERROR 31614 --- [nio-5982-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is eu.wdaqua.qanary.component.platypuswrapper.qb.messages.DataNotProcessableException: Data cannot be processed as either 'literal', 'resource' or 'boolean'.] with root cause - -eu.wdaqua.qanary.component.platypuswrapper.qb.messages.DataNotProcessableException: Data cannot be processed as either 'literal', 'resource' or 'boolean'. - at eu.wdaqua.qanary.component.platypuswrapper.qb.messages.PlatypusResult.getData(PlatypusResult.java:115) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.messages.PlatypusResult.initData(PlatypusResult.java:193) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.messages.PlatypusResult.(PlatypusResult.java:78) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:198) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"},"inGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f","outGraph":"urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f"} -2023-10-27 14:03:26.075  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7deb5ed8 -2023-10-27 14:03:26.087  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql -2023-10-27 14:03:26.087 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:03:26.096  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72159a96 -2023-10-27 14:03:26.096 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:26.097  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:26.098  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:26.105 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf -2023-10-27 14:03:26.105  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_c47497bb-21fc-473a-b87c-8d2d39774dbf found in urn:graph:5f991ee7-0527-4e14-8d3d-52b76e279a2f at http://localhost:8080/sparql -2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which animal participated in a military operation with the Australian Defence Force? -2023-10-27 14:03:26.108  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20animal%20participated%20in%20a%20military%20operation%20with%20the%20Australian%20Defence%20Force?&lang=en -2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20animal%20participated%20in%20a%20military%20operation%20with%20the%20Australian%20Defence%20Force?&lang=en -2023-10-27 14:03:26.108  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20animal%20participated%20in%20a%20military%20operation%20with%20the%20Australian%20Defence%20Force?&lang=en -2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520animal%2520participated%2520in%2520a%2520military%2520operation%2520with%2520the%2520Australian%2520Defence%2520Force?&lang=en -2023-10-27 14:03:26.108 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:26.108  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-381625263 -2023-10-27 14:03:29.872 DEBUG 31614 --- [nio-5982-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3e30e130 -2023-10-27 14:03:29.872 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:03:29.873 ERROR 31614 --- [nio-5982-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

can only concatenate list (not "tuple") to list

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

can only concatenate list (not "tuple") to list

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:32.492  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@502d3485 -2023-10-27 14:03:32.502  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql -2023-10-27 14:03:32.502 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:03:32.514  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15b3ed45 -2023-10-27 14:03:32.515 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:32.518  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:32.518  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:32.524 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e -2023-10-27 14:03:32.524  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e found in urn:graph:5e9e4088-e440-456c-8d87-417261ce841d at http://localhost:8080/sparql -2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Whom did Clara Westhoff marry? -2023-10-27 14:03:32.526  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Whom%20did%20Clara%20Westhoff%20marry?&lang=en -2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Whom%20did%20Clara%20Westhoff%20marry?&lang=en -2023-10-27 14:03:32.526  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Whom%20did%20Clara%20Westhoff%20marry?&lang=en -2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Whom%2520did%2520Clara%2520Westhoff%2520marry?&lang=en -2023-10-27 14:03:32.526 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:32.527  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1564413440 -2023-10-27 14:03:38.302 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@53e73de1 -2023-10-27 14:03:38.302 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT -2023-10-27 14:03:38.307 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause - -org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:03:41.357 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6fa5957f -2023-10-27 14:03:41.357 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:41.502 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:03:41.504  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : request was actually executed: PlatypusRequest: endpoint=https://qa.askplatyp.us/v0/ask, question=Whom did Clara Westhoff marry?, lang=en -2023-10-27 14:03:41.504  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : parsing platypus result... -2023-10-27 14:03:41.506 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : responseQuestion: {"platypus:conllu":"1\tWhom\twhom\tPRON\t_\t_\t5\tobj\t_\t_\n2\tdid\tdo\tVERB\t_\t_\t5\taux\t_\t_\n3\tClara\tClara\tNOUN\t_\t_\t4\tcompound\t_\t_\n4\tWesthoff\tWesthoff\tNOUN\t_\t_\t5\tnsubj\t_\t_\n5\tmarry\tmarry\tVERB\t_\t_\t0\troot\t_\t_\n6\t?\t?\tSYM\t_\t_\t5\tpunct\t_\t_","platypus:sparql":"SELECT DISTINCT ?result9 WHERE {\n\twd:Q462333 wdt:P26 ?result9 .\n} LIMIT 100","platypus:term":"{ ?result9 | <, , ?result9> }","result":{"@id":"wd:Q76483","@reverse":{"spouse":{"@id":"wd:Q462333","@type":"Person","alternateName":[{"@language":"en","@value":"Clara Rilke"},{"@language":"en","@value":"Clara Rilke"},{"@language":"en","@value":"Clara Henriette Sophie Rilke-Westhoff"},{"@language":"en","@value":"Clara Henriette Sophie Rilke-Westhoff"},{"@language":"en","@value":"Clara Rilke-Westhoff"},{"@language":"en","@value":"Clara Rilke-Westhoff"}],"birthDate":{"@type":"xsd:date","@value":"1878-11-21Z"},"birthPlace":{"@id":"wd:Q24879","@type":["AdministrativeArea","Organization","City","Place"],"alternateName":[{"@language":"en","@value":"Hansestadt Bremen"},{"@language":"en","@value":"Hansestadt Bremen"}],"description":{"@language":"en","@value":"city in the Bremen federated state, Germany"},"name":{"@language":"en","@value":"Bremen"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Br%C4%97menas"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Br%C3%AAme"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Brema"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%96%E3%83%AC%E3%83%BC%E3%83%A1%E3%83%B3"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/9c607066-ceb6-4a78-a614-4c14a2b3ec35"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Brema"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/137159715"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2944388"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Br%C3%A9my"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Bremen_%28by%29"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%91%D7%A8%D7%9E%D7%9F"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%89%A5%E1%88%AC%E1%88%98%E1%8A%95"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Bremen_%28kota%29"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E4%B8%8D%E6%9D%A5%E6%A2%85"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A8%D8%B1%D9%85%D9%86"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%92%CF%81%CE%AD%CE%BC%CE%B7"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%AC%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%AE%E0%A5%87%E0%A4%A8"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%91%D1%80%D0%B5%D0%BC%D0%B5%D0%BD"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B9%80%E0%B8%9A%E0%B8%A3%E0%B9%80%E0%B8%A1%E0%B8%B4%E0%B8%99"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Bremen_%28stad%29"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Bremen-Germany"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Br%C3%A9ma_%28telep%C3%BCl%C3%A9s%29"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Br%C3%A9my"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Brema"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Br%C4%93mene"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A8%D8%B1%D9%8A%D9%85%D9%86_%28%D9%85%D8%AF%D9%8A%D9%86%D8%A9%29"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Bremen"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%AC%E0%A5%8D%E0%A4%B0%E0%A5%87%E0%A4%AE%E0%A4%A8"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/017w_"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%B8%8C%EB%A0%88%EB%A9%98"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Bremen"}],"url":{"@type":"xsd:anyURI","@value":"https://www.bremen.de/"}},"children":{"@id":"wd:Q63980725","@type":"Person","alternateName":[{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber"},{"@language":"en","@value":"Ruth Sieber"}],"description":{"@language":"en","@value":"Sieber-Rilke, Ruth, 1901-1972"},"name":{"@language":"en","@value":"Ruth Sieber-Rilke"},"sameAs":{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/74239671"}},"deathDate":{"@type":"xsd:date","@value":"1954-03-09Z"},"deathPlace":{"@id":"wd:Q252834","@type":"Place","description":{"@language":"en","@value":"human settlement in Germany"},"name":{"@language":"en","@value":"Fischerhude"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Fischerhude"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Fischerhude"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/236823582"},{"@type":"xsd:anyURI","@value":"http://www.flickr.com/places/info/649823"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Fischerhude"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%95%E3%82%A3%E3%83%83%E3%82%B7%E3%83%A3%E3%83%95%E3%83%BC%E3%83%87"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Fischerhude"}],"url":{"@type":"xsd:anyURI","@value":"https://www.fischerhude.com/"}},"description":{"@language":"en","@value":"German sculptor"},"gender":{"@id":"Female"},"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Clara_Westhoff","@type":"Article","articleBody":"Clara Westhoff, also known as Clara Rilke or Clara Rilke-Westhoff was a pioneer German sculptor and artist. She was the wife of poet Rainer Maria Rilke.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Clara Westhoff"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/Clara_Rilke-Westhoff.jpg/320px-Clara_Rilke-Westhoff.jpg","height":457,"width":320},"name":{"@language":"en","@value":"Clara Westhoff"},"nationality":{"@id":"wd:Q183","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"BRD"},{"@language":"en","@value":"BRD"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"🇩🇪"},{"@language":"en","@value":"🇩🇪"}],"description":{"@language":"en","@value":"federal parliamentary republic in central-western Europe"},"name":{"@language":"en","@value":"Germany"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/N%C3%A9metorsz%C3%A1g"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%8A%D0%B5%D0%BC%D0%B0%D1%87%D0%BA%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%9C%E0%B2%B0%E0%B3%8D%E0%B2%AE%E0%B2%A8%E0%B2%BF"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Germany"},{"@type":"xsd:anyURI","@value":"http://www.flickr.com/places/info/23424829"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Deutschland"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Njema%C4%8Dka"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Almanya"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Nem%C4%8Dija"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Nemecko"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%92%D7%A8%D7%9E%D7%A0%D7%99%D7%94"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Germany"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Allemagne"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0345h"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Saksamaa"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Ujerumani"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Alemania"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://foursquare.com/v/5c2cabf59cadd9002bc0c090"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BB%A9c"},{"@type":"xsd:anyURI","@value":"http://te.wikipedia.org/wiki/%E0%B0%9C%E0%B0%B0%E0%B1%8D%E0%B0%AE%E0%B0%A8%E0%B1%80"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%9C%E0%AF%86%E0%AE%B0%E0%AF%8D%E0%AE%AE%E0%AE%A9%E0%AE%BF"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%9C%E0%B5%BC%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%A8%E0%B4%BF"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/189116956"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%89%E3%82%A4%E3%83%84"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/85752fda-13c4-31a3-bee5-0e5cb1f51dad"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2921044"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Alemanha"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A2%D9%84%D9%85%D8%A7%D9%86"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Vokietija"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%8F%85%EC%9D%BC"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A3%D9%84%D9%85%D8%A7%D9%86%D9%8A%D8%A7"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8C%80%E1%88%AD%E1%88%98%E1%8A%95"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Niemcy"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://gu.wikipedia.org/wiki/%E0%AA%9C%E0%AA%B0%E0%AB%8D%E0%AA%AE%E0%AA%A8%E0%AB%80"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%9C%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%AE%E0%A6%BE%E0%A6%A8%E0%A6%BF"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B9%80%E0%B8%97%E0%B8%A8%E0%B9%80%E0%B8%A2%E0%B8%AD%E0%B8%A3%E0%B8%A1%E0%B8%99%E0%B8%B5"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/N%C4%9Bmecko"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Duitsland"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/V%C4%81cija"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%93%CE%B5%CF%81%CE%BC%CE%B1%CE%BD%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Saksa"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%BE%B7%E5%9B%BD"}]},"sameAs":[{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/02p3cl"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%92%D0%B5%D1%81%D1%82%D1%85%D0%BE%D1%84%D1%84%2C_%D0%9A%D0%BB%D0%B0%D1%80%D0%B0"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Clara_Westhoff"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/2525852"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AF%E3%83%A9%E3%83%A9%E3%83%BB%E3%83%B4%E3%82%A7%E3%82%B9%E3%83%88%E3%83%9B%E3%83%95"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Clara_Westhoff"}]}},"@type":"Person","alternateName":[{"@language":"en","@value":"Rainer Mariyah Rilḳeh"},{"@language":"en","@value":"Rainer Mariyah Rilḳeh"},{"@language":"en","@value":"Rene Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"Rene Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"רינר מריה רילקה"},{"@language":"en","@value":"רינר מריה רילקה"},{"@language":"en","@value":"Rainer Maria Rielke"},{"@language":"en","@value":"Rainer Maria Rielke"},{"@language":"en","@value":"René Maria Cäsar Rilke"},{"@language":"en","@value":"René Maria Cäsar Rilke"},{"@language":"en","@value":"ראינר מריה רילקה"},{"@language":"en","@value":"ראינר מריה רילקה"},{"@language":"en","@value":"Rene Rilke"},{"@language":"en","@value":"Rene Rilke"},{"@language":"en","@value":"רץ מ. רילקה"},{"@language":"en","@value":"רץ מ. רילקה"},{"@language":"en","@value":"ר.מ רילקה"},{"@language":"en","@value":"ר.מ רילקה"},{"@language":"en","@value":"René Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"René Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"Rainer Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"Rainer Karl Wilhelm Johann Josef Maria Rilke"},{"@language":"en","@value":"René Rilke"},{"@language":"en","@value":"René Rilke"},{"@language":"en","@value":"ריינר מריה רילקה"},{"@language":"en","@value":"ריינר מריה רילקה"},{"@language":"en","@value":"Rainŏ Maria Rilkʻe"},{"@language":"en","@value":"Rainŏ Maria Rilkʻe"},{"@language":"en","@value":"Li-erh-kʻo"},{"@language":"en","@value":"Li-erh-kʻo"},{"@language":"en","@value":"Reiner Marie Rilke"},{"@language":"en","@value":"Reiner Marie Rilke"}],"birthDate":{"@type":"xsd:date","@value":"1875-12-04Z"},"birthPlace":{"@id":"wd:Q1085","@type":["AdministrativeArea","Organization","City","Place"],"alternateName":[{"@language":"en","@value":"Praha"},{"@language":"en","@value":"Praha"},{"@language":"en","@value":"Hlavní město Praha"},{"@language":"en","@value":"Hlavní město Praha"}],"description":{"@language":"en","@value":"capital city of the Czech Republic"},"name":{"@language":"en","@value":"Prague"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%B8%83%E6%8B%89%E6%A0%BC"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/153543031"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%AA%E0%B5%8D%E0%B4%B0%E0%B4%BE%E0%B4%97%E0%B5%8D"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/0a65a727-7465-4e6c-8b15-ed4d09e021ee"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3%D0%B0"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Praag"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Pr%C3%A1ga"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%ED%94%84%EB%9D%BC%ED%95%98"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A4%BE%E0%A4%97"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%AA%E0%B3%8D%E0%B2%B0%E0%B2%BE%E0%B2%97%E0%B3%8D"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%97%E3%83%A9%E3%83%8F"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Prague"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%BE%D8%B1%D8%A7%DA%AF"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/05ywg"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%AA%E0%A7%8D%E0%A6%B0%E0%A6%BE%E0%A6%97"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Prague-4"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CF%81%CE%AC%CE%B3%CE%B1"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://twitter.com/PrahaEU"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Prague"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A8%D8%B1%D8%A7%D8%BA"},{"@type":"xsd:anyURI","@value":"http://www.facebook.com/Prahaeu"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%A4%D7%A8%D7%90%D7%92"},{"@type":"xsd:anyURI","@value":"http://www.instagram.com/prahaeu"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%AA%E0%A5%8D%E0%A4%B0%E0%A4%BE%E0%A4%97"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Praga"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/3067696"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Prag"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8D%95%E1%88%AB%E1%8C%8D"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B2%E0%B8%81"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Pr%C4%81ga"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9F%D1%80%D0%B0%D0%B3%D0%B0"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Praha"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%AA%E0%AE%BF%E0%AE%B0%E0%AE%BE%E0%AE%95%E0%AE%BE"}],"url":{"@type":"xsd:anyURI","@value":"http://www.praha.eu/"}},"children":{"@id":"wd:Q63980725","@type":"Person","alternateName":[{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Fritzsche Rilke"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Rilke Sieber"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Fritzsche-Rilke"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber-Fritzsche"},{"@language":"en","@value":"Ruth Sieber"},{"@language":"en","@value":"Ruth Sieber"}],"description":{"@language":"en","@value":"Sieber-Rilke, Ruth, 1901-1972"},"name":{"@language":"en","@value":"Ruth Sieber-Rilke"},"sameAs":{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/74239671"}},"deathDate":{"@type":"xsd:date","@value":"1926-12-29Z"},"deathPlace":{"@id":"wd:Q69354","@type":["AdministrativeArea","Organization","City","Place"],"alternateName":[{"@language":"en","@value":"Montreux VD"},{"@language":"en","@value":"Montreux VD"}],"description":{"@language":"en","@value":"municipality in Switzerland"},"name":{"@language":"en","@value":"Montreux"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D1%91"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%A2%E3%83%B3%E3%83%88%E3%83%AB%E3%83%BC"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D0%B5"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0dlkr"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Montreux_%28Su%C3%AFssa%29"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D0%B5"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%A1%E0%B8%87%E0%B9%80%E0%B8%97%E0%B8%A3%E0%B8%AD"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9C%D0%BE%D0%BD%D1%82%D1%80%D1%8C%D0%BE"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%9E%D7%95%D7%A0%D7%98%D7%A8%D7%94"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Montr%C3%B6"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/125490238"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2659601"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%9C%CE%BF%CE%BD%CF%84%CF%81%CE%AD"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Montr%C4%93"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D9%85%D9%88%D9%86%D8%AA%D8%B1%D9%88"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Montreux-Switzerland"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E8%92%99%E7%89%B9%E5%8B%92"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Montr%C4%97"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%85%D9%88%D9%86%D8%AA%D8%B1%D9%88"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%AA%BD%ED%8A%B8%EB%A2%B0"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/d872ed01-edfd-4b39-8ab5-f8b3c84fc001"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Montreux"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Montreux%2C_Swiss"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Montreux_%28%C5%A0vaj%C4%8Diarsko%29"}],"url":{"@type":"xsd:anyURI","@value":"http://www.montreux.ch/"}},"description":{"@language":"en","@value":"Austrian poet and writer"},"gender":{"@id":"Male"},"genre":[{"@id":"wd:Q1226395","@type":"CreativeWork","name":{"@language":"en","@value":"Dinggedicht"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Dinggedicht"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Dinggedicht"}]},{"@id":"wd:Q676","description":{"@language":"en","@value":"form of language which applies ordinary grammatical structure and natural flow of speech"},"name":{"@language":"en","@value":"prose"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Nesir"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%A4%D7%A8%D7%95%D7%96%D7%94"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/V%C4%83n_xu%C3%B4i"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Prose"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Prose"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A0%CE%B5%CE%B6%CE%BF%CE%B3%CF%81%CE%B1%CF%86%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Proosa"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%97%E0%B4%A6%E0%B5%8D%E0%B4%AF%E0%B4%82"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E6%95%A3%E6%96%87"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%89%E0%AE%B0%E0%AF%88%E0%AE%A8%E0%AE%9F%E0%AF%88"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%97%E0%B2%A6%E0%B3%8D%E0%B2%AF"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Nathari"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Pr%C3%B3za"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D9%86%D8%AB%D8%B1"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%97%E0%A4%A6%E0%A5%8D%E0%A4%AF"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Pr%C3%B3za"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%9F%D1%80%D0%BE%D0%B7%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Pr%C3%B3za"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Tuluyan"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%A3%E0%B9%89%E0%B8%AD%E0%B8%A2%E0%B9%81%E0%B8%81%E0%B9%89%E0%B8%A7"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0dq0q"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E6%95%A3%E6%96%87"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Proz%C4%83"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Prosa"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Proosa"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%82%B0%EB%AC%B8"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%97%E0%A6%A6%E0%A7%8D%E0%A6%AF"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Prose"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Proza"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D9%86%D8%AB%D8%B1"}]}],"goog:detailedDescription":{"@id":"http://en.wikipedia.org/wiki/Rainer_Maria_Rilke","@type":"Article","articleBody":"René Karl Wilhelm Johann Josef Maria Rilke, shortened to Rainer Maria Rilke, was an Austrian poet and novelist. Acclaimed as an idiosyncratic and expressive poet, he is widely recognized as a significant writer in the German language. His work is viewed by critics and scholars as possessing undertones of mysticism, exploring themes of subjective experience and disbelief. His writings include one novel, several collections of poetry and several volumes of correspondence.","inLanguage":{"@type":"xsd:language","@value":"en"},"license":{"@id":"http://creativecommons.org/licenses/by-sa/3.0/"},"name":"Rainer Maria Rilke"},"image":{"@type":"ImageObject","contentUrl":"https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Rainer_Maria_Rilke_1900.jpg/320px-Rainer_Maria_Rilke_1900.jpg","height":512,"width":320},"name":{"@language":"en","@value":"Rainer Maria Rilke"},"nationality":[{"@id":"wd:Q183","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"BRD"},{"@language":"en","@value":"BRD"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"Federal Republic of Germany"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"FRG"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"de"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"GER"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Bundesrepublik Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"Deutschland"},{"@language":"en","@value":"🇩🇪"},{"@language":"en","@value":"🇩🇪"}],"description":{"@language":"en","@value":"federal parliamentary republic in central-western Europe"},"name":{"@language":"en","@value":"Germany"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/N%C3%A9metorsz%C3%A1g"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%8A%D0%B5%D0%BC%D0%B0%D1%87%D0%BA%D0%B0"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%9C%E0%B2%B0%E0%B3%8D%E0%B2%AE%E0%B2%A8%E0%B2%BF"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Germany"},{"@type":"xsd:anyURI","@value":"http://www.flickr.com/places/info/23424829"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Deutschland"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Njema%C4%8Dka"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Almanya"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Nem%C4%8Dija"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Nemecko"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%9D%D1%96%D0%BC%D0%B5%D1%87%D1%87%D0%B8%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%92%D7%A8%D7%9E%D7%A0%D7%99%D7%94"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Germany"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Allemagne"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0345h"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Saksamaa"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Jerman"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Tyskland"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Ujerumani"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Alemania"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://foursquare.com/v/5c2cabf59cadd9002bc0c090"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BB%A9c"},{"@type":"xsd:anyURI","@value":"http://te.wikipedia.org/wiki/%E0%B0%9C%E0%B0%B0%E0%B1%8D%E0%B0%AE%E0%B0%A8%E0%B1%80"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%9C%E0%AF%86%E0%AE%B0%E0%AF%8D%E0%AE%AE%E0%AE%A9%E0%AE%BF"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%9C%E0%B5%BC%E0%B4%AE%E0%B5%8D%E0%B4%AE%E0%B4%A8%E0%B4%BF"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/189116956"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%89%E3%82%A4%E3%83%84"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/85752fda-13c4-31a3-bee5-0e5cb1f51dad"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Alemanya"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2921044"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%9C%E0%A4%B0%E0%A5%8D%E0%A4%AE%E0%A4%A8%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Alemanha"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A2%D9%84%D9%85%D8%A7%D9%86"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Vokietija"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%8F%85%EC%9D%BC"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A3%D9%84%D9%85%D8%A7%D9%86%D9%8A%D8%A7"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8C%80%E1%88%AD%E1%88%98%E1%8A%95"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Niemcy"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://gu.wikipedia.org/wiki/%E0%AA%9C%E0%AA%B0%E0%AB%8D%E0%AA%AE%E0%AA%A8%E0%AB%80"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%9C%E0%A6%BE%E0%A6%B0%E0%A7%8D%E0%A6%AE%E0%A6%BE%E0%A6%A8%E0%A6%BF"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B9%80%E0%B8%97%E0%B8%A8%E0%B9%80%E0%B8%A2%E0%B8%AD%E0%B8%A3%E0%B8%A1%E0%B8%99%E0%B8%B5"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/N%C4%9Bmecko"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%93%D0%B5%D1%80%D0%BC%D0%B0%D0%BD%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Duitsland"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Germania"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/V%C4%81cija"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%93%CE%B5%CF%81%CE%BC%CE%B1%CE%BD%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Saksa"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%BE%B7%E5%9B%BD"}]},{"@id":"wd:Q40","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"Republik Österreich"},{"@language":"en","@value":"Republik Österreich"},{"@language":"en","@value":"Republic of Austria"},{"@language":"en","@value":"Republic of Austria"},{"@language":"en","@value":"🇦🇹"},{"@language":"en","@value":"🇦🇹"},{"@language":"en","@value":"AT"},{"@language":"en","@value":"at"},{"@language":"en","@value":"AT"},{"@language":"en","@value":"at"},{"@language":"en","@value":"Österreich"},{"@language":"en","@value":"Österreich"},{"@language":"en","@value":"AUT"},{"@language":"en","@value":"AUT"}],"description":{"@language":"en","@value":"federal republic in western-central Europe"},"name":{"@language":"en","@value":"Austria"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%90%D1%83%D1%81%D1%82%D1%80%D0%B8%D1%98%D0%B0"},{"@type":"xsd:anyURI","@value":"http://kn.wikipedia.org/wiki/%E0%B2%86%E0%B2%B8%E0%B3%8D%E0%B2%9F%E0%B3%8D%E0%B2%B0%E0%B2%BF%E0%B2%AF"},{"@type":"xsd:anyURI","@value":"http://sws.geonames.org/2782113"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A7%D9%84%D9%86%D9%85%D8%B3%D8%A7"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/%C3%81ustria"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Oostenrijk"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/It%C3%A4valta"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Avusturya"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%90%D7%95%D7%A1%D7%98%D7%A8%D7%99%D7%94"},{"@type":"xsd:anyURI","@value":"http://te.wikipedia.org/wiki/%E0%B0%86%E0%B0%B8%E0%B1%8D%E0%B0%9F%E0%B1%8D%E0%B0%B0%E0%B0%BF%E0%B0%AF%E0%B0%BE"},{"@type":"xsd:anyURI","@value":"http://gu.wikipedia.org/wiki/%E0%AA%91%E0%AA%B8%E0%AB%8D%E0%AA%9F%E0%AB%8D%E0%AA%B0%E0%AA%BF%E0%AA%AF%E0%AA%BE"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Austrija"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%9B%E0%B8%A3%E0%B8%B0%E0%B9%80%E0%B8%97%E0%B8%A8%E0%B8%AD%E0%B8%AD%E0%B8%AA%E0%B9%80%E0%B8%95%E0%B8%A3%E0%B8%B5%E0%B8%A2"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/%C3%80ustria"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Autriche"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%91%CF%85%CF%83%CF%84%CF%81%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8A%A6%E1%88%B5%E1%89%B5%E1%88%AA%E1%8B%AB"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/%C3%98strig"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/0h7x"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%86%E0%AE%B8%E0%AF%8D%E0%AE%A4%E0%AE%BF%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%BE"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%93%E0%B4%B8%E0%B5%8D%E0%B4%9F%E0%B5%8D%E0%B4%B0%E0%B4%BF%E0%B4%AF"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%BC%E3%82%B9%E3%83%88%E3%83%AA%E3%82%A2"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/%C3%98sterrike"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D8%AA%D8%B1%DB%8C%D8%B4"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/area/caac77d1-a5c8-3e6e-8e27-90b44dcc1446"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Austrija"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Avstrija"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Rakousko"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Austria"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Austrija"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/%C3%96sterreich"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%A5%A5%E5%9C%B0%E5%88%A9"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/148842731"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Rak%C3%BAsko"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%85%E0%A6%B8%E0%A7%8D%E0%A6%9F%E0%A7%8D%E0%A6%B0%E0%A6%BF%E0%A6%AF%E0%A6%BC%E0%A6%BE"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C3%81o"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/%C3%96sterrike"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Ausztria"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Austria"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D1%96%D1%8F"},{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%98%A4%EC%8A%A4%ED%8A%B8%EB%A6%AC%EC%95%84"}]},{"@id":"wd:Q28513","@type":["AdministrativeArea","Organization","Country","Place"],"alternateName":[{"@language":"en","@value":"Austro-Hungarian Empire"},{"@language":"en","@value":"Austro-Hungarian Empire"},{"@language":"en","@value":"Austria Hungary"},{"@language":"en","@value":"Austria Hungary"},{"@language":"en","@value":"Dual Monarchy"},{"@language":"en","@value":"Dual Monarchy"}],"description":{"@language":"en","@value":"constitutional monarchic union from 1867 to October 1918"},"name":{"@language":"en","@value":"Austria-Hungary"},"sameAs":[{"@type":"xsd:anyURI","@value":"http://hi.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE-%E0%A4%B9%E0%A4%82%E0%A4%97%E0%A4%B0%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Autriche-Hongrie"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/It%C3%A4valta-Unkari"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Imperium_Austro-Hungaricum"},{"@type":"xsd:anyURI","@value":"http://am.wikipedia.org/wiki/%E1%8A%A6%E1%88%B5%E1%89%B5%E1%88%AA%E1%8B%AB-%E1%88%80%E1%8A%95%E1%8C%8B%E1%88%AA"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%A7%D8%AA%D8%B1%DB%8C%D8%B4-%D9%85%D8%AC%D8%A7%D8%B1%D8%B3%D8%AA%D8%A7%D9%86"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Austro-Ungaria"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/%C3%98sterrike-Ungarn"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%90%D1%83%D1%81%D1%82%D1%80%D0%BE%D1%83%D0%B3%D0%B0%D1%80%D1%81%D0%BA%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%82%AA%E3%83%BC%E3%82%B9%E3%83%88%E3%83%AA%E3%82%A2%EF%BC%9D%E3%83%8F%E3%83%B3%E3%82%AC%E3%83%AA%E3%83%BC%E5%B8%9D%E5%9B%BD"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Austria-Hongaria"},{"@type":"xsd:anyURI","@value":"http://sw.wikipedia.org/wiki/Austria-Hungaria"},{"@type":"xsd:anyURI","@value":"http://th.wikipedia.org/wiki/%E0%B8%88%E0%B8%B1%E0%B8%81%E0%B8%A3%E0%B8%A7%E0%B8%A3%E0%B8%A3%E0%B8%94%E0%B8%B4%E0%B8%AD%E0%B8%AD%E0%B8%AA%E0%B9%80%E0%B8%95%E0%B8%A3%E0%B8%B5%E0%B8%A2-%E0%B8%AE%E0%B8%B1%E0%B8%87%E0%B8%81%E0%B8%B2%E0%B8%A3%E0%B8%B5"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Avusturya-Macaristan_%C4%B0mparatorlu%C4%9Fu"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Avstro-Ogrska"},{"@type":"xsd:anyURI","@value":"http://ms.wikipedia.org/wiki/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Rak%C3%BAsko-Uhorsko"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Rakousko-Uhersko"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/%C3%96sterreich-Ungarn"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/%C3%98strig-Ungarn"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Austrija-Vengrija"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%86%E0%AE%A4%E0%AF%8D%E0%AE%A4%E0%AE%BF%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%BE-%E0%AE%85%E0%AE%99%E0%AF%8D%E0%AE%95%E0%AF%87%E0%AE%B0%E0%AE%BF"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EC%98%A4%EC%8A%A4%ED%8A%B8%EB%A6%AC%EC%95%84-%ED%97%9D%EA%B0%80%EB%A6%AC_%EC%A0%9C%EA%B5%AD"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Impero_austro-ungarico"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%91%E0%A4%B8%E0%A5%8D%E0%A4%9F%E0%A5%8D%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE-%E0%A4%B9%E0%A4%82%E0%A4%97%E0%A5%87%E0%A4%B0%E0%A5%80"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%85%E0%A6%B8%E0%A7%8D%E0%A6%9F%E0%A7%8D%E0%A6%B0%E0%A6%BF%E0%A6%AF%E0%A6%BC%E0%A6%BE-%E0%A6%B9%E0%A6%BE%E0%A6%99%E0%A7%8D%E0%A6%97%E0%A7%87%E0%A6%B0%E0%A6%BF"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Austria-Ungari"},{"@type":"xsd:anyURI","@value":"http://ml.wikipedia.org/wiki/%E0%B4%86%E0%B4%B8%E0%B5%8D%E0%B4%9F%E0%B5%8D%E0%B4%B0%E0%B5%8B-%E0%B4%B9%E0%B4%99%E0%B5%8D%E0%B4%95%E0%B5%87%E0%B4%B1%E0%B4%BF%E0%B4%AF%E0%B5%BB_%E0%B4%B8%E0%B4%BE%E0%B4%AE%E0%B5%8D%E0%B4%B0%E0%B4%BE%E0%B4%9C%E0%B5%8D%E0%B4%AF%E0%B4%82"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%94%D7%90%D7%99%D7%9E%D7%A4%D7%A8%D7%99%D7%94_%D7%94%D7%90%D7%95%D7%A1%D7%98%D7%A8%D7%95-%D7%94%D7%95%D7%A0%D7%92%D7%A8%D7%99%D7%AA"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/%C4%90%E1%BA%BF_qu%E1%BB%91c_%C3%81o-Hung"},{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/%C3%96sterrike-Ungern"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Oostenrijk-Hongarije"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%91%CF%85%CF%83%CF%84%CF%81%CE%BF%CE%BF%CF%85%CE%B3%CE%B3%CE%B1%CF%81%CE%AF%CE%B1"},{"@type":"xsd:anyURI","@value":"http://tl.wikipedia.org/wiki/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Austroung%C4%81rija"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Osztr%C3%A1k%E2%80%93Magyar_Monarchia"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%BE-%D0%A3%D0%BD%D0%B3%D0%B0%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Imperio_austroh%C3%BAngaro"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%BE-%D0%92%D0%B5%D0%BD%D0%B3%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E5%A5%A5%E5%8C%88%E5%B8%9D%E5%9B%BD"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Austro-W%C4%99gry"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%90%D0%B2%D1%81%D1%82%D1%80%D0%BE-%D0%A3%D0%B3%D0%BE%D1%80%D1%89%D0%B8%D0%BD%D0%B0"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%A7%D9%84%D8%A5%D9%85%D8%A8%D8%B1%D8%A7%D8%B7%D9%88%D8%B1%D9%8A%D8%A9_%D8%A7%D9%84%D9%86%D9%85%D8%B3%D8%A7%D9%88%D9%8A%D8%A9_%D8%A7%D9%84%D9%85%D8%AC%D8%B1%D9%8A%D8%A9"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/012m_"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Austria-Hungary"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/%C3%81ustria-Hungria"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Austro-Ugarska"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/140196500"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Imperi_Austrohongar%C3%A8s"}]}],"sameAs":[{"@type":"xsd:anyURI","@value":"http://sv.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://uk.wikipedia.org/wiki/%D0%A0%D0%B0%D0%B9%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D1%96%D1%8F_%D0%A0%D1%96%D0%BB%D1%8C%D0%BA%D0%B5"},{"@type":"xsd:anyURI","@value":"http://el.wikipedia.org/wiki/%CE%A1%CE%AC%CE%B9%CE%BD%CE%B5%CF%81_%CE%9C%CE%B1%CF%81%CE%AF%CE%B1_%CE%A1%CE%AF%CE%BB%CE%BA%CE%B5"},{"@type":"xsd:anyURI","@value":"http://en.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://hu.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://zh.wikipedia.org/wiki/%E8%8E%B1%E7%BA%B3%C2%B7%E7%8E%9B%E5%88%A9%E4%BA%9A%C2%B7%E9%87%8C%E5%B0%94%E5%85%8B"},{"@type":"xsd:anyURI","@value":"http://viaf.org/viaf/46897170"},{"@type":"xsd:anyURI","@value":"http://pt.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ar.wikipedia.org/wiki/%D8%B1%D8%A7%D9%8A%D9%86%D8%B1_%D9%85%D8%A7%D8%B1%D9%8A%D8%A7_%D8%B1%D9%8A%D9%84%D9%83%D9%87"},{"@type":"xsd:anyURI","@value":"http://pl.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://nl.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://et.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://da.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ca.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ro.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://es.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://la.wikipedia.org/wiki/Rainerius_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://sr.wikipedia.org/wiki/%D0%A0%D0%B0%D1%98%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D0%B8%D1%98%D0%B0_%D0%A0%D0%B8%D0%BB%D0%BA%D0%B5"},{"@type":"xsd:anyURI","@value":"http://mr.wikipedia.org/wiki/%E0%A4%B0%E0%A4%BE%E0%A4%AF%E0%A4%A8%E0%A4%B0_%E0%A4%AE%E0%A4%BE%E0%A4%B0%E0%A4%BF%E0%A4%AF%E0%A4%BE_%E0%A4%B0%E0%A4%BF%E0%A4%B2%E0%A5%8D%E0%A4%95%E0%A5%87"},{"@type":"xsd:anyURI","@value":"http://tr.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://he.wikipedia.org/wiki/%D7%A8%D7%99%D7%99%D7%A0%D7%A8_%D7%9E%D7%A8%D7%99%D7%94_%D7%A8%D7%99%D7%9C%D7%A7%D7%94"},{"@type":"xsd:anyURI","@value":"http://bg.wikipedia.org/wiki/%D0%A0%D0%B0%D0%B9%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D0%B8%D1%8F_%D0%A0%D0%B8%D0%BB%D0%BA%D0%B5"},{"@type":"xsd:anyURI","@value":"http://ja.wikipedia.org/wiki/%E3%83%A9%E3%82%A4%E3%83%8A%E3%83%BC%E3%83%BB%E3%83%9E%E3%83%AA%E3%82%A2%E3%83%BB%E3%83%AA%E3%83%AB%E3%82%B1"},{"@type":"xsd:anyURI","@value":"http://ru.wikipedia.org/wiki/%D0%A0%D0%B8%D0%BB%D1%8C%D0%BA%D0%B5%2C_%D0%A0%D0%B0%D0%B9%D0%BD%D0%B5%D1%80_%D0%9C%D0%B0%D1%80%D0%B8%D1%8F"},{"@type":"xsd:anyURI","@value":"http://fi.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://lv.wikipedia.org/wiki/Rainers_Marija_Rilke"},{"@type":"xsd:anyURI","@value":"http://sk.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://cs.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://fr.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://ko.wikipedia.org/wiki/%EB%9D%BC%EC%9D%B4%EB%84%88_%EB%A7%88%EB%A6%AC%EC%95%84_%EB%A6%B4%EC%BC%80"},{"@type":"xsd:anyURI","@value":"http://ta.wikipedia.org/wiki/%E0%AE%B0%E0%AF%86%E0%AE%AF%E0%AF%8D%E0%AE%A9%E0%AE%B0%E0%AF%8D_%E0%AE%AE%E0%AE%B0%E0%AE%BF%E0%AE%AF%E0%AE%BE_%E0%AE%B0%E0%AE%BF%E0%AE%B2%E0%AF%8D%E0%AE%95%E0%AF%87"},{"@type":"xsd:anyURI","@value":"http://www.discogs.com/artist/558104"},{"@type":"xsd:anyURI","@value":"http://id.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://fa.wikipedia.org/wiki/%D8%B1%D8%A7%DB%8C%D9%86%D8%B1_%D9%85%D8%A7%D8%B1%DB%8C%D8%A7_%D8%B1%DB%8C%D9%84%DA%A9%D9%87"},{"@type":"xsd:anyURI","@value":"http://lt.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://sl.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://vi.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://it.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://musicbrainz.org/artist/372abcd1-0367-41fd-8bcc-efe2b7c1c8bf"},{"@type":"xsd:anyURI","@value":"http://no.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://de.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://www.quora.com/topic/Rainer-Maria-Rilke"},{"@type":"xsd:anyURI","@value":"http://g.co/kg/m/06l0f"},{"@type":"xsd:anyURI","@value":"http://hr.wikipedia.org/wiki/Rainer_Maria_Rilke"},{"@type":"xsd:anyURI","@value":"http://bn.wikipedia.org/wiki/%E0%A6%B0%E0%A6%BE%E0%A6%87%E0%A6%A8%E0%A6%BE%E0%A6%B0_%E0%A6%AE%E0%A6%BE%E0%A6%B0%E0%A6%BF%E0%A6%AF%E0%A6%BC%E0%A6%BE_%E0%A6%B0%E0%A6%BF%E0%A6%B2%E0%A6%95%E0%A7%87"}],"url":{"@type":"xsd:anyURI","@value":"http://www.rilke.de/"}},"resultScore":0.13} -2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : sparql: SELECT DISTINCT ?result9 WHERE { - wd:Q462333 wdt:P26 ?result9 . -} LIMIT 100 -2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : confidence: 0.13 -2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'literal' -2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : failed to process data ast type 'literal': Cannot invoke "com.google.gson.JsonElement.getAsJsonObject()" because the return value of "com.google.gson.JsonObject.get(String)" is null -2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : trying to process data as type 'resource' -2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : found result value: http://www.wikidata.org/entity/Q76483 (http://www.w3.org/2001/XMLSchema#anyURI) -2023-10-27 14:03:41.510 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusResult  : processed data as type 'resource' -2023-10-27 14:03:41.517 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e -2023-10-27 14:03:41.517 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : created bindings: ( ?answerDataType, )( ?application, )( ?answerValue, "wd:Q76483" )( ?confidence, "0.13"^^ )( ?targetQuestion, )( ?selectQueryThatShouldComputeTheAnswer, "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" )( ?graph, ) -2023-10-27 14:03:41.518  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@576e29b3 -2023-10-27 14:03:41.518 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?selectQueryThatShouldComputeTheAnswer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (now() as ?time) . -} -2023-10-27 14:03:41.520  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" . - ?newAnnotation qa:score "0.13"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 14:03:41.520  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" . - ?newAnnotation qa:score "0.13"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 14:03:41.520  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfTypedLiteral.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6edea6c7 -2023-10-27 14:03:41.520 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -PREFIX xsd: - -INSERT { -GRAPH ?graph { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget ?targetQuestion . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score ?confidence . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy ?application . - - ?answer rdf:type qa:Answer . - ?answer rdf:value ?answerValue . - - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget ?targetQuestion . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score ?confidence . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy ?application . - - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value ?answerDataType . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?newAnnotation) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?newTypeAnnotation) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (now() as ?time) . -} -2023-10-27 14:03:41.525  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.13"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q76483" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.13"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 14:03:41.526  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : SPARQL insert for adding data to Qanary triplestore: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.13"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q76483" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.13"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 14:03:41.526 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationOfAnswerSPARQL . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody "SELECT DISTINCT ?result9 WHERE {\twd:Q462333 wdt:P26 ?result9 .} LIMIT 100" . - ?newAnnotation qa:score "0.13"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(now() AS ?time) - } - -2023-10-27 14:03:41.533 DEBUG 31614 --- [nio-5982-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: -PREFIX dbr: -PREFIX rdf: - -INSERT { - GRAPH { - ?newAnnotation rdf:type qa:AnnotationAnswer . - ?newAnnotation oa:hasTarget . - ?newAnnotation oa:hasBody ?answer . - ?newAnnotation qa:score "0.13"^^xsd:double . - ?newAnnotation oa:annotatedAt ?time . - ?newAnnotation oa:annotatedBy . - ?answer rdf:type qa:Answer . - ?answer rdf:value "wd:Q76483" . - ?newTypeAnnotation rdf:type qa:AnnotationOfAnswerType . - ?newTypeAnnotation oa:hasTarget . - ?newTypeAnnotation oa:hasBody ?annotationOfAnswerType . - ?newTypeAnnotation qa:score "0.13"^^xsd:double . - ?newTypeAnnotation oa:annotatedAt ?time . - ?newTypeAnnotation oa:annotatedBy . - ?answerType rdf:type qa:AnswerType . - ?answerType rdf:value xsd:anyURI . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?newAnnotation) - BIND(IRI(str(rand())) AS ?answer) - BIND(IRI(str(rand())) AS ?newTypeAnnotation) - BIND(IRI(str(rand())) AS ?answerType) - BIND(now() AS ?time) - } - -2023-10-27 14:03:41.539 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : processing took: 9047 ms -2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"},"inGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a","outGraph":"urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a"} -2023-10-27 14:03:48.307  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@16d3171c -2023-10-27 14:03:48.317  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql -2023-10-27 14:03:48.317 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:03:48.427  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d8066f3 -2023-10-27 14:03:48.427 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:48.432  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:48.432  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:48.443 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 -2023-10-27 14:03:48.443  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7a77dff1-97d6-4b2b-b4ad-fcd5c489a715 found in urn:graph:0646f694-ba5c-46a4-beb1-e3f946537f0a at http://localhost:8080/sparql -2023-10-27 14:03:48.445 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who is the youngested member in g-idle? -2023-10-27 14:03:48.448  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=who%20is%20the%20youngested%20member%20in%20g-idle?&lang=en -2023-10-27 14:03:48.448 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=who%20is%20the%20youngested%20member%20in%20g-idle?&lang=en -2023-10-27 14:03:48.448  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=who%20is%20the%20youngested%20member%20in%20g-idle?&lang=en -2023-10-27 14:03:48.449 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=who%2520is%2520the%2520youngested%2520member%2520in%2520g-idle?&lang=en -2023-10-27 14:03:48.449 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:48.452  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-973931141 -2023-10-27 14:04:05.352 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@16aae182 -2023-10-27 14:04:05.353 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:04:05.353 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:04:20.363  INFO 31614 --- [nio-5982-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:20.364  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:20.364  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"},"inGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1","outGraph":"urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1"} -2023-10-27 14:04:20.364  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@3c645e75 -2023-10-27 14:04:20.372  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql -2023-10-27 14:04:20.372 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:04:20.382  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@32a3b789 -2023-10-27 14:04:20.382 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:20.383  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:20.384  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:20.389 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd -2023-10-27 14:04:20.389  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_63b117ff-1d5a-4533-8438-e6714aca4fbd found in urn:graph:8f9ced7b-9c84-4154-ad93-60f5db6b56a1 at http://localhost:8080/sparql -2023-10-27 14:04:20.390 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the titles of the Star Wars series movies? -2023-10-27 14:04:20.391  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20titles%20of%20the%20Star%20Wars%20series%20movies?&lang=en -2023-10-27 14:04:20.391 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20titles%20of%20the%20Star%20Wars%20series%20movies?&lang=en -2023-10-27 14:04:20.391  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20are%20the%20titles%20of%20the%20Star%20Wars%20series%20movies?&lang=en -2023-10-27 14:04:20.391 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520are%2520the%2520titles%2520of%2520the%2520Star%2520Wars%2520series%2520movies?&lang=en -2023-10-27 14:04:20.391 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:04:20.391  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1677040593 -2023-10-27 14:04:26.242 DEBUG 31614 --- [nio-5982-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@739ebdb2 -2023-10-27 14:04:26.242 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:04:26.243 ERROR 31614 --- [nio-5982-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"},"inGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b","outGraph":"urn:graph:99098222-4751-4d9d-8198-d552771ba84b"} -2023-10-27 14:05:01.492  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@47959d3d -2023-10-27 14:05:01.499  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql -2023-10-27 14:05:01.499 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:05:01.506  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f4d3d2f -2023-10-27 14:05:01.507 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:01.507  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:01.507  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:01.512 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b -2023-10-27 14:05:01.512  INFO 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a7fed2f9-cb87-4db2-a948-5d7524f7a38b found in urn:graph:99098222-4751-4d9d-8198-d552771ba84b at http://localhost:8080/sparql -2023-10-27 14:05:01.513 DEBUG 31614 --- [nio-5982-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many spouses do head of states have on average? -2023-10-27 14:05:01.514  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20spouses%20do%20head%20of%20states%20have%20on%20average?&lang=en -2023-10-27 14:05:01.514 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20spouses%20do%20head%20of%20states%20have%20on%20average?&lang=en -2023-10-27 14:05:01.514  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20spouses%20do%20head%20of%20states%20have%20on%20average?&lang=en -2023-10-27 14:05:01.514 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520spouses%2520do%2520head%2520of%2520states%2520have%2520on%2520average?&lang=en -2023-10-27 14:05:01.514 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:05:01.514  INFO 31614 --- [nio-5982-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1605027937 -2023-10-27 14:05:09.318  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:05:09.318  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:05:09.319  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"},"inGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89","outGraph":"urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89"} -2023-10-27 14:05:09.319  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@640da79c -2023-10-27 14:05:09.325  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql -2023-10-27 14:05:09.325 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:05:09.334  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2740d80f -2023-10-27 14:05:09.335 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:09.336  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:09.336  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:09.341 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b -2023-10-27 14:05:09.342  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6fbb2af1-3f17-4020-84b9-76267493814b found in urn:graph:7850b7f6-85cc-4587-95e1-0b74b5aceb89 at http://localhost:8080/sparql -2023-10-27 14:05:09.343 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Did the Chicago Bulls win at least two seasons of the NBA championship? -2023-10-27 14:05:09.343  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20the%20Chicago%20Bulls%20win%20at%20least%20two%20seasons%20of%20the%20NBA%20championship?&lang=en -2023-10-27 14:05:09.343 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Did%20the%20Chicago%20Bulls%20win%20at%20least%20two%20seasons%20of%20the%20NBA%20championship?&lang=en -2023-10-27 14:05:09.343  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Did%20the%20Chicago%20Bulls%20win%20at%20least%20two%20seasons%20of%20the%20NBA%20championship?&lang=en -2023-10-27 14:05:09.344 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Did%2520the%2520Chicago%2520Bulls%2520win%2520at%2520least%2520two%2520seasons%2520of%2520the%2520NBA%2520championship?&lang=en -2023-10-27 14:05:09.344 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:05:09.344  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=467978128 -2023-10-27 14:05:31.419 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1a362884 -2023-10-27 14:05:31.419 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:05:31.420 ERROR 31614 --- [nio-5982-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:33.963  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7bf70593 -2023-10-27 14:05:33.971  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql -2023-10-27 14:05:33.971 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:05:33.978  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@18a85873 -2023-10-27 14:05:33.978 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:33.979  INFO 31614 --- [io-5982-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:33.979  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:33.984 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:33.984  INFO 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba found in urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 at http://localhost:8080/sparql -2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 14:05:33.986  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20which%20language%20does%20the%20united%20stated%20have%20the%20shortest%20short%20name?&lang=en -2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=in%20which%20language%20does%20the%20united%20stated%20have%20the%20shortest%20short%20name?&lang=en -2023-10-27 14:05:33.986  INFO 31614 --- [io-5982-exec-10] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=in%20which%20language%20does%20the%20united%20stated%20have%20the%20shortest%20short%20name?&lang=en -2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=in%2520which%2520language%2520does%2520the%2520united%2520stated%2520have%2520the%2520shortest%2520short%2520name?&lang=en -2023-10-27 14:05:33.986 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:05:33.986  INFO 31614 --- [io-5982-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1298772006 -2023-10-27 14:05:46.355 DEBUG 31614 --- [nio-5982-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@a37e520 -2023-10-27 14:05:46.355 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT -2023-10-27 14:05:46.356 ERROR 31614 --- [nio-5982-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause - -org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:07.235  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@42a72f86 -2023-10-27 14:06:07.244  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql -2023-10-27 14:06:07.244 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:06:07.254  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15441eca -2023-10-27 14:06:07.255 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:07.256  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:07.256  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:07.261 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:07.261  INFO 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc found in urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 at http://localhost:8080/sparql -2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many poems did Allen Ginsberg published? -2023-10-27 14:06:07.263  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20poems%20did%20Allen%20Ginsberg%20published?&lang=en -2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20poems%20did%20Allen%20Ginsberg%20published?&lang=en -2023-10-27 14:06:07.263  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20poems%20did%20Allen%20Ginsberg%20published?&lang=en -2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520poems%2520did%2520Allen%2520Ginsberg%2520published?&lang=en -2023-10-27 14:06:07.263 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:06:07.264  INFO 31614 --- [nio-5982-exec-6] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=172080413 -2023-10-27 14:06:34.156 DEBUG 31614 --- [nio-5982-exec-6] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@40e7970b -2023-10-27 14:06:34.156 DEBUG 31614 --- [nio-5982-exec-6] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:06:34.157 ERROR 31614 --- [nio-5982-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:06:40.762  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.763  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.763  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"},"inGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3","outGraph":"urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3"} -2023-10-27 14:06:40.763  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@530f51d -2023-10-27 14:06:40.771  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql -2023-10-27 14:06:40.771 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:06:40.779  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6f52d86f -2023-10-27 14:06:40.779 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:40.780  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.780  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:40.787 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 -2023-10-27 14:06:40.787  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d5c4bb4c-8f4b-43b6-b33d-8b91e2801a53 found in urn:graph:84cf4c50-bdfb-4f28-8f9b-03bce3466be3 at http://localhost:8080/sparql -2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many female Chinese Empresses have there been? -2023-10-27 14:06:40.789  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20female%20Chinese%20Empresses%20have%20there%20been?&lang=en -2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=How%20many%20female%20Chinese%20Empresses%20have%20there%20been?&lang=en -2023-10-27 14:06:40.789  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=How%20many%20female%20Chinese%20Empresses%20have%20there%20been?&lang=en -2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=How%2520many%2520female%2520Chinese%2520Empresses%2520have%2520there%2520been?&lang=en -2023-10-27 14:06:40.789 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:06:40.789  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=993915621 -2023-10-27 14:06:41.674 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@4d8f2bcb -2023-10-27 14:06:41.674 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:06:41.674 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:20.037  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@7aee92c9 -2023-10-27 14:07:20.043  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql -2023-10-27 14:07:20.044 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:07:20.056  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@271f8e3d -2023-10-27 14:07:20.056 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:20.056  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:20.057  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:20.061 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:20.062  INFO 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f found in urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 at http://localhost:8080/sparql -2023-10-27 14:07:20.063 DEBUG 31614 --- [nio-5982-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:20.063  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en -2023-10-27 14:07:20.063 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en -2023-10-27 14:07:20.064  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en -2023-10-27 14:07:20.064 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520started%2520first:%2520impressionism%2520or%2520expressionism%2520(art%2520movements)?&lang=en -2023-10-27 14:07:20.064 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:07:20.064  INFO 31614 --- [nio-5982-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=2146761926 -2023-10-27 14:07:21.261 DEBUG 31614 --- [nio-5982-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@219171c6 -2023-10-27 14:07:21.261 DEBUG 31614 --- [nio-5982-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:07:21.264 ERROR 31614 --- [nio-5982-exec-7] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"},"inGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351","outGraph":"urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351"} -2023-10-27 14:07:24.016  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@33fc5040 -2023-10-27 14:07:24.022  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql -2023-10-27 14:07:24.022 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:07:24.029  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@b26cd1a -2023-10-27 14:07:24.029 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:24.030  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:24.030  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:24.034 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 -2023-10-27 14:07:24.034  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_85edbe91-acb3-4d98-819c-045251e4b827 found in urn:graph:42a3f459-09f0-40ae-8bd2-407eb9583351 at http://localhost:8080/sparql -2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In how many movies did Carey Mulligan and Ryan Gosling star together? -2023-10-27 14:07:24.036  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=In%20how%20many%20movies%20did%20Carey%20Mulligan%20and%20Ryan%20Gosling%20star%20together?&lang=en -2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=In%20how%20many%20movies%20did%20Carey%20Mulligan%20and%20Ryan%20Gosling%20star%20together?&lang=en -2023-10-27 14:07:24.036  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=In%20how%20many%20movies%20did%20Carey%20Mulligan%20and%20Ryan%20Gosling%20star%20together?&lang=en -2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=In%2520how%2520many%2520movies%2520did%2520Carey%2520Mulligan%2520and%2520Ryan%2520Gosling%2520star%2520together?&lang=en -2023-10-27 14:07:24.036 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:07:24.036  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1108552199 -2023-10-27 14:07:31.497 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6ff890c7 -2023-10-27 14:07:31.497 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:07:31.498 ERROR 31614 --- [nio-5982-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:08:10.083  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:10.084  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:10.084  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:10.084  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@36fd9f57 -2023-10-27 14:08:10.092  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql -2023-10-27 14:08:10.092 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:08:10.103  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@73d5cf45 -2023-10-27 14:08:10.103 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:10.104  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:10.104  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:10.109 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:10.109  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 found in urn:graph:9804c557-d25c-4f21-bbac-274526304a1c at http://localhost:8080/sparql -2023-10-27 14:08:10.110 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What caused Kobe Bryant's Death? -2023-10-27 14:08:10.110  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20caused%20Kobe%20Bryant's%20Death?&lang=en -2023-10-27 14:08:10.110 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20caused%20Kobe%20Bryant's%20Death?&lang=en -2023-10-27 14:08:10.110  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20caused%20Kobe%20Bryant's%20Death?&lang=en -2023-10-27 14:08:10.111 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520caused%2520Kobe%2520Bryant's%2520Death?&lang=en -2023-10-27 14:08:10.111 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:08:10.111  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-119898012 -2023-10-27 14:08:13.798 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@25fc326c -2023-10-27 14:08:13.798 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:08:13.799 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:29.412  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@32af6fc7 -2023-10-27 14:08:29.423  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql -2023-10-27 14:08:29.423 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:08:29.437  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19b62d01 -2023-10-27 14:08:29.437 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:29.438  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.439  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.445 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:29.445  INFO 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b found in urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 at http://localhost:8080/sparql -2023-10-27 14:08:29.447 DEBUG 31614 --- [nio-5982-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:29.447  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en -2023-10-27 14:08:29.447 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en -2023-10-27 14:08:29.448  INFO 31614 --- [nio-5982-exec-3] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=Which%20started%20first:%20impressionism%20or%20expressionism%20(art%20movements)?&lang=en -2023-10-27 14:08:29.448 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=Which%2520started%2520first:%2520impressionism%2520or%2520expressionism%2520(art%2520movements)?&lang=en -2023-10-27 14:08:29.448 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:08:29.453 DEBUG 31614 --- [nio-5982-exec-3] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@219171c6 -2023-10-27 14:08:29.454 DEBUG 31614 --- [nio-5982-exec-3] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:08:29.455 ERROR 31614 --- [nio-5982-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:09:13.761  INFO 31614 --- [nio-5982-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.762  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.762  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"},"inGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf","outGraph":"urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf"} -2023-10-27 14:09:13.762  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@5458dc55 -2023-10-27 14:09:13.775  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql -2023-10-27 14:09:13.775 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:09:13.792  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@69ab95d9 -2023-10-27 14:09:13.792 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:13.793  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:13.793  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:13.799 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 -2023-10-27 14:09:13.799  INFO 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4cb17fb4-ceec-4ca8-ad3c-baa29903b303 found in urn:graph:ee8833be-f784-4a29-894b-98a76443dcdf at http://localhost:8080/sparql -2023-10-27 14:09:13.801 DEBUG 31614 --- [nio-5982-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation when was the creator of saturday night live born? -2023-10-27 14:09:13.802  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20creator%20of%20saturday%20night%20live%20born?&lang=en -2023-10-27 14:09:13.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20creator%20of%20saturday%20night%20live%20born?&lang=en -2023-10-27 14:09:13.802  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=when%20was%20the%20creator%20of%20saturday%20night%20live%20born?&lang=en -2023-10-27 14:09:13.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=when%2520was%2520the%2520creator%2520of%2520saturday%2520night%2520live%2520born?&lang=en -2023-10-27 14:09:13.802 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:09:13.803  INFO 31614 --- [nio-5982-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-603999781 -2023-10-27 14:09:48.949  INFO 31614 --- [nio-5982-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:09:48.950  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:09:48.950  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"},"inGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b","outGraph":"urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b"} -2023-10-27 14:09:48.950  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : process: eu.wdaqua.qanary.commons.QanaryMessage@225341e5 -2023-10-27 14:09:48.960  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : language en found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql -2023-10-27 14:09:48.960 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : proceeding with lang: en -2023-10-27 14:09:48.971  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66bb2273 -2023-10-27 14:09:48.971 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:48.972  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:48.973  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:48.977 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 -2023-10-27 14:09:48.978  INFO 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_d7b2de00-033e-428e-a2ba-82d27ce6d835 found in urn:graph:e2fe4342-86ed-4aa6-ba5e-71b062ec433b at http://localhost:8080/sparql -2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What came first: the TV show The Flintstones or the end of racial discrimination in voting in the US ? -2023-10-27 14:09:48.980  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20came%20first:%20the%20TV%20show%20The%20Flintstones%20or%20the%20end%20of%20racial%20discrimination%20in%20voting%20in%20the%20US%20?&lang=en -2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.PlatypusQueryBuilder  : URL: https://qa.askplatyp.us/v0/ask?q=What%20came%20first:%20the%20TV%20show%20The%20Flintstones%20or%20the%20end%20of%20racial%20discrimination%20in%20voting%20in%20the%20US%20?&lang=en -2023-10-27 14:09:48.980  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.p.qb.messages.PlatypusRequest  : request to https://qa.askplatyp.us/v0/ask?q=What%20came%20first:%20the%20TV%20show%20The%20Flintstones%20or%20the%20end%20of%20racial%20discrimination%20in%20voting%20in%20the%20US%20?&lang=en -2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP GET https://qa.askplatyp.us/v0/ask?q=What%2520came%2520first:%2520the%2520TV%2520show%2520The%2520Flintstones%2520or%2520the%2520end%2520of%2520racial%2520discrimination%2520in%2520voting%2520in%2520the%2520US%2520?&lang=en -2023-10-27 14:09:48.980 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:09:48.980  INFO 31614 --- [nio-5982-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1557397273 -2023-10-27 14:09:49.752 DEBUG 31614 --- [nio-5982-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@55f31d75 -2023-10-27 14:09:49.752 DEBUG 31614 --- [nio-5982-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:09:49.754 ERROR 31614 --- [nio-5982-exec-8] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:09:59.551 DEBUG 31614 --- [nio-5982-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@78248c9d -2023-10-27 14:09:59.551 DEBUG 31614 --- [nio-5982-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 500 INTERNAL_SERVER_ERROR -2023-10-27 14:09:59.553 ERROR 31614 --- [nio-5982-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

"] with root cause - -org.springframework.web.client.HttpServerErrorException$InternalServerError: 500 INTERNAL SERVER ERROR: "500 Internal Server Error

Internal Server Error

[E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.

" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:10:02.047 DEBUG 31614 --- [nio-5982-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@1d33f176 -2023-10-27 14:10:02.047 DEBUG 31614 --- [nio-5982-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT -2023-10-27 14:10:02.049 ERROR 31614 --- [nio-5982-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause - -org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:10:34.042 DEBUG 31614 --- [io-5982-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@59cf1c15 -2023-10-27 14:10:34.042 DEBUG 31614 --- [io-5982-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 504 GATEWAY_TIMEOUT -2023-10-27 14:10:34.044 ERROR 31614 --- [io-5982-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
"] with root cause - -org.springframework.web.client.HttpServerErrorException$GatewayTimeout: 504 Gateway Time-out: "504 Gateway Time-out

504 Gateway Time-out


nginx
" - at org.springframework.web.client.HttpServerErrorException.create(HttpServerErrorException.java:116) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:170) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.DefaultResponseErrorHandler.handleError(DefaultResponseErrorHandler.java:122) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.ResponseErrorHandler.handleError(ResponseErrorHandler.java:63) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:825) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:783) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.execute(RestTemplate.java:717) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.client.RestTemplate.getForEntity(RestTemplate.java:367) ~[spring-web-5.3.25.jar!/:5.3.25] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.requestPlatypusWebService(PlatypusQueryBuilder.java:184) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.platypuswrapper.qb.PlatypusQueryBuilder.process(PlatypusQueryBuilder.java:143) ~[classes!/:3.3.1] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1071) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:964) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:696) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.25.jar!/:5.3.25] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.9.jar!/:2.7.9] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.25.jar!/:5.3.25] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.71.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.71.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - diff --git a/qanary-component-QB-PlatypusWrapper/pom.xml b/qanary-component-QB-PlatypusWrapper/pom.xml index 56b2d37e4..6c1c2f900 100644 --- a/qanary-component-QB-PlatypusWrapper/pom.xml +++ b/qanary-component-QB-PlatypusWrapper/pom.xml @@ -32,11 +32,6 @@ qa.component ${qanary.component.version}
- - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-QB-QAnswer/pom.xml b/qanary-component-QB-QAnswer/pom.xml index 9b9886865..c524a6294 100644 --- a/qanary-component-QB-QAnswer/pom.xml +++ b/qanary-component-QB-QAnswer/pom.xml @@ -9,7 +9,7 @@ org.springframework.boot spring-boot-starter-parent - 2.6.7 + 2.7.0 @@ -22,75 +22,83 @@ 1.7.0 - - - eu.wdaqua.qanary - qa.component - ${qanary.version} - - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - - - org.springframework.boot - spring-boot-starter-web - - - de.codecentric - spring-boot-admin-starter-client - ${spring-boot-admin.version} - - - org.hamcrest - hamcrest-all - 1.3 - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - junit - junit - test - - - hamcrest-core - org.hamcrest - - - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springdoc - springdoc-openapi-ui - ${springdoc.version} - - - com.jayway.jsonpath - json-path - test - - - com.jayway.jsonpath - json-path-assert - test - - - - com.google.code.gson - gson - - - + + + eu.wdaqua.qanary + qa.component + ${qanary.version} + + + org.apache.logging.log4j + log4j-to-slf4j + + + + + org.apache.logging.log4j + log4j-to-slf4j + [2.15.0,3.) + + + org.apache.logging.log4j + log4j-api + + + + + org.springframework.boot + spring-boot-starter-web + + + de.codecentric + spring-boot-admin-starter-client + ${spring-boot-admin.version} + + + org.hamcrest + hamcrest-all + 1.3 + test + + + org.junit.jupiter + junit-jupiter-engine + test + + + junit + junit + test + + + hamcrest-core + org.hamcrest + + + + + org.springframework.boot + spring-boot-starter-test + test + + + + com.google.code.gson + gson + + + + org.springdoc + springdoc-openapi-data-rest + ${springdoc.version} + + + + org.springdoc + springdoc-openapi-ui + ${springdoc.version} + + org.springframework.boot diff --git a/qanary-component-QB-Sina/nohup.out b/qanary-component-QB-Sina/nohup.out deleted file mode 100644 index fcddd9228..000000000 --- a/qanary-component-QB-Sina/nohup.out +++ /dev/null @@ -1,7274 +0,0 @@ - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -SINA -- SINA is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.4 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:09:22.297  INFO 9653 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 9653 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) -2023-10-27 12:09:22.355 DEBUG 9653 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.358  INFO 9653 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:45.844  INFO 9653 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 12:09:45.854  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3185fa6b -2023-10-27 12:09:45.855  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d366c9b -2023-10-27 12:09:45.855  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b58ed3c -2023-10-27 12:09:45.856  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24faea88 -2023-10-27 12:09:45.989  INFO 9653 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 12:09:45.993  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@649725e3 -2023-10-27 12:09:45.994  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c0fae6c -2023-10-27 12:09:45.994  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c168660 -2023-10-27 12:09:45.994  INFO 9653 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52b56a3e -2023-10-27 12:09:46.024  INFO 9653 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@36b0fcd5 -2023-10-27 12:09:46.059  INFO 9653 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8098 -spring.application.name = SINA -spring.application.description = SINA is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:46.133  INFO 9653 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl -2023-10-27 12:09:50.200  WARN 9653 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:50.377  WARN 9653 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:50.941  WARN 9653 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:51.029  INFO 9653 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:09:58.470  INFO 9653 --- [ main] e.w.q.component.sina.qb.Application  : Started Application in 40.564 seconds (JVM running for 47.577) -2023-10-27 12:09:59.065  WARN 9653 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=SINA, managementUrl=http://0.0.0.0:8098/actuator, healthUrl=http://0.0.0.0:8098/actuator/health, serviceUrl=http://0.0.0.0:8098/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:08.575  INFO 9653 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as 0e086d39612b - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -SINA -- SINA is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.4 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 12:15:51.787  INFO 11766 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 11766 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) -2023-10-27 12:15:51.797 DEBUG 11766 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:51.798  INFO 11766 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:25.548  INFO 11766 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 12:16:25.609  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3185fa6b -2023-10-27 12:16:25.612  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d366c9b -2023-10-27 12:16:25.613  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b58ed3c -2023-10-27 12:16:25.615  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24faea88 -2023-10-27 12:16:25.934  INFO 11766 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 12:16:25.937  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c168660 -2023-10-27 12:16:25.937  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52b56a3e -2023-10-27 12:16:25.937  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fd0e5b6 -2023-10-27 12:16:25.942  INFO 11766 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4eed46ee -2023-10-27 12:16:25.983  INFO 11766 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@475835b1 -2023-10-27 12:16:26.108  INFO 11766 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8098 -spring.application.name = SINA -spring.application.description = SINA is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:26.375  INFO 11766 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl -2023-10-27 12:16:32.573  WARN 11766 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:32.823  WARN 11766 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:33.773  WARN 11766 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:33.949  INFO 11766 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:16:44.566  WARN 11766 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8098 is already in use -2023-10-27 12:16:44.920 ERROR 11766 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8098 was already in use. - -Action: - -Identify and stop the process that's listening on port 8098 or configure this application to listen on another port. - -2023-10-27 13:37:18.579  WARN 9653 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=SINA, managementUrl=http://0.0.0.0:8098/actuator, healthUrl=http://0.0.0.0:8098/actuator/health, serviceUrl=http://0.0.0.0:8098/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": localhost:8080 failed to respond; nested exception is org.apache.http.NoHttpResponseException: localhost:8080 failed to respond. Further attempts are logged on DEBUG level - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -SINA -- SINA is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.4 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:37:48.086  INFO 28733 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 28733 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) -2023-10-27 13:37:48.129 DEBUG 28733 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:48.143  INFO 28733 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:11.755  INFO 28733 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 13:38:11.778  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@63648ee9 -2023-10-27 13:38:11.779  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68d6972f -2023-10-27 13:38:11.780  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45be7cd5 -2023-10-27 13:38:11.780  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7651218e -2023-10-27 13:38:12.423  INFO 28733 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 13:38:12.424  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@743cb8e0 -2023-10-27 13:38:12.425  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c7a975a -2023-10-27 13:38:12.425  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2c1b9e4b -2023-10-27 13:38:12.425  INFO 28733 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@757d6814 -2023-10-27 13:38:12.434  INFO 28733 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@4c168660 -2023-10-27 13:38:12.575  INFO 28733 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8098 -spring.application.name = SINA -spring.application.description = SINA is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:12.767  INFO 28733 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl -2023-10-27 13:38:17.336  WARN 28733 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:17.554  WARN 28733 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:18.010  WARN 28733 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:18.029  INFO 28733 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:38:26.793  WARN 28733 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8098 is already in use -2023-10-27 13:38:27.347 ERROR 28733 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8098 was already in use. - -Action: - -Identify and stop the process that's listening on port 8098 or configure this application to listen on another port. - - -       .-==--===-:                                                                                             -     :===:  : .-===:                                                                                           -    ====.   .   .-==-                                                                                          -   ====.        .-===:                                                                                         -  -==:         .=====-        ...                     ..              ..                                       -  =:  -.       .=====:    .-======-=====:   :=====:-=====-.      .:-===--------:    :----:.:::::. ::    :::::. - ...-=-         =====.  .=====:   -=====    -=====-::-====-     -====:   :-----     -----:...:::: :.   .:::::  -  :==-          =====  :=====     =====:   .=====:   :====-   .===--.    :----:    :----:    ... .:    :::::.  - -===.         .====: :=====.    :=====    -====-    -====:   ===-=.     -----.    -----.    :::::.   .:::::   --====          ====-  =====:     =====-    =====.   .====-   -====-     :-----    .----:    .:::::    :::::.   -=====         -===-  :=====.    .=====.   :=====    -====:   ===-=:     -----.    -----.    :::::.    :::::    -=====:::--:.:====:   :=====.    =====-    =====:    =====   .=-=--:    :-----    :-----    .:::::    ::::::    -.=====:..======-.    .======::-=======:.:-=====    .=====:.:-===---:.:-------:..:-----:    .:::::...::::::.    - .-===========-       .-======-. -======-=====:     :-=====-:.--------. :------::----:      .::::::.::::::     -    .......=====:..      ...       ...   .....        ....      ...       ...                  .....:::::.     -            -======.                                                                          .:.  .:::::      -              ....                                                                           .:.   :::::.      -                                                                                             .::..:::::.       -                                                                                               .::::..         - - -SINA -- SINA is a Qanary component -Framework@GitHub: https://github.com/WDAqua/Qanary -Components@GitHub: https://github.com/WDAqua/Qanary-question-answering-components -Component Version: 3.2.4 -Spring Boot Version: 2.6.7 -Qanary System endpoint: http://localhost:8080  - -2023-10-27 13:38:54.530  INFO 30124 --- [ main] e.w.q.component.sina.qb.Application  : Starting Application v3.2.4 using Java 21 on fedora with PID 30124 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/target/qanary-component-QB-Sina-3.2.4.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina) -2023-10-27 13:38:54.604 DEBUG 30124 --- [ main] e.w.q.component.sina.qb.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:54.611  INFO 30124 --- [ main] e.w.q.component.sina.qb.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:19.818  INFO 30124 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 13:39:19.821  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3185fa6b -2023-10-27 13:39:19.853  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6d366c9b -2023-10-27 13:39:19.854  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b58ed3c -2023-10-27 13:39:19.860  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@24faea88 -2023-10-27 13:39:20.069  INFO 30124 --- [ main] eu.wdaqua.qanary.component.sina.qb.SINA  : sina.jarfilelocation: sina-0.0.1.jar -2023-10-27 13:39:20.070  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@649725e3 -2023-10-27 13:39:20.079  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3c0fae6c -2023-10-27 13:39:20.080  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4c168660 -2023-10-27 13:39:20.080  INFO 30124 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52b56a3e -2023-10-27 13:39:20.086  INFO 30124 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.sina.qb.SINA@36b0fcd5 -2023-10-27 13:39:20.127  INFO 30124 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8098 -spring.application.name = SINA -spring.application.description = SINA is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:20.234  INFO 30124 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl -2023-10-27 13:39:25.337  WARN 30124 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QB-Sina/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:25.540  WARN 30124 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:26.305  WARN 30124 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:26.483  INFO 30124 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:39:35.407  WARN 30124 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8098 is already in use -2023-10-27 13:39:35.594 ERROR 30124 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8098 was already in use. - -Action: - -Identify and stop the process that's listening on port 8098 or configure this application to listen on another port. - -2023-10-27 13:53:12.490  INFO 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:12.510  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:12.601  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:12.723  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@48ca723 -2023-10-27 13:53:12.830  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@548c10df -2023-10-27 13:53:12.846 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:53:13.051  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:13.052  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:53:13.377 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:13.378  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 found in urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d at http://localhost:8080/sparql -2023-10-27 13:53:13.391 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What did the suffragettes stand for? -2023-10-27 13:53:13.392  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What did the suffragettes stand for? -2023-10-27 13:53:13.392  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5100e830 -2023-10-27 13:53:13.392 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:53:13.397  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:53:13.398  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:53:13.440  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/String_theory start:0 end:4 -2023-10-27 13:53:13.440  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Suffragette start:13 end:25 -2023-10-27 13:53:13.447 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:13.447  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a34f2a6 -2023-10-27 13:53:13.448 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:53:13.453  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:53:13.453  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:53:13.465  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/elevation -2023-10-27 13:53:13.465  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@f40a863 -2023-10-27 13:53:13.466 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:53:13.467  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:53:13.468  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:53:13.477  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/String_theory, http://dbpedia.org/resource/Suffragette, http://dbpedia.org/ontology/elevation: 121 -2023-10-27 13:53:13.479  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 -2023-10-27 13:53:13.527  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar18000898087952527291.cxl -2023-10-27 13:53:13.528  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar18000898087952527291.cxl -2023-10-27 13:53:13.528  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar18000898087952527291.cxl -2023-10-27 13:53:13.528  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/String_theory, http://dbpedia.org/resource/Suffragette, http://dbpedia.org/ontology/elevation on /tmp/sina-0.0.1.jar18000898087952527291.cxl -2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"},"inGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8","outGraph":"urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8"} -2023-10-27 13:54:07.648  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@5dc05312 -2023-10-27 13:54:07.657  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5e9bda8e -2023-10-27 13:54:07.657 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:07.659  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:07.660  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:07.667 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 -2023-10-27 13:54:07.667  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 found in urn:graph:3ce9268a-9ecc-4fbc-8adc-dc5a22c417f8 at http://localhost:8080/sparql -2023-10-27 13:54:07.669 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where does the Nutri-Score originate from? -2023-10-27 13:54:07.669  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Where does the Nutri-Score originate from? -2023-10-27 13:54:07.670  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d249184 -2023-10-27 13:54:07.673 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:54:07.675  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:07.675  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:07.704 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5132e39d-b3d9-45f4-aedb-064987a16e01 -2023-10-27 13:54:07.704  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f9274c2 -2023-10-27 13:54:07.704 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:54:07.706  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:07.706  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:07.716  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/engineer -2023-10-27 13:54:07.716  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7095eae1 -2023-10-27 13:54:07.717 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:54:07.718  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:07.719  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:07.728  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/engineer: 36 -2023-10-27 13:54:07.728  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 -2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar16086999062070224217.cxl -2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar16086999062070224217.cxl -2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar16086999062070224217.cxl -2023-10-27 13:54:07.779  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/engineer on /tmp/sina-0.0.1.jar16086999062070224217.cxl -2023-10-27 13:54:07.978  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar16086999062070224217.cxl -2023-10-27 13:54:07.979 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/engineertype 14 single entity template: select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }template: http://dbpedia.org/ontology/engineer ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }] -2023-10-27 13:54:07.979  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }] -2023-10-27 13:54:07.983  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a7e61dd -2023-10-27 13:54:07.983 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:08.018  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:08.019  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:08.019 DEBUG 9653 --- [nio-8098-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/engineer ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:08.033 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : processing took: 385 ms -2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:22.855  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@fc71604 -2023-10-27 13:54:22.866  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@100e98c -2023-10-27 13:54:22.866 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:22.867  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:22.868  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:22.874 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d -2023-10-27 13:54:22.874  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d found in urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc at http://localhost:8080/sparql -2023-10-27 13:54:22.877 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 13:54:22.878  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many countries have never been members of the UN? -2023-10-27 13:54:22.878  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@53f7d74 -2023-10-27 13:54:22.878 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:54:22.880  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:22.880  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:22.906 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d -2023-10-27 13:54:22.906  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@403de3b7 -2023-10-27 13:54:22.906 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:54:22.908  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:22.908  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:22.917  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/class -2023-10-27 13:54:22.917  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@777dba82 -2023-10-27 13:54:22.917 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:54:22.919  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:22.920  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:22.929  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/class: 33 -2023-10-27 13:54:22.929  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 -2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar6933833029812998901.cxl -2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar6933833029812998901.cxl -2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar6933833029812998901.cxl -2023-10-27 13:54:22.951  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/class on /tmp/sina-0.0.1.jar6933833029812998901.cxl -2023-10-27 13:54:23.059  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar6933833029812998901.cxl -2023-10-27 13:54:23.060 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/classtype 14 single entity template: select * where { http://dbpedia.org/ontology/class ?p ?v0. }template: http://dbpedia.org/ontology/class ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/class ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/class ?p ?v0. }] -2023-10-27 13:54:23.060  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/class ?p ?v0. }] -2023-10-27 13:54:23.060  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71b76168 -2023-10-27 13:54:23.060 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:54:23.064  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/class ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.064  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/class ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.064 DEBUG 9653 --- [nio-8098-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/class ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:54:23.074 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.component.QanaryServiceController  : processing took: 219 ms -2023-10-27 13:54:33.510  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:33.510  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:33.511  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"},"inGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4","outGraph":"urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4"} -2023-10-27 13:54:33.511  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@783ac3e2 -2023-10-27 13:54:33.564  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7c05483d -2023-10-27 13:54:33.565 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:33.566  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:33.567  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:33.573 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c -2023-10-27 13:54:33.573  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2a87f61f-e2e7-458d-9d57-7a8592fefb3c found in urn:graph:632770ed-12ff-49e8-ac69-52c11899f5c4 at http://localhost:8080/sparql -2023-10-27 13:54:33.575 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:33.575  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Does Bremerhaven's local dialing code start with 4? -2023-10-27 13:54:33.576  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3907c9d9 -2023-10-27 13:54:33.576 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:54:33.577  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:33.578  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:33.610 ERROR 9653 --- [nio-8098-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause - -java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) - at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"},"inGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c","outGraph":"urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c"} -2023-10-27 13:54:34.969  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@3784edf7 -2023-10-27 13:54:34.976  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@39430577 -2023-10-27 13:54:34.977 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:34.978  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.978  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:34.983 DEBUG 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 -2023-10-27 13:54:34.983  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 found in urn:graph:fcceb475-c2b1-41d9-a37a-9083de72eb5c at http://localhost:8080/sparql -2023-10-27 13:54:34.985 DEBUG 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many things are part of the "One Piece" Franchise? -2023-10-27 13:54:34.986  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many things are part of the "One Piece" Franchise? -2023-10-27 13:54:34.986  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3d7c8687 -2023-10-27 13:54:34.986 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:54:34.987  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:34.987  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:35.011  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/How_2 start:0 end:3 -2023-10-27 13:54:35.011  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/One_Piece start:33 end:42 -2023-10-27 13:54:35.011  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Franchising start:44 end:53 -2023-10-27 13:54:35.016 DEBUG 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b50ef87d-5396-47f2-9721-d86dc20e0964 -2023-10-27 13:54:35.017  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@787e0f4c -2023-10-27 13:54:35.017 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:54:35.018  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:35.018  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:35.028  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6805bee1 -2023-10-27 13:54:35.028 DEBUG 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:54:35.029  INFO 9653 --- [nio-8098-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:35.030  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:54:35.037  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/How_2, http://dbpedia.org/resource/One_Piece, http://dbpedia.org/resource/Franchising: 113 -2023-10-27 13:54:35.037  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 -2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar14664154595879182775.cxl -2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar14664154595879182775.cxl -2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar14664154595879182775.cxl -2023-10-27 13:54:35.057  INFO 9653 --- [nio-8098-exec-6] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/How_2, http://dbpedia.org/resource/One_Piece, http://dbpedia.org/resource/Franchising on /tmp/sina-0.0.1.jar14664154595879182775.cxl -2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"},"inGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a","outGraph":"urn:graph:713e7115-51ec-4875-b710-943891a2849a"} -2023-10-27 13:55:10.644  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@f124715 -2023-10-27 13:55:10.653  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5a5f9a4a -2023-10-27 13:55:10.653 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:10.655  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:10.655  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:10.664 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 -2023-10-27 13:55:10.664  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 found in urn:graph:713e7115-51ec-4875-b710-943891a2849a at http://localhost:8080/sparql -2023-10-27 13:55:10.666 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the mother tongue of the author Chimamanda Ngozi Adichie ? -2023-10-27 13:55:10.666  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What is the mother tongue of the author Chimamanda Ngozi Adichie ? -2023-10-27 13:55:10.667  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11ecdb33 -2023-10-27 13:55:10.667 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:55:10.668  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:55:10.668  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:55:10.700 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_79673139-3e12-4ec1-a2cb-d20313cbe347 -2023-10-27 13:55:10.701  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@586c15fc -2023-10-27 13:55:10.701 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:55:10.703  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:55:10.703  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:55:10.715  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/country -2023-10-27 13:55:10.716  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1432fe3e -2023-10-27 13:55:10.716 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:55:10.718  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:55:10.719  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:55:10.728  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/country: 35 -2023-10-27 13:55:10.728  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 -2023-10-27 13:55:10.770  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar16188425692322727051.cxl -2023-10-27 13:55:10.771  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar16188425692322727051.cxl -2023-10-27 13:55:10.771  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar16188425692322727051.cxl -2023-10-27 13:55:10.771  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/country on /tmp/sina-0.0.1.jar16188425692322727051.cxl -2023-10-27 13:55:11.038  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar16188425692322727051.cxl -2023-10-27 13:55:11.038 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/countrytype 14 single entity template: select * where { http://dbpedia.org/ontology/country ?p ?v0. }template: http://dbpedia.org/ontology/country ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/country ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/country ?p ?v0. }] -2023-10-27 13:55:11.038  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/country ?p ?v0. }] -2023-10-27 13:55:11.038  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@37d14fa0 -2023-10-27 13:55:11.038 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:11.041  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/country ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:11.041  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/country ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:11.041 DEBUG 9653 --- [io-8098-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/country ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:11.047 DEBUG 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : processing took: 403 ms -2023-10-27 13:55:38.447  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar18000898087952527291.cxl -2023-10-27 13:55:38.447 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/resource/String_theorytype 10 uri of path http://dbpedia.org/resource/Suffragettetype 10 uri of path http://dbpedia.org/ontology/elevationtype 14log4j:WARN No appenders could be found for logger (org.apache.jena.riot.system.stream.JenaIOEnvironment).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.print iri....http://dbpedia.org/resource/String_theoryprint iri....http://dbpedia.org/resource/Suffragetteprint iri....http://dbpedia.org/ontology/elevationinside connecting function ... p-------retrieved query is: select distinct ?p WHERE { ?p . }-------retrieved query is: select distinct ?p WHERE { ?p . }entity: http://dbpedia.org/resource/Suffragetteentity class type: [http://schema.org/CollegeOrUniversity, http://dbpedia.org/ontology/University, http://dbpedia.org/ontology/CyclingLeague, http://dbpedia.org/ontology/TennisLeague, http://dbpedia.org/ontology/BritishRoyalty, http://dbpedia.org/ontology/Broadcaster, http://dbpedia.org/ontology/NationalSoccerClub, http://dbpedia.org/ontology/MilitaryUnit, http://dbpedia.org/ontology/ComicsCreator, http://dbpedia.org/ontology/Legislature, http://dbpedia.org/ontology/ChessPlayer, http://dbpedia.org/ontology/School, http://dbpedia.org/ontology/MusicalArtist, http://dbpedia.org/ontology/Comedian, http://dbpedia.org/ontology/Referee, http://dbpedia.org/ontology/BasketballTeam, http://dbpedia.org/ontology/ChristianBishop, http://dbpedia.org/ontology/Cricketer, http://dbpedia.org/ontology/OfficeHolder, http://dbpedia.org/ontology/RugbyLeague, http://dbpedia.org/ontology/LawFirm, http://dbpedia.org/ontology/Governor, http://dbpedia.org/ontology/BasketballLeague, http://dbpedia.org/ontology/AmericanFootballLeague, http://dbpedia.org/ontology/RugbyClub, http://dbpedia.org/ontology/SpeedwayLeague, http://dbpedia.org/ontology/Athlete, http://dbpedia.org/ontology/SportsTeamMember, http://dbpedia.org/ontology/SportsTeamSeason, http://dbpedia.org/ontology/AustralianRulesFootballPlayer, http://dbpedia.org/ontology/CricketLeague, http://dbpedia.org/ontology/SoccerPlayer, http://dbpedia.org/ontology/EducationalInstitution, http://dbpedia.org/ontology/Architect, http://dbpedia.org/ontology/SoccerClub, http://dbpedia.org/ontology/Cyclist, http://dbpedia.org/ontology/Journalist, http://dbpedia.org/ontology/Cleric, http://schema.org/EducationalOrganization, http://dbpedia.org/ontology/Chancellor, http://dbpedia.org/ontology/SoccerLeagueSeason, http://dbpedia.org/ontology/LacrosseLeague, http://dbpedia.org/ontology/CanadianFootballPlayer, http://xmlns.com/foaf/0.1/Person, http://dbpedia.org/ontology/SoccerManager, http://dbpedia.org/ontology/Judge, http://dbpedia.org/ontology/TradeUnion, http://dbpedia.org/ontology/BaseballTeam, http://dbpedia.org/ontology/Library, http://dbpedia.org/ontology/Cardinal, http://dbpedia.org/ontology/President, http://dbpedia.org/ontology/MartialArtist, http://dbpedia.org/ontology/Swimmer, http://dbpedia.org/ontology/AustralianFootballLeague, http://dbpedia.org/ontology/SnookerPlayer, http://dbpedia.org/ontology/TeamMember, http://dbpedia.org/ontology/MilitaryPerson, http://dbpedia.org/ontology/PoliticalParty, http://dbpedia.org/ontology/BadmintonPlayer, http://dbpedia.org/ontology/MemberOfParliament, http://dbpedia.org/ontology/MotorcycleRacingLeague, http://dbpedia.org/ontology/PersonFunction, http://dbpedia.org/ontology/Criminal, http://dbpedia.org/ontology/Ambassador, http://dbpedia.org/ontology/RecordLabel, http://dbpedia.org/ontology/Politician, http://dbpedia.org/ontology/Congressman, http://dbpedia.org/ontology/Deputy, http://dbpedia.org/ontology/VoiceActor, http://schema.org/SportsTeam, http://dbpedia.org/ontology/SportsTeam, http://dbpedia.org/ontology/Wrestler, http://dbpedia.org/ontology/PokerPlayer, http://dbpedia.org/ontology/ChristianPatriarch, http://schema.org/Organization, http://dbpedia.org/ontology/Scientist, http://dbpedia.org/ontology/SoftballLeague, http://dbpedia.org/ontology/Senator, http://dbpedia.org/ontology/SnookerChamp, http://dbpedia.org/ontology/OrganisationMember, http://dbpedia.org/ontology/Organisation, http://dbpedia.org/ontology/Pope, http://dbpedia.org/ontology/MixedMartialArtsLeague, http://dbpedia.org/ontology/GridironFootballPlayer, http://dbpedia.org/ontology/GolfLeague, http://dbpedia.org/ontology/SoccerClubSeason, http://dbpedia.org/ontology/SambaSchool, http://schema.org/GovernmentOrganization, http://dbpedia.org/ontology/GovernmentAgency, http://dbpedia.org/ontology/Band, http://dbpedia.org/ontology/VicePrimeMinister, http://dbpedia.org/ontology/SportsLeague, http://dbpedia.org/ontology/Royalty, http://dbpedia.org/ontology/Priest, http://dbpedia.org/ontology/FormulaOneRacer, http://dbpedia.org/ontology/BasketballPlayer, http://dbpedia.org/ontology/AmericanFootballPlayer, http://dbpedia.org/ontology/RadioStation, http://dbpedia.org/ontology/CanadianFootballLeague, http://dbpedia.org/ontology/PrimeMinister, http://dbpedia.org/ontology/GeopoliticalOrganisation, http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete, http://dbpedia.org/ontology/SpeedwayTeam, http://dbpedia.org/ontology/Non-ProfitOrganisation, http://dbpedia.org/ontology/FormulaOneRacing, http://dbpedia.org/ontology/Mayor, http://dbpedia.org/ontology/RadioControlledRacingLeague, http://dbpedia.org/ontology/TelevisionStation, http://dbpedia.org/ontology/Writer, http://dbpedia.org/ontology/FictionalCharacter, http://dbpedia.org/ontology/PlayboyPlaymate, http://dbpedia.org/ontology/Lieutenant, http://schema.org/Person, http://dbpedia.org/ontology/BoxingLeague, http://dbpedia.org/ontology/GaelicGamesPlayer, http://dbpedia.org/ontology/AdultActor, http://dbpedia.org/ontology/IceHockeyLeague, http://dbpedia.org/ontology/BroadcastNetwork, http://dbpedia.org/ontology/Artist, http://dbpedia.org/ontology/Company, http://dbpedia.org/ontology/VicePresident, http://dbpedia.org/ontology/Agent, http://dbpedia.org/ontology/SoccerLeague, http://dbpedia.org/ontology/CurlingLeague, http://dbpedia.org/ontology/Philosopher, http://dbpedia.org/ontology/Boxer, http://dbpedia.org/ontology/PaintballLeague, http://dbpedia.org/ontology/Celebrity, http://schema.org/Library, http://dbpedia.org/ontology/CanadianFootballTeam, http://dbpedia.org/ontology/BaseballLeague, http://dbpedia.org/ontology/IceHockeyPlayer, http://dbpedia.org/ontology/AmericanFootballTeam, http://dbpedia.org/ontology/PolishKing, http://dbpedia.org/ontology/Monarch, http://dbpedia.org/ontology/Astronaut, http://dbpedia.org/ontology/VolleyballPlayer, http://dbpedia.org/ontology/PoloLeague, http://dbpedia.org/ontology/AutoRacingLeague, http://dbpedia.org/ontology/HockeyTeam, http://dbpedia.org/ontology/Actor, http://dbpedia.org/ontology/ComicsCharacter, http://schema.org/School, http://dbpedia.org/ontology/HandballLeague, http://dbpedia.org/ontology/NascarDriver, http://schema.org/RadioStation, http://dbpedia.org/ontology/BullFighter, http://dbpedia.org/ontology/Model, http://dbpedia.org/ontology/Airline, http://dbpedia.org/ontology/VideogamesLeague, http://dbpedia.org/ontology/BowlingLeague, http://dbpedia.org/ontology/Saint, http://dbpedia.org/ontology/BaseballPlayer, http://dbpedia.org/ontology/FieldHockeyLeague, http://dbpedia.org/ontology/CollegeCoach, http://dbpedia.org/ontology/RugbyPlayer, http://schema.org/TelevisionStation, http://dbpedia.org/ontology/Person, http://dbpedia.org/ontology/VolleyballLeague, http://dbpedia.org/ontology/TennisPlayer, http://dbpedia.org/ontology/FigureSkater, http://dbpedia.org/ontology/GolfPlayer, http://dbpedia.org/ontology/College, http://dbpedia.org/ontology/InlineHockeyLeague]entity: http://dbpedia.org/resource/String_theoryentity class type: [http://dbpedia.org/ontology/VideoGame, http://dbpedia.org/ontology/Software]triple: http://dbpedia.org/resource/Suffragette http://dbpedia.org/ontology/elevation ?l0triple: http://dbpedia.org/resource/Suffragette ?p http://dbpedia.org/resource/String_theory PropertySet..... [, , , , , , , , , , , , , , , , , , , , , ]############# printing real Final template ################## entity: http://dbpedia.org/resource/Suffragetteentity class type: [http://schema.org/CollegeOrUniversity, http://dbpedia.org/ontology/University, http://dbpedia.org/ontology/CyclingLeague, http://dbpedia.org/ontology/TennisLeague, http://dbpedia.org/ontology/BritishRoyalty, http://dbpedia.org/ontology/Broadcaster, http://dbpedia.org/ontology/NationalSoccerClub, http://dbpedia.org/ontology/MilitaryUnit, http://dbpedia.org/ontology/ComicsCreator, http://dbpedia.org/ontology/Legislature, http://dbpedia.org/ontology/ChessPlayer, http://dbpedia.org/ontology/School, http://dbpedia.org/ontology/MusicalArtist, http://dbpedia.org/ontology/Comedian, http://dbpedia.org/ontology/Referee, http://dbpedia.org/ontology/BasketballTeam, http://dbpedia.org/ontology/ChristianBishop, http://dbpedia.org/ontology/Cricketer, http://dbpedia.org/ontology/OfficeHolder, http://dbpedia.org/ontology/RugbyLeague, http://dbpedia.org/ontology/LawFirm, http://dbpedia.org/ontology/Governor, http://dbpedia.org/ontology/BasketballLeague, http://dbpedia.org/ontology/AmericanFootballLeague, http://dbpedia.org/ontology/RugbyClub, http://dbpedia.org/ontology/SpeedwayLeague, http://dbpedia.org/ontology/Athlete, http://dbpedia.org/ontology/SportsTeamMember, http://dbpedia.org/ontology/SportsTeamSeason, http://dbpedia.org/ontology/AustralianRulesFootballPlayer, http://dbpedia.org/ontology/CricketLeague, http://dbpedia.org/ontology/SoccerPlayer, http://dbpedia.org/ontology/EducationalInstitution, http://dbpedia.org/ontology/Architect, http://dbpedia.org/ontology/SoccerClub, http://dbpedia.org/ontology/Cyclist, http://dbpedia.org/ontology/Journalist, http://dbpedia.org/ontology/Cleric, http://schema.org/EducationalOrganization, http://dbpedia.org/ontology/Chancellor, http://dbpedia.org/ontology/SoccerLeagueSeason, http://dbpedia.org/ontology/LacrosseLeague, http://dbpedia.org/ontology/CanadianFootballPlayer, http://xmlns.com/foaf/0.1/Person, http://dbpedia.org/ontology/SoccerManager, http://dbpedia.org/ontology/Judge, http://dbpedia.org/ontology/TradeUnion, http://dbpedia.org/ontology/BaseballTeam, http://dbpedia.org/ontology/Library, http://dbpedia.org/ontology/Cardinal, http://dbpedia.org/ontology/President, http://dbpedia.org/ontology/MartialArtist, http://dbpedia.org/ontology/Swimmer, http://dbpedia.org/ontology/AustralianFootballLeague, http://dbpedia.org/ontology/SnookerPlayer, http://dbpedia.org/ontology/TeamMember, http://dbpedia.org/ontology/MilitaryPerson, http://dbpedia.org/ontology/PoliticalParty, http://dbpedia.org/ontology/BadmintonPlayer, http://dbpedia.org/ontology/MemberOfParliament, http://dbpedia.org/ontology/MotorcycleRacingLeague, http://dbpedia.org/ontology/PersonFunction, http://dbpedia.org/ontology/Criminal, http://dbpedia.org/ontology/Ambassador, http://dbpedia.org/ontology/RecordLabel, http://dbpedia.org/ontology/Politician, http://dbpedia.org/ontology/Congressman, http://dbpedia.org/ontology/Deputy, http://dbpedia.org/ontology/VoiceActor, http://schema.org/SportsTeam, http://dbpedia.org/ontology/SportsTeam, http://dbpedia.org/ontology/Wrestler, http://dbpedia.org/ontology/PokerPlayer, http://dbpedia.org/ontology/ChristianPatriarch, http://schema.org/Organization, http://dbpedia.org/ontology/Scientist, http://dbpedia.org/ontology/SoftballLeague, http://dbpedia.org/ontology/Senator, http://dbpedia.org/ontology/SnookerChamp, http://dbpedia.org/ontology/OrganisationMember, http://dbpedia.org/ontology/Organisation, http://dbpedia.org/ontology/Pope, http://dbpedia.org/ontology/MixedMartialArtsLeague, http://dbpedia.org/ontology/GridironFootballPlayer, http://dbpedia.org/ontology/GolfLeague, http://dbpedia.org/ontology/SoccerClubSeason, http://dbpedia.org/ontology/SambaSchool, http://schema.org/GovernmentOrganization, http://dbpedia.org/ontology/GovernmentAgency, http://dbpedia.org/ontology/Band, http://dbpedia.org/ontology/VicePrimeMinister, http://dbpedia.org/ontology/SportsLeague, http://dbpedia.org/ontology/Royalty, http://dbpedia.org/ontology/Priest, http://dbpedia.org/ontology/FormulaOneRacer, http://dbpedia.org/ontology/BasketballPlayer, http://dbpedia.org/ontology/AmericanFootballPlayer, http://dbpedia.org/ontology/RadioStation, http://dbpedia.org/ontology/CanadianFootballLeague, http://dbpedia.org/ontology/PrimeMinister, http://dbpedia.org/ontology/GeopoliticalOrganisation, http://dbpedia.org/ontology/NationalCollegiateAthleticAssociationAthlete, http://dbpedia.org/ontology/SpeedwayTeam, http://dbpedia.org/ontology/Non-ProfitOrganisation, http://dbpedia.org/ontology/FormulaOneRacing, http://dbpedia.org/ontology/Mayor, http://dbpedia.org/ontology/RadioControlledRacingLeague, http://dbpedia.org/ontology/TelevisionStation, http://dbpedia.org/ontology/Writer, http://dbpedia.org/ontology/FictionalCharacter, http://dbpedia.org/ontology/PlayboyPlaymate, http://dbpedia.org/ontology/Lieutenant, http://schema.org/Person, http://dbpedia.org/ontology/BoxingLeague, http://dbpedia.org/ontology/GaelicGamesPlayer, http://dbpedia.org/ontology/AdultActor, http://dbpedia.org/ontology/IceHockeyLeague, http://dbpedia.org/ontology/BroadcastNetwork, http://dbpedia.org/ontology/Artist, http://dbpedia.org/ontology/Company, http://dbpedia.org/ontology/VicePresident, http://dbpedia.org/ontology/Agent, http://dbpedia.org/ontology/SoccerLeague, http://dbpedia.org/ontology/CurlingLeague, http://dbpedia.org/ontology/Philosopher, http://dbpedia.org/ontology/Boxer, http://dbpedia.org/ontology/PaintballLeague, http://dbpedia.org/ontology/Celebrity, http://schema.org/Library, http://dbpedia.org/ontology/CanadianFootballTeam, http://dbpedia.org/ontology/BaseballLeague, http://dbpedia.org/ontology/IceHockeyPlayer, http://dbpedia.org/ontology/AmericanFootballTeam, http://dbpedia.org/ontology/PolishKing, http://dbpedia.org/ontology/Monarch, http://dbpedia.org/ontology/Astronaut, http://dbpedia.org/ontology/VolleyballPlayer, http://dbpedia.org/ontology/PoloLeague, http://dbpedia.org/ontology/AutoRacingLeague, http://dbpedia.org/ontology/HockeyTeam, http://dbpedia.org/ontology/Actor, http://dbpedia.org/ontology/ComicsCharacter, http://schema.org/School, http://dbpedia.org/ontology/HandballLeague, http://dbpedia.org/ontology/NascarDriver, http://schema.org/RadioStation, http://dbpedia.org/ontology/BullFighter, http://dbpedia.org/ontology/Model, http://dbpedia.org/ontology/Airline, http://dbpedia.org/ontology/VideogamesLeague, http://dbpedia.org/ontology/BowlingLeague, http://dbpedia.org/ontology/Saint, http://dbpedia.org/ontology/BaseballPlayer, http://dbpedia.org/ontology/FieldHockeyLeague, http://dbpedia.org/ontology/CollegeCoach, http://dbpedia.org/ontology/RugbyPlayer, http://schema.org/TelevisionStation, http://dbpedia.org/ontology/Person, http://dbpedia.org/ontology/VolleyballLeague, http://dbpedia.org/ontology/TennisPlayer, http://dbpedia.org/ontology/FigureSkater, http://dbpedia.org/ontology/GolfPlayer, http://dbpedia.org/ontology/College, http://dbpedia.org/ontology/InlineHockeyLeague]entity: http://dbpedia.org/resource/String_theoryentity class type: [http://dbpedia.org/ontology/VideoGame, http://dbpedia.org/ontology/Software]triple: http://dbpedia.org/resource/Suffragette http://dbpedia.org/ontology/elevation ?l0triple: http://dbpedia.org/resource/Suffragette ?p http://dbpedia.org/resource/String_theory PropertySet..... [, , , , , , , , , , , , , , , , , , , , , ] Connecting step finished size of FinalTemplateList = 1 size of TemporaryTemplateList = 0template: select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }template: Suffragette elevation ?l0 . Suffragette [ --- product --- pictureFormat --- programmeFormat --- campus --- profession --- citizenship --- deathCause --- honours --- nationalAffiliation --- movement --- board --- service --- notableIdea --- significantProject --- significantDesign --- knownFor --- portrayer --- lastAppearance --- field --- industry --- philosophicalSchool --- education] /String_theory . sparql printing list.....select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } } list of final templates: [select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }] -2023-10-27 13:55:38.447  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }] -2023-10-27 13:55:38.448  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ac943c4 -2023-10-27 13:55:38.448 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:55:38.451  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:38.452  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:38.452 DEBUG 9653 --- [nio-8098-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { ?l0. { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } UNION { . } }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:55:38.465 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : processing took: 145959 ms -2023-10-27 13:56:04.831  INFO 9653 --- [nio-8098-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:04.831  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:04.832  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:04.832  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@f1d66f7 -2023-10-27 13:56:04.840  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20121cf8 -2023-10-27 13:56:04.840 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:56:04.841  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:04.841  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:56:04.849 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:04.849  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 found in urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee at http://localhost:8080/sparql -2023-10-27 13:56:04.852 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:04.852  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:04.853  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aa11bd2 -2023-10-27 13:56:04.853 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:56:04.859  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:56:04.862  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:56:04.893  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/President start:78 end:87 -2023-10-27 13:56:04.894  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/President start:15 end:25 -2023-10-27 13:56:04.905 DEBUG 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:04.905  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@70d781cf -2023-10-27 13:56:04.906 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:56:04.910  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:56:04.913  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:56:04.928  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/property/followed -2023-10-27 13:56:04.929  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@14196bfc -2023-10-27 13:56:04.930 DEBUG 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:56:04.932  INFO 9653 --- [nio-8098-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:56:04.932  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:56:04.945  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/President, http://dbpedia.org/resource/President, http://dbpedia.org/property/followed: 114 -2023-10-27 13:56:04.946  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 -2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar2559341001971584920.cxl -2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar2559341001971584920.cxl -2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar2559341001971584920.cxl -2023-10-27 13:56:04.982  INFO 9653 --- [nio-8098-exec-4] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/President, http://dbpedia.org/resource/President, http://dbpedia.org/property/followed on /tmp/sina-0.0.1.jar2559341001971584920.cxl -2023-10-27 13:57:30.792  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:30.793  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:30.793  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"},"inGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0","outGraph":"urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0"} -2023-10-27 13:57:30.793  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@6913c8bf -2023-10-27 13:57:30.893  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50197fdd -2023-10-27 13:57:30.894 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:30.898  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:30.898  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:30.908 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 -2023-10-27 13:57:30.908  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 found in urn:graph:622817a4-c885-4b5b-9312-be8da002f1d0 at http://localhost:8080/sparql -2023-10-27 13:57:30.913 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many different colors can water take? -2023-10-27 13:57:30.913  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many different colors can water take? -2023-10-27 13:57:30.914  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1d26cacf -2023-10-27 13:57:30.914 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:57:30.916  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:57:30.917  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:57:30.957  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Canned_water start:26 end:35 -2023-10-27 13:57:30.967 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e5eacb42-e581-4f16-abae-707c3688e999 -2023-10-27 13:57:30.968  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@44d2ffba -2023-10-27 13:57:30.968 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:57:30.970  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:57:30.971  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:57:30.989  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/flag -2023-10-27 13:57:30.989  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/areaWater -2023-10-27 13:57:30.990  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@33f381af -2023-10-27 13:57:30.990 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:57:30.993  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:57:30.993  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:57:31.009  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Canned_water, http://dbpedia.org/ontology/flag, http://dbpedia.org/ontology/areaWater: 113 -2023-10-27 13:57:31.009  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 -2023-10-27 13:57:31.057  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar404703144728577206.cxl -2023-10-27 13:57:31.057  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar404703144728577206.cxl -2023-10-27 13:57:31.058  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar404703144728577206.cxl -2023-10-27 13:57:31.058  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Canned_water, http://dbpedia.org/ontology/flag, http://dbpedia.org/ontology/areaWater on /tmp/sina-0.0.1.jar404703144728577206.cxl -2023-10-27 13:57:35.607  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar404703144728577206.cxl -2023-10-27 13:57:35.607 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/resource/Canned_watertype 10 uri of path http://dbpedia.org/ontology/flagtype 14 uri of path http://dbpedia.org/ontology/areaWatertype 14log4j:WARN No appenders could be found for logger (org.apache.jena.riot.system.stream.JenaIOEnvironment).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.print iri....http://dbpedia.org/resource/Canned_waterprint iri....http://dbpedia.org/ontology/flagprint iri....http://dbpedia.org/ontology/areaWater Connecting step finished size of FinalTemplateList = 0 size of TemporaryTemplateList = 0 list of final templates: [] -2023-10-27 13:57:35.608  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [] -2023-10-27 13:57:35.608  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@35430e7 -2023-10-27 13:57:35.608 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 13:57:35.610  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:35.611  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:35.612 DEBUG 9653 --- [nio-8098-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 13:57:35.620 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : processing took: 4827 ms -2023-10-27 13:58:02.307  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:02.307  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:02.307  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:02.308  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@1c81a300 -2023-10-27 13:58:02.337  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f0b01e8 -2023-10-27 13:58:02.337 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:02.338  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:02.338  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:02.344 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 -2023-10-27 13:58:02.344  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 found in urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 at http://localhost:8080/sparql -2023-10-27 13:58:02.347 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:58:02.347  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:58:02.347  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72384df5 -2023-10-27 13:58:02.348 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:58:02.349  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:58:02.350  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:58:02.390 ERROR 9653 --- [nio-8098-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause - -java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) - at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:59:04.858  INFO 9653 --- [nio-8098-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.859  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.859  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"},"inGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49","outGraph":"urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49"} -2023-10-27 13:59:04.859  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@446ab625 -2023-10-27 13:59:04.885  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ec12a89 -2023-10-27 13:59:04.885 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:04.887  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:04.887  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:04.895 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f -2023-10-27 13:59:04.895  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b204a306-bebe-45d5-966a-1eb915dac91f found in urn:graph:f574c457-590d-48da-a1be-5cd3f0c72a49 at http://localhost:8080/sparql -2023-10-27 13:59:04.897 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation in which language does the united stated have the shortest short name? -2023-10-27 13:59:04.897  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: in which language does the united stated have the shortest short name? -2023-10-27 13:59:04.898  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@e2fe346 -2023-10-27 13:59:04.898 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:59:04.900  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:59:04.900  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:59:04.925 ERROR 9653 --- [nio-8098-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause - -java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) - at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:59:34.151  INFO 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:34.152  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:34.152  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"},"inGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63","outGraph":"urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63"} -2023-10-27 13:59:34.152  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@549427a0 -2023-10-27 13:59:34.161  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f53a72f -2023-10-27 13:59:34.161 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:34.163  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:34.163  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:34.169 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:34.169  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 found in urn:graph:28cbfbf1-c9d0-457f-8f15-5f90f54efc63 at http://localhost:8080/sparql -2023-10-27 13:59:34.171 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Was the first female chancellor in Germany ever married? -2023-10-27 13:59:34.171  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Was the first female chancellor in Germany ever married? -2023-10-27 13:59:34.171  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f02d7de -2023-10-27 13:59:34.171 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:59:34.172  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:59:34.173  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:59:34.196  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Weibliches_Geschlecht start:14 end:20 -2023-10-27 13:59:34.196  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Germany start:35 end:42 -2023-10-27 13:59:34.201 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_66be133a-8e28-4fe7-979f-bbda94579653 -2023-10-27 13:59:34.202  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7f557c99 -2023-10-27 13:59:34.202 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:59:34.203  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:59:34.203  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:59:34.211  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/president -2023-10-27 13:59:34.211  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/spouse -2023-10-27 13:59:34.211  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a09fdf4 -2023-10-27 13:59:34.211 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 13:59:34.213  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:59:34.213  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 13:59:34.222  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Weibliches_Geschlecht, http://dbpedia.org/resource/Germany, http://dbpedia.org/ontology/president, http://dbpedia.org/ontology/spouse: 161 -2023-10-27 13:59:34.223  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 -2023-10-27 13:59:34.223  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/Weibliches_Geschlecht, http://dbpedia.org/resource/Germany, http://dbpedia.org/ontology/president, http://dbpedia.org/ontology/spouse -2023-10-27 13:59:34.223 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : processing took: 71 ms -2023-10-27 14:00:06.211  INFO 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:06.213  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:06.214  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:06.214  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@289fd440 -2023-10-27 14:00:06.224  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26583f23 -2023-10-27 14:00:06.225 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:06.225  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:06.226  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:06.234 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c -2023-10-27 14:00:06.234  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c found in urn:graph:f48704a2-e326-4237-b784-257818c7ed9b at http://localhost:8080/sparql -2023-10-27 14:00:06.236 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second game developed by Piranha Bytes? -2023-10-27 14:00:06.236  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What is the second game developed by Piranha Bytes? -2023-10-27 14:00:06.236  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2267bf30 -2023-10-27 14:00:06.236 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:00:06.242  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:00:06.242  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:00:06.273 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c -2023-10-27 14:00:06.274  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67653518 -2023-10-27 14:00:06.274 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:00:06.276  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:00:06.276  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:00:06.286  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/developer -2023-10-27 14:00:06.287  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@310ed060 -2023-10-27 14:00:06.287 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:00:06.288  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:00:06.288  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:00:06.297  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/developer: 37 -2023-10-27 14:00:06.298  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 -2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar13729802811987816325.cxl -2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar13729802811987816325.cxl -2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar13729802811987816325.cxl -2023-10-27 14:00:06.331  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/developer on /tmp/sina-0.0.1.jar13729802811987816325.cxl -2023-10-27 14:00:06.609  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar13729802811987816325.cxl -2023-10-27 14:00:06.609 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/developertype 14 single entity template: select * where { http://dbpedia.org/ontology/developer ?p ?v0. }template: http://dbpedia.org/ontology/developer ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/developer ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/developer ?p ?v0. }] -2023-10-27 14:00:06.609  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/developer ?p ?v0. }] -2023-10-27 14:00:06.611  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49c9eb83 -2023-10-27 14:00:06.611 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:00:06.613  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/developer ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:06.614  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/developer ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:06.614 DEBUG 9653 --- [nio-8098-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/developer ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:00:06.623 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : processing took: 410 ms -2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"},"inGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6","outGraph":"urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6"} -2023-10-27 14:00:29.818  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@50e78c6e -2023-10-27 14:00:29.827  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@53274b42 -2023-10-27 14:00:29.827 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:29.828  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:29.828  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:29.835 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f -2023-10-27 14:00:29.835  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18b7dc88-03aa-4145-8227-91ed42e4aa1f found in urn:graph:19e42ebb-96cf-402d-9aca-328c567544c6 at http://localhost:8080/sparql -2023-10-27 14:00:29.836 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the second letter in the Greek alphabet? -2023-10-27 14:00:29.836  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What is the second letter in the Greek alphabet? -2023-10-27 14:00:29.837  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@31d90fc5 -2023-10-27 14:00:29.837 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:00:29.838  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:00:29.838  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:00:29.860 ERROR 9653 --- [io-8098-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause - -java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) - at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:01:46.845  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:46.846  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:46.846  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"},"inGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62","outGraph":"urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62"} -2023-10-27 14:01:46.846  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@6e330682 -2023-10-27 14:01:46.856  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@19404eed -2023-10-27 14:01:46.856 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:01:46.857  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:46.857  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:01:46.864 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:46.864  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f found in urn:graph:8eca2842-7d19-43fe-8092-adccfee78b62 at http://localhost:8080/sparql -2023-10-27 14:01:46.867 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:46.867  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many times did the Italian national soccer team win the Fifa World Cup? -2023-10-27 14:01:46.867  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2927ffd5 -2023-10-27 14:01:46.867 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:01:46.868  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:01:46.868  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:01:46.890  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/FIFA_World_Cup start:60 end:74 -2023-10-27 14:01:46.894 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ec86fa85-f926-428e-9f21-020813de8b6f -2023-10-27 14:01:46.895  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fa45ca4 -2023-10-27 14:01:46.895 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:01:46.896  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:01:46.897  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/time -2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/property/score -2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/country -2023-10-27 14:01:46.906  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79555cc4 -2023-10-27 14:01:46.906 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:01:46.907  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:01:46.907  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:01:46.914  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/FIFA_World_Cup, http://dbpedia.org/ontology/time, http://dbpedia.org/property/score, http://dbpedia.org/ontology/country: 148 -2023-10-27 14:01:46.915  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 -2023-10-27 14:01:46.915  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/FIFA_World_Cup, http://dbpedia.org/ontology/time, http://dbpedia.org/property/score, http://dbpedia.org/ontology/country -2023-10-27 14:01:46.915 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 70 ms -2023-10-27 14:02:35.571  INFO 9653 --- [io-8098-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:35.572  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:35.572  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:35.572  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@60a0930a -2023-10-27 14:02:35.579  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@9b4a907 -2023-10-27 14:02:35.580 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:35.581  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:35.582  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:35.588 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:35.588  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 found in urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b at http://localhost:8080/sparql -2023-10-27 14:02:35.589 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who founded the Worpswede artist colony ? -2023-10-27 14:02:35.589  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Who founded the Worpswede artist colony ? -2023-10-27 14:02:35.590  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@706a38d3 -2023-10-27 14:02:35.590 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:02:35.591  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:02:35.591  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:02:35.613  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Künstlerkolonie_Worpswede start:16 end:39 -2023-10-27 14:02:35.619 DEBUG 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:35.620  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3b39ccbd -2023-10-27 14:02:35.620 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:02:35.621  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:02:35.621  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:02:35.629  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/foundingPerson -2023-10-27 14:02:35.629  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fe53013 -2023-10-27 14:02:35.629 DEBUG 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:02:35.631  INFO 9653 --- [io-8098-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:02:35.632  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:02:35.639  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Künstlerkolonie_Worpswede, http://dbpedia.org/ontology/foundingPerson: 97 -2023-10-27 14:02:35.639  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 -2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar7027249137118100867.cxl -2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar7027249137118100867.cxl -2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar7027249137118100867.cxl -2023-10-27 14:02:35.669  INFO 9653 --- [io-8098-exec-10] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Künstlerkolonie_Worpswede, http://dbpedia.org/ontology/foundingPerson on /tmp/sina-0.0.1.jar7027249137118100867.cxl -2023-10-27 14:03:43.260  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:43.260  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:43.260  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"},"inGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad","outGraph":"urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad"} -2023-10-27 14:03:43.261  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@62794225 -2023-10-27 14:03:43.270  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@74b6c0e8 -2023-10-27 14:03:43.271 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:43.271  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:43.271  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:43.277 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 -2023-10-27 14:03:43.277  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 found in urn:graph:aa8b15d2-b3d3-4ab0-8517-54febb2ca5ad at http://localhost:8080/sparql -2023-10-27 14:03:43.279 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What percentage of Andorra is covered with water? -2023-10-27 14:03:43.279  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What percentage of Andorra is covered with water? -2023-10-27 14:03:43.279  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@595af3a6 -2023-10-27 14:03:43.279 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:03:43.280  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:03:43.280  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:03:43.312 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ce02a0f2-a544-4c05-a634-32f5fd3977e5 -2023-10-27 14:03:43.312  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@a3a2735 -2023-10-27 14:03:43.312 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:03:43.313  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:03:43.313  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:03:43.322  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/percentageOfAreaWater -2023-10-27 14:03:43.325  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/property/cover -2023-10-27 14:03:43.325  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/percentageOfAreaWater -2023-10-27 14:03:43.325  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@22fa243d -2023-10-27 14:03:43.326 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:03:43.327  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:03:43.327  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:03:43.336  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/percentageOfAreaWater, http://dbpedia.org/property/cover, http://dbpedia.org/ontology/percentageOfAreaWater: 135 -2023-10-27 14:03:43.336  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 -2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar7567126349652477492.cxl -2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar7567126349652477492.cxl -2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar7567126349652477492.cxl -2023-10-27 14:03:43.356  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/percentageOfAreaWater, http://dbpedia.org/property/cover, http://dbpedia.org/ontology/percentageOfAreaWater on /tmp/sina-0.0.1.jar7567126349652477492.cxl -2023-10-27 14:03:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar7567126349652477492.cxl -2023-10-27 14:03:46.906 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/percentageOfAreaWatertype 14 uri of path http://dbpedia.org/property/covertype 14 uri of path http://dbpedia.org/ontology/percentageOfAreaWatertype 14print iri....http://dbpedia.org/ontology/percentageOfAreaWaterprint iri....http://dbpedia.org/property/coverprint iri....http://dbpedia.org/ontology/percentageOfAreaWaterlog4j:WARN No appenders could be found for logger (org.apache.jena.riot.system.stream.JenaIOEnvironment).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. Connecting step finished size of FinalTemplateList = 0 size of TemporaryTemplateList = 0 list of final templates: [] -2023-10-27 14:03:46.906  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [] -2023-10-27 14:03:46.908  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6e40097e -2023-10-27 14:03:46.908 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:03:46.910  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:46.910  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:46.910 DEBUG 9653 --- [nio-8098-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:03:46.919 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 3659 ms -2023-10-27 14:04:13.472  INFO 9653 --- [nio-8098-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:13.473  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:13.473  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"},"inGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca","outGraph":"urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca"} -2023-10-27 14:04:13.473  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@3d02b9b2 -2023-10-27 14:04:13.498  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5da0b4f5 -2023-10-27 14:04:13.500 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:04:13.503  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:13.504  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:04:13.511 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:13.511  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 found in urn:graph:87c2a55c-62f0-4305-838c-18bc4acd90ca at http://localhost:8080/sparql -2023-10-27 14:04:13.514 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Rumi born? -2023-10-27 14:04:13.514  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: When was Rumi born? -2023-10-27 14:04:13.514  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@48618338 -2023-10-27 14:04:13.514 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:04:13.515  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:04:13.516  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:04:13.541  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Time start:0 end:4 -2023-10-27 14:04:13.541  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Rumi start:9 end:13 -2023-10-27 14:04:13.541  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Childbirth start:14 end:18 -2023-10-27 14:04:13.546 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_e88d5412-e24f-4995-aa4a-b267bdee9e38 -2023-10-27 14:04:13.547  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1612de14 -2023-10-27 14:04:13.547 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:04:13.549  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:04:13.549  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:04:13.557  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/birthPlace -2023-10-27 14:04:13.557  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e752a4d -2023-10-27 14:04:13.557 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:04:13.559  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:04:13.559  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:04:13.567  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Time, http://dbpedia.org/resource/Rumi, http://dbpedia.org/resource/Childbirth, http://dbpedia.org/ontology/birthPlace: 146 -2023-10-27 14:04:13.567  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 -2023-10-27 14:04:13.567  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/Time, http://dbpedia.org/resource/Rumi, http://dbpedia.org/resource/Childbirth, http://dbpedia.org/ontology/birthPlace -2023-10-27 14:04:13.567 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.component.QanaryServiceController  : processing took: 94 ms -2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:47.877  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@28c15945 -2023-10-27 14:06:47.885  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4194c7a4 -2023-10-27 14:06:47.885 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:47.886  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:47.886  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:47.892 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:47.892  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 found in urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f at http://localhost:8080/sparql -2023-10-27 14:06:47.895 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:47.895  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:47.895  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15f1dabb -2023-10-27 14:06:47.895 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:06:47.896  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:06:47.896  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:06:47.917  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Dinosaur start:26 end:35 -2023-10-27 14:06:47.921 DEBUG 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:47.921  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50d263ac -2023-10-27 14:06:47.921 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:06:47.923  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:06:47.923  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:06:47.930  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/creator -2023-10-27 14:06:47.930  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@72fb0382 -2023-10-27 14:06:47.931 DEBUG 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:06:47.932  INFO 9653 --- [nio-8098-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:06:47.932  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:06:47.938  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Dinosaur, http://dbpedia.org/ontology/creator: 73 -2023-10-27 14:06:47.938  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 -2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar194995180699457799.cxl -2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar194995180699457799.cxl -2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar194995180699457799.cxl -2023-10-27 14:06:47.972  INFO 9653 --- [nio-8098-exec-8] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Dinosaur, http://dbpedia.org/ontology/creator on /tmp/sina-0.0.1.jar194995180699457799.cxl -2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"},"inGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8","outGraph":"urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8"} -2023-10-27 14:07:52.269  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@66aa366a -2023-10-27 14:07:52.278  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@229611c4 -2023-10-27 14:07:52.278 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:52.279  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:52.279  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:52.284 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:52.284  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 found in urn:graph:1aa1eaef-af11-4fec-a53e-812b32330dc8 at http://localhost:8080/sparql -2023-10-27 14:07:52.286 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:52.286  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many of Reinhold Messner's brothers still live? -2023-10-27 14:07:52.286  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@227499fc -2023-10-27 14:07:52.286 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:07:52.287  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:07:52.287  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:07:52.308  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Райнхолд_Меснер start:12 end:28 -2023-10-27 14:07:52.308  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Братя_и_сестри start:31 end:39 -2023-10-27 14:07:52.312 DEBUG 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a239763-fc3c-4cf8-bc37-cdec18cd19e6 -2023-10-27 14:07:52.312  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@35c4e8bd -2023-10-27 14:07:52.312 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:07:52.313  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:07:52.314  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:07:52.321  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/residence -2023-10-27 14:07:52.321  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@26a9109 -2023-10-27 14:07:52.321 DEBUG 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:07:52.322  INFO 9653 --- [nio-8098-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:07:52.322  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:07:52.329  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/Райнхолд_Меснер, http://dbpedia.org/resource/Братя_и_сестри, http://dbpedia.org/ontology/residence: 126 -2023-10-27 14:07:52.329  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 3 -2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar9832152624203163840.cxl -2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar9832152624203163840.cxl -2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar9832152624203163840.cxl -2023-10-27 14:07:52.347  INFO 9653 --- [nio-8098-exec-9] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/Райнхолд_Меснер, http://dbpedia.org/resource/Братя_и_сестри, http://dbpedia.org/ontology/residence on /tmp/sina-0.0.1.jar9832152624203163840.cxl -2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"},"inGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86","outGraph":"urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86"} -2023-10-27 14:08:05.511  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@50282018 -2023-10-27 14:08:05.519  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ff93d4b -2023-10-27 14:08:05.520 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:05.520  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:05.521  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:05.525 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 -2023-10-27 14:08:05.525  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_18c18c8f-4efd-4060-8681-c5b993cb44f8 found in urn:graph:d550385e-329e-48c8-a9c6-f8c554392a86 at http://localhost:8080/sparql -2023-10-27 14:08:05.526 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation is there female main character in hunter x hunter? -2023-10-27 14:08:05.527  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: is there female main character in hunter x hunter? -2023-10-27 14:08:05.527  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@281d2e10 -2023-10-27 14:08:05.527 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:08:05.528  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:08:05.528  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:08:05.563 ERROR 9653 --- [nio-8098-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause - -java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) - at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:29.422  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@3598880c -2023-10-27 14:08:29.431  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fcae87 -2023-10-27 14:08:29.432 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:29.432  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.432  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:29.440 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:29.440  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc found in urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 at http://localhost:8080/sparql -2023-10-27 14:08:29.441 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many countries have never been members of the UN? -2023-10-27 14:08:29.442  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many countries have never been members of the UN? -2023-10-27 14:08:29.442  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@71558e7c -2023-10-27 14:08:29.442 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:08:29.443  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:08:29.443  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:08:29.470  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/How_(TV_series) start:0 end:3 -2023-10-27 14:08:29.471  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Member_of_parliament start:35 end:42 -2023-10-27 14:08:29.471  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/United_Nations start:50 end:52 -2023-10-27 14:08:29.477 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:29.478  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@336d13e1 -2023-10-27 14:08:29.478 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:08:29.479  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:08:29.480  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:08:29.492  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/class -2023-10-27 14:08:29.492  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@17de4b86 -2023-10-27 14:08:29.492 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:08:29.493  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:08:29.493  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:08:29.505  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/How_(TV_series), http://dbpedia.org/resource/Member_of_parliament, http://dbpedia.org/resource/United_Nations, http://dbpedia.org/ontology/class: 172 -2023-10-27 14:08:29.505  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 4 -2023-10-27 14:08:29.505  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Argument is Null http://dbpedia.org/resource/How_(TV_series), http://dbpedia.org/resource/Member_of_parliament, http://dbpedia.org/resource/United_Nations, http://dbpedia.org/ontology/class -2023-10-27 14:08:29.505 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 83 ms -2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"},"inGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e","outGraph":"urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e"} -2023-10-27 14:09:01.133  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@1b553959 -2023-10-27 14:09:01.162  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2d705c1d -2023-10-27 14:09:01.162 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:01.163  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:01.164  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:01.177 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf -2023-10-27 14:09:01.177  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_df9a4c23-1c84-4dea-9437-904ee1cccfdf found in urn:graph:7b34e887-6dcd-407c-ac37-3a69753eae3e at http://localhost:8080/sparql -2023-10-27 14:09:01.179 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What language do they speak in Poland ? -2023-10-27 14:09:01.179  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: What language do they speak in Poland ? -2023-10-27 14:09:01.180  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6cdc8a0d -2023-10-27 14:09:01.180 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:09:01.183  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:01.184  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:01.227 ERROR 9653 --- [nio-8098-exec-2] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62)] with root cause - -java.lang.ClassCastException: class org.apache.jena.rdf.model.impl.LiteralImpl cannot be cast to class org.apache.jena.rdf.model.Resource (org.apache.jena.rdf.model.impl.LiteralImpl and org.apache.jena.rdf.model.Resource are in unnamed module of loader org.springframework.boot.loader.LaunchedURLClassLoader @5d099f62) - at org.apache.jena.sparql.core.QuerySolutionBase.getResource(QuerySolutionBase.java:38) ~[jena-arq-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntities(SINA.java:124) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:175) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"},"inGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e","outGraph":"urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e"} -2023-10-27 14:09:11.212  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@60780ff -2023-10-27 14:09:11.222  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@8c06e4f -2023-10-27 14:09:11.222 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:11.223  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:11.223  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:11.228 DEBUG 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 -2023-10-27 14:09:11.228  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 found in urn:graph:ed61a0af-1ed6-4197-924b-02e614a8a53e at http://localhost:8080/sparql -2023-10-27 14:09:11.229 DEBUG 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:11.229  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Is samurai champloo a piece of original work or an adaptation? -2023-10-27 14:09:11.230  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@cffeb8f -2023-10-27 14:09:11.230 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:09:11.231  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:11.231  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:11.256 DEBUG 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2ffac394-fc6c-45c6-87bd-ff2df6d05df4 -2023-10-27 14:09:11.257  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49fd6474 -2023-10-27 14:09:11.257 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:09:11.258  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:11.258  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:11.265  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@734715cc -2023-10-27 14:09:11.265 DEBUG 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:09:11.266  INFO 9653 --- [nio-8098-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:11.266  INFO 9653 --- [nio-8098-exec-3] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:11.278 ERROR 9653 --- [nio-8098-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0] with root cause - -java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0 - at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:55) ~[na:na] - at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:52) ~[na:na] - at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:213) ~[na:na] - at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:210) ~[na:na] - at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:98) ~[na:na] - at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckFromToIndex(Preconditions.java:112) ~[na:na] - at java.base/jdk.internal.util.Preconditions.checkFromToIndex(Preconditions.java:349) ~[na:na] - at java.base/java.lang.AbstractStringBuilder.substring(AbstractStringBuilder.java:1086) ~[na:na] - at java.base/java.lang.StringBuilder.substring(StringBuilder.java:91) ~[na:na] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:178) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:09:12.108  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:12.108  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:12.109  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"},"inGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b","outGraph":"urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b"} -2023-10-27 14:09:12.109  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@7233476c -2023-10-27 14:09:12.115  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2f481138 -2023-10-27 14:09:12.115 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:12.116  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:12.116  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:12.122 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd -2023-10-27 14:09:12.122  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd found in urn:graph:3d71fc30-fe2d-4048-9df7-ca8a8d8ae39b at http://localhost:8080/sparql -2023-10-27 14:09:12.124 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:09:12.124  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:09:12.124  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7461ed2b -2023-10-27 14:09:12.124 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:09:12.125  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:12.125  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:12.147 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_096bc22c-77cd-4921-b26b-56aab3597dfd -2023-10-27 14:09:12.148  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@11861a5a -2023-10-27 14:09:12.148 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:09:12.149  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:12.149  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:12.158  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@79e63721 -2023-10-27 14:09:12.158 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:09:12.159  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:12.160  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:12.167 ERROR 9653 --- [nio-8098-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0] with root cause - -java.lang.StringIndexOutOfBoundsException: Range [0, -2) out of bounds for length 0 - at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:55) ~[na:na] - at java.base/jdk.internal.util.Preconditions$1.apply(Preconditions.java:52) ~[na:na] - at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:213) ~[na:na] - at java.base/jdk.internal.util.Preconditions$4.apply(Preconditions.java:210) ~[na:na] - at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:98) ~[na:na] - at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckFromToIndex(Preconditions.java:112) ~[na:na] - at java.base/jdk.internal.util.Preconditions.checkFromToIndex(Preconditions.java:349) ~[na:na] - at java.base/java.lang.AbstractStringBuilder.substring(AbstractStringBuilder.java:1086) ~[na:na] - at java.base/java.lang.StringBuilder.substring(StringBuilder.java:91) ~[na:na] - at eu.wdaqua.qanary.component.sina.qb.SINA.fetchEntitiesRelationsAndClasses(SINA.java:178) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.sina.qb.SINA.process(SINA.java:80) ~[classes!/:3.2.4] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.19.jar!/:5.3.19] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.6.7.jar!/:2.6.7] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.19.jar!/:5.3.19] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.62.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.62.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:46.014  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@337792e9 -2023-10-27 14:09:46.027  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1cc8b02e -2023-10-27 14:09:46.028 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:46.029  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:46.029  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:46.040 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:46.040  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf found in urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 at http://localhost:8080/sparql -2023-10-27 14:09:46.042 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:09:46.042  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: After whom is the Riemannian geometry named? -2023-10-27 14:09:46.042  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@14ccdd58 -2023-10-27 14:09:46.044 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:09:46.046  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:46.046  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:46.096  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/AfterMASH start:0 end:5 -2023-10-27 14:09:46.096  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Riemannian_geometry start:18 end:37 -2023-10-27 14:09:46.106 DEBUG 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:46.106  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4223da97 -2023-10-27 14:09:46.107 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:09:46.109  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:46.109  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:46.126  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d4ce8e0 -2023-10-27 14:09:46.126 DEBUG 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:09:46.127  INFO 9653 --- [nio-8098-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:46.127  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:09:46.139  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry: 86 -2023-10-27 14:09:46.139  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 -2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar6185721290344951045.cxl -2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar6185721290344951045.cxl -2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar6185721290344951045.cxl -2023-10-27 14:09:46.189  INFO 9653 --- [nio-8098-exec-2] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry on /tmp/sina-0.0.1.jar6185721290344951045.cxl -2023-10-27 14:10:25.786  INFO 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:25.787  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:25.787  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"},"inGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96","outGraph":"urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96"} -2023-10-27 14:10:25.787  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@74aca57 -2023-10-27 14:10:25.795  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4080870e -2023-10-27 14:10:25.795 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:25.796  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.796  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:25.801 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 -2023-10-27 14:10:25.801  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 found in urn:graph:971dbeb5-739c-4756-80c9-19f439f3dd96 at http://localhost:8080/sparql -2023-10-27 14:10:25.803 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which universities have more than 200000 students? -2023-10-27 14:10:25.803  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: Which universities have more than 200000 students? -2023-10-27 14:10:25.803  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@54de2d23 -2023-10-27 14:10:25.803 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:10:25.804  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:10:25.804  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:10:25.862 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_2b6398ba-6480-4cab-ba11-bdff5bda4508 -2023-10-27 14:10:25.863  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52cd41c8 -2023-10-27 14:10:25.863 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:10:25.864  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:25.864  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:25.875  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/school -2023-10-27 14:10:25.875  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@30431b4 -2023-10-27 14:10:25.875 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:10:25.876  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:25.876  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:25.890  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/school: 34 -2023-10-27 14:10:25.890  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 -2023-10-27 14:10:25.920  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar2078375058284375993.cxl -2023-10-27 14:10:25.921  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar2078375058284375993.cxl -2023-10-27 14:10:25.921  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar2078375058284375993.cxl -2023-10-27 14:10:25.921  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/school on /tmp/sina-0.0.1.jar2078375058284375993.cxl -2023-10-27 14:10:26.069  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar2078375058284375993.cxl -2023-10-27 14:10:26.070 DEBUG 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/schooltype 14 single entity template: select * where { http://dbpedia.org/ontology/school ?p ?v0. }template: http://dbpedia.org/ontology/school ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/school ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/school ?p ?v0. }] -2023-10-27 14:10:26.070  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/school ?p ?v0. }] -2023-10-27 14:10:26.086  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@626ae4d4 -2023-10-27 14:10:26.086 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:10:26.089  INFO 9653 --- [nio-8098-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/school ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:26.089  INFO 9653 --- [nio-8098-exec-7] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/school ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:26.089 DEBUG 9653 --- [nio-8098-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/school ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:10:26.096 DEBUG 9653 --- [nio-8098-exec-7] e.w.q.component.QanaryServiceController  : processing took: 309 ms -2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:27.878  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@179283da -2023-10-27 14:10:27.885  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@50c076c3 -2023-10-27 14:10:27.885 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:27.886  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:27.886  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:27.892 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:27.892  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 found in urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 at http://localhost:8080/sparql -2023-10-27 14:10:27.893 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:10:27.893  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: After whom is the Riemannian geometry named? -2023-10-27 14:10:27.893  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@21848a4e -2023-10-27 14:10:27.894 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:10:27.894  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:10:27.895  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:10:27.916  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/AfterMASH start:0 end:5 -2023-10-27 14:10:27.916  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : uri:http://dbpedia.org/resource/Riemannian_geometry start:18 end:37 -2023-10-27 14:10:27.922 DEBUG 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:27.922  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61296542 -2023-10-27 14:10:27.922 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:10:27.923  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:27.923  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:27.931  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6226b6ee -2023-10-27 14:10:27.931 DEBUG 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:10:27.932  INFO 9653 --- [nio-8098-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:27.932  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:10:27.940  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry: 86 -2023-10-27 14:10:27.940  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 2 -2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar11839560171279478588.cxl -2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar11839560171279478588.cxl -2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar11839560171279478588.cxl -2023-10-27 14:10:27.959  INFO 9653 --- [nio-8098-exec-1] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/resource/AfterMASH, http://dbpedia.org/resource/Riemannian_geometry on /tmp/sina-0.0.1.jar11839560171279478588.cxl -2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"},"inGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8","outGraph":"urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8"} -2023-10-27 14:13:48.559  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : process: eu.wdaqua.qanary.commons.QanaryMessage@4cce0494 -2023-10-27 14:13:48.567  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4d97d13 -2023-10-27 14:13:48.567 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:13:48.568  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:48.568  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:13:48.575 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d -2023-10-27 14:13:48.575  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d found in urn:graph:3b32da0c-f217-4aa4-ba63-e7b537fc0af8 at http://localhost:8080/sparql -2023-10-27 14:13:48.577 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation When was Adidas established? -2023-10-27 14:13:48.577  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : myQuestion: When was Adidas established? -2023-10-27 14:13:48.577  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@53816af4 -2023-10-27 14:13:48.577 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:13:48.578  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:13:48.578  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchEntities for given question with query: PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:13:48.603 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_efe5cf67-f985-4502-98b4-73770fd6c22d -2023-10-27 14:13:48.604  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_relations.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@111e7464 -2023-10-27 14:13:48.604 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:13:48.605  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:13:48.605  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchRelations for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?relationurl -FROM -WHERE - { ?a a qa:AnnotationOfRelation ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?relationurl ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:13:48.612  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : uri info http://dbpedia.org/ontology/established -2023-10-27 14:13:48.613  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/get_classes.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@49907a79 -2023-10-27 14:13:48.613 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start -2023-10-27 14:13:48.614  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:13:48.614  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : fetchClasses for given question with query PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?a a qa:AnnotationOfClass ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource . - ?a oa:hasBody ?uri ; - oa:annotatedAt ?time - } -ORDER BY ?start - -2023-10-27 14:13:48.621  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Arguments: http://dbpedia.org/ontology/established: 39 -2023-10-27 14:13:48.621  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Sina Argument Count: 1 -2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : File Path is /tmp/sina-0.0.1.jar4666683110950526033.cxl -2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found JAR file (sina-0.0.1.jar) at /tmp/sina-0.0.1.jar4666683110950526033.cxl -2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Path to SINA JAR file: /tmp/sina-0.0.1.jar4666683110950526033.cxl -2023-10-27 14:13:48.652  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: argument=http://dbpedia.org/ontology/established on /tmp/sina-0.0.1.jar4666683110950526033.cxl -2023-10-27 14:13:48.942  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Removed SINA temp file: /tmp/sina-0.0.1.jar4666683110950526033.cxl -2023-10-27 14:13:48.942 DEBUG 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : executeExternalSinaJarFile: retrieved output=Hi Saeedehtesting is gonna start uri of path http://dbpedia.org/ontology/establishedtype 14 single entity template: select * where { http://dbpedia.org/ontology/established ?p ?v0. }template: http://dbpedia.org/ontology/established ?p ?v0 . sparql printing list.....select * where { http://dbpedia.org/ontology/established ?p ?v0. }log4j:WARN No appenders could be found for logger (model.StartThread).log4j:WARN Please initialize the log4j system properly.log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. list of final templates: [select * where { http://dbpedia.org/ontology/established ?p ?v0. }] -2023-10-27 14:13:48.942  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : Found query candidates: [select * where { http://dbpedia.org/ontology/established ?p ?v0. }] -2023-10-27 14:13:48.942  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_annotation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@47dbd758 -2023-10-27 14:13:48.942 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -INSERT { - GRAPH ?graph { - ?a a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget ?targetQuestion . - ?a oa:hasBody ?body ; - oa:annotatedBy ?application ; - oa:annotatedAt ?time ; - qa:hasScore ?score . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?a) . - BIND (now() as ?time) . -} -2023-10-27 14:13:48.944  INFO 9653 --- [nio-8098-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated UPDATE query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/established ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.944  INFO 9653 --- [nio-8098-exec-5] eu.wdaqua.qanary.component.sina.qb.SINA  : SPARQL query: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/established ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.944 DEBUG 9653 --- [nio-8098-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX xsd: -PREFIX oa: - -INSERT { - GRAPH { - ?a qa:AnnotationOfAnswerSPARQL . - ?a oa:hasTarget . - ?a oa:hasBody "select * where { http://dbpedia.org/ontology/established ?p ?v0. }" . - ?a oa:annotatedBy . - ?a oa:annotatedAt ?time . - ?a qa:hasScore "10"^^xsd:float . - } -} -WHERE - { BIND(IRI(str(rand())) AS ?a) - BIND(now() AS ?time) - } - -2023-10-27 14:13:48.949 DEBUG 9653 --- [nio-8098-exec-5] e.w.q.component.QanaryServiceController  : processing took: 390 ms diff --git a/qanary-component-QB-Sina/pom.xml b/qanary-component-QB-Sina/pom.xml index 694bd625d..a734df7c3 100644 --- a/qanary-component-QB-Sina/pom.xml +++ b/qanary-component-QB-Sina/pom.xml @@ -38,11 +38,6 @@ qa.commons [3.5.4,4.0.0] - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.apache.logging.log4j log4j-to-slf4j diff --git a/qanary-component-QBE-QAnswer/nohup.out b/qanary-component-QBE-QAnswer/nohup.out deleted file mode 100644 index 531bb6169..000000000 --- a/qanary-component-QBE-QAnswer/nohup.out +++ /dev/null @@ -1,20758 +0,0 @@ - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: QAnswerQueryBuilderAndExecutor  -Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.3.0  -Spring Boot Version: 2.7.0  -Java Version: 21  - -2023-10-27 12:09:22.523  INFO 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 9655 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) -2023-10-27 12:09:22.561 DEBUG 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 -2023-10-27 12:09:22.576  INFO 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:50.001  INFO 9655 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 11022 -spring.application.name = QAnswerQueryBuilderAndExecutor -spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:50.614  WARN 9655 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:51.335  WARN 9655 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:52.211  INFO 9655 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fac80 -2023-10-27 12:09:52.212  INFO 9655 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@726386ed -2023-10-27 12:09:52.237 DEBUG 9655 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@30c31dd7 -2023-10-27 12:09:52.326  INFO 9655 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs -2023-10-27 12:09:52.327  INFO 9655 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html -2023-10-27 12:09:52.370  INFO 9655 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@600b0b7 -2023-10-27 12:09:52.392  INFO 9655 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl -2023-10-27 12:09:56.181  WARN 9655 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:56.314  INFO 9655 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s -2023-10-27 12:10:02.280  INFO 9655 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 12:10:02.389  INFO 9655 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 12:10:02.390  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 12:10:02.391  INFO 9655 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 12:10:02.392  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@73437222 -2023-10-27 12:10:02.709  INFO 9655 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Starting Quartz Scheduler now -2023-10-27 12:10:02.711  INFO 9655 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED started. -2023-10-27 12:10:02.765  INFO 9655 --- [ main] e.w.q.component.qanswer.qbe.Application  : Started Application in 44.641 seconds (JVM running for 51.876) -2023-10-27 12:10:02.970  WARN 9655 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=QAnswerQueryBuilderAndExecutor, managementUrl=http://localhost:11022/actuator, healthUrl=http://localhost:11022/actuator/health, serviceUrl=http://localhost:11022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:12.804  INFO 9655 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as df1465fa7ea6 - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: QAnswerQueryBuilderAndExecutor  -Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.3.0  -Spring Boot Version: 2.7.0  -Java Version: 21  - -2023-10-27 12:15:53.016  INFO 11768 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 11768 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) -2023-10-27 12:15:53.066 DEBUG 11768 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 -2023-10-27 12:15:53.084  INFO 11768 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:31.416  INFO 11768 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 11022 -spring.application.name = QAnswerQueryBuilderAndExecutor -spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:31.966  WARN 11768 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:32.883  WARN 11768 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:34.245  INFO 11768 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@29ad44e3 -2023-10-27 12:16:34.252  INFO 11768 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15bcf458 -2023-10-27 12:16:34.262 DEBUG 11768 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@57f791c6 -2023-10-27 12:16:34.350  INFO 11768 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs -2023-10-27 12:16:34.350  INFO 11768 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html -2023-10-27 12:16:34.395  INFO 11768 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@3aacf32a -2023-10-27 12:16:34.453  INFO 11768 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl -2023-10-27 12:16:39.113  WARN 11768 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:39.234  INFO 11768 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s -2023-10-27 12:16:47.341  INFO 11768 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 12:16:47.414  INFO 11768 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 12:16:47.414  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 12:16:47.418  INFO 11768 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 12:16:47.419  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 12:16:47.419  INFO 11768 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 12:16:47.420  INFO 11768 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 12:16:47.420  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@1c6c6f24 -2023-10-27 12:16:47.937  WARN 11768 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 11022 is already in use -2023-10-27 12:16:47.938  INFO 11768 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 12:16:47.938  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 12:16:47.942  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 12:16:47.952  INFO 11768 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 12:16:48.205 ERROR 11768 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 11022 was already in use. - -Action: - -Identify and stop the process that's listening on port 11022 or configure this application to listen on another port. - -2023-10-27 13:37:22.802  WARN 9655 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=QAnswerQueryBuilderAndExecutor, managementUrl=http://localhost:11022/actuator, healthUrl=http://localhost:11022/actuator/health, serviceUrl=http://localhost:11022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: QAnswerQueryBuilderAndExecutor  -Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.3.0  -Spring Boot Version: 2.7.0  -Java Version: 21  - -2023-10-27 13:37:49.642  INFO 28735 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 28735 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) -2023-10-27 13:37:49.704 DEBUG 28735 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 -2023-10-27 13:37:49.724  INFO 28735 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:14.777  INFO 28735 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 11022 -spring.application.name = QAnswerQueryBuilderAndExecutor -spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:15.430  WARN 28735 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:16.128  WARN 28735 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:17.534  INFO 28735 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@fac80 -2023-10-27 13:38:17.535  INFO 28735 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@726386ed -2023-10-27 13:38:17.575 DEBUG 28735 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@30c31dd7 -2023-10-27 13:38:17.706  INFO 28735 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs -2023-10-27 13:38:17.706  INFO 28735 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html -2023-10-27 13:38:17.749  INFO 28735 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@600b0b7 -2023-10-27 13:38:17.804  INFO 28735 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl -2023-10-27 13:38:23.277  WARN 28735 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:23.451  INFO 28735 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s -2023-10-27 13:38:31.888  INFO 28735 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:38:32.064  INFO 28735 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:38:32.064  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:38:32.065  INFO 28735 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:38:32.066  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@73437222 -2023-10-27 13:38:32.843  WARN 28735 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 11022 is already in use -2023-10-27 13:38:32.844  INFO 28735 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 13:38:32.844  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 13:38:32.844  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:38:32.845  INFO 28735 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 13:38:33.246 ERROR 28735 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 11022 was already in use. - -Action: - -Identify and stop the process that's listening on port 11022 or configure this application to listen on another port. - - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: QAnswerQueryBuilderAndExecutor  -Application Description: QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.3.0  -Spring Boot Version: 2.7.0  -Java Version: 21  - -2023-10-27 13:38:50.741  INFO 30126 --- [ main] e.w.q.component.qanswer.qbe.Application  : Starting Application v3.3.0 using Java 21 on fedora with PID 30126 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/target/qanary-component-QBE-QAnswer-3.3.0.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer) -2023-10-27 13:38:50.752 DEBUG 30126 --- [ main] e.w.q.component.qanswer.qbe.Application  : Running with Spring Boot v2.7.0, Spring v5.3.20 -2023-10-27 13:38:50.756  INFO 30126 --- [ main] e.w.q.component.qanswer.qbe.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:20.229  INFO 30126 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 11022 -spring.application.name = QAnswerQueryBuilderAndExecutor -spring.application.description = QAnswerQueryBuilderAndExecutor is retrieving answers for (enriched) questions from the QAnswer API -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:21.457  WARN 30126 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:21.908  WARN 30126 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:23.576  INFO 30126 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@51650883 -2023-10-27 13:39:23.577  INFO 30126 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/insert_one_AnnotationOfAnswerSPARQL.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c4f9535 -2023-10-27 13:39:23.633 DEBUG 30126 --- [ main] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : RestTemplate: eu.wdaqua.qanary.communications.RestTemplateWithCaching@615f972 -2023-10-27 13:39:23.725  INFO 30126 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs available at http://0.0.0.0:11022/api-docs -2023-10-27 13:39:23.725  INFO 30126 --- [ main] QAnswerQueryBuilderAndExecutorController : Service API docs UI available at http://0.0.0.0:11022/swagger-ui.html -2023-10-27 13:39:23.772  INFO 30126 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor@402f80f5 -2023-10-27 13:39:23.841  INFO 30126 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl -2023-10-27 13:39:28.471  WARN 30126 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-QBE-QAnswer/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:28.553  INFO 30126 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: maximumSize=0,expireAfterAccess=0s -2023-10-27 13:39:36.321  INFO 30126 --- [ main] org.quartz.impl.StdSchedulerFactory  : Using default implementation for ThreadExecutor -2023-10-27 13:39:36.504  INFO 30126 --- [ main] org.quartz.core.SchedulerSignalerImpl  : Initialized Scheduler Signaller of type: class org.quartz.core.SchedulerSignalerImpl -2023-10-27 13:39:36.505  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Quartz Scheduler v.2.3.2 created. -2023-10-27 13:39:36.506  INFO 30126 --- [ main] org.quartz.simpl.RAMJobStore  : RAMJobStore initialized. -2023-10-27 13:39:36.509  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler meta-data: Quartz Scheduler (v2.3.2) 'quartzScheduler' with instanceId 'NON_CLUSTERED' - Scheduler class: 'org.quartz.core.QuartzScheduler' - running locally. - NOT STARTED. - Currently in standby mode. - Number of jobs executed: 0 - Using thread pool 'org.quartz.simpl.SimpleThreadPool' - with 10 threads. - Using job-store 'org.quartz.simpl.RAMJobStore' - which does not support persistence. and is not clustered. - -2023-10-27 13:39:36.509  INFO 30126 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler 'quartzScheduler' initialized from an externally provided properties instance. -2023-10-27 13:39:36.509  INFO 30126 --- [ main] org.quartz.impl.StdSchedulerFactory  : Quartz scheduler version: 2.3.2 -2023-10-27 13:39:36.510  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : JobFactory set to: org.springframework.scheduling.quartz.SpringBeanJobFactory@4088741b -2023-10-27 13:39:36.802  WARN 30126 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 11022 is already in use -2023-10-27 13:39:36.803  INFO 30126 --- [ main] o.s.s.quartz.SchedulerFactoryBean  : Shutting down Quartz Scheduler -2023-10-27 13:39:36.803  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutting down. -2023-10-27 13:39:36.803  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED paused. -2023-10-27 13:39:36.804  INFO 30126 --- [ main] org.quartz.core.QuartzScheduler  : Scheduler quartzScheduler_$_NON_CLUSTERED shutdown complete. -2023-10-27 13:39:36.992 ERROR 30126 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 11022 was already in use. - -Action: - -Identify and stop the process that's listening on port 11022 or configure this application to listen on another port. - -2023-10-27 13:54:02.295  INFO 9655 --- [io-11022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:54:02.309  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:54:02.373  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:54:02.460  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@d1abfe0 -2023-10-27 13:54:02.502  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5053db6a -2023-10-27 13:54:02.515 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:02.692  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:02.695  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:02.876 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 -2023-10-27 13:54:02.877  INFO 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 found in urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e at http://localhost:8080/sparql -2023-10-27 13:54:02.898 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? -2023-10-27 13:54:02.899  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3add2ff1 -2023-10-27 13:54:02.900 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:54:02.908  INFO 9655 --- [io-11022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:03.017 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? -2023-10-27 13:54:03.017  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "How many casualties were a result of the Troubles?". -2023-10-27 13:54:03.087 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many casualties were a result of the Troubles? -2023-10-27 13:54:03.087  WARN 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'How many casualties were a result of the Troubles?' -2023-10-27 13:54:03.087  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: How many casualties were a result of the Troubles? -2023-10-27 13:54:03.087  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : How many casualties were a result of the Troubles? -2023-10-27 13:54:03.094  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 13:54:03.094  WARN 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[How many casualties were a result of the Troubles?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 13:54:03.103 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 13:54:03.138 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:54:03.138 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[How many casualties were a result of the Troubles?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 13:54:03.184  INFO 9655 --- [io-11022-exec-8] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-814474233 -2023-10-27 13:54:03.552 DEBUG 9655 --- [io-11022-exec-8] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@73f5a1ee -2023-10-27 13:54:05.967 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:05.968 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:54:05.973  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'How many casualties were a result of the Troubles?': [{question={answers={ - "head" : { - "vars" : [ - "count" - ] - }, - "results" : { - "bindings" : [ - { - "count" : { - "datatype" : "http://www.w3.org/2001/XMLSchema#integer", - "type" : "literal", - "value" : "0" - } - } - ] - } -}, language=[{SPARQL=SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000, confidence=0.01}]}}] -2023-10-27 13:54:05.990  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http:\/\/www.w3.org\/2001\/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]}}]} -2023-10-27 13:54:05.994 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]} -2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} -2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} -2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count -2023-10-27 13:54:05.995 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] -2023-10-27 13:54:05.995  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 -2023-10-27 13:54:05.995  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals -2023-10-27 13:54:05.997  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (http://www.w3.org/2001/XMLSchema#integer). -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]} -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] -2023-10-27 13:54:05.997  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 -2023-10-27 13:54:05.997  INFO 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}]} -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01}] -2023-10-27 13:54:05.997 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.01} -2023-10-27 13:54:05.998 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000 -2023-10-27 13:54:05.998 DEBUG 9655 --- [io-11022-exec-8] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.01 -2023-10-27 13:54:06.003 DEBUG 9655 --- [io-11022-exec-8] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 -2023-10-27 13:54:06.008  INFO 9655 --- [io-11022-exec-8] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 13:54:06.009 DEBUG 9655 --- [io-11022-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 "0"^^ ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.01"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("How many casualties were a result of the Troubles?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"count\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"count\\\" : { \\\"datatype\\\" : \\\"http://www.w3.org/2001/XMLSchema#integer\\\", \\\"type\\\" : \\\"literal\\\", \\\"value\\\" : \\\"0\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000\",\"confidence\":0.01}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 13:54:06.058 DEBUG 9655 --- [io-11022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 3752 ms -2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:28.597  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@55396b3a -2023-10-27 13:54:28.605  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5bfe9fed -2023-10-27 13:54:28.605 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:54:28.606  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:28.607  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:54:28.615 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:28.615  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da found in urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 at http://localhost:8080/sparql -2023-10-27 13:54:28.618 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:28.618  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5fc1004a -2023-10-27 13:54:28.618 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:54:28.620  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:54:28.663  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(0,4) (score=0.9163943>=0.5) ignored=false -2023-10-27 13:54:28.663  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(13,25) (score=1.0>=0.5) ignored=false -2023-10-27 13:54:28.664  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(29,49) (score=0.9987039>=0.5) ignored=false -2023-10-27 13:54:28.680 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:28.680  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (3 items) of getNamedEntitiesOfQuestion for question "What are the German names of academic disciplines containing “linguistik”?". -2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/String_theory at (0,4) with score 0.9163943 -2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/German_name at (13,25) with score 1.0 -2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Outline_of_academic_disciplines at (29,49) with score 0.9987039 -2023-10-27 13:54:28.682 DEBUG 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'academic disciplines' at (29,49) results in: What are the German names of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?, first:|What are the German names of |, second:| containing “linguistik”?| -2023-10-27 13:54:28.682 DEBUG 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'German names' at (13,25) results in: What are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?, first:|What are the |, second:| of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?| -2023-10-27 13:54:28.682 DEBUG 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 2. replace of 'What' at (0,4) results in: http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?, first:||, second:| are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?| -2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:28.682  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”? -2023-10-27 13:54:28.683  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 13:54:28.683  WARN 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 13:54:28.683 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 13:54:28.683 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:54:28.683 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 13:54:28.683  INFO 9655 --- [o-11022-exec-10] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=519785586 -2023-10-27 13:54:28.770 DEBUG 9655 --- [o-11022-exec-10] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67630886 -2023-10-27 13:54:30.666 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:54:30.798 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:54:30.805  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?': [{question={answers={ - "head" : { - "vars" : [ - "s1" - ] - }, - "results" : { - "bindings" : [ - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1000247" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1000754" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100144455" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100144534" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100144680" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100144747" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100145678" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100145777" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100145971" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100146260" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100146844" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100147501" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100151385" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100152629" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100152630" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100152930" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100153068" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100153102" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100153189" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100153982" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100153990" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100154035" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100154202" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100154295" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100154441" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100154951" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100155200" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100155250" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100155318" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100155778" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100156203" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100156231" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100156248" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100195598" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100195938" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100196247" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100196594" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100196940" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100197315" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100197689" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100198447" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100198817" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100199144" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100199473" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100199830" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100200238" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100217115" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100230388" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100230390" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100230938" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100233380" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100249778" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100250595" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251109" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251215" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251224" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251256" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251329" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251442" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251673" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100254362" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100255539" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256400" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1002567" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100262375" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100268229" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100268935" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100268938" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100269136" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100272509" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100273231" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1002735" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1002754" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100277382" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100279065" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1002872" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1002954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299026" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299077" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299083" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299090" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299217" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299298" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299313" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299380" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299388" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299406" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299417" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299423" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299587" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299863" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299947" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299953" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299958" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299966" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100299982" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300045" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300049" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300054" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300060" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300065" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300071" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300099" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300103" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300109" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300148" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300177" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300191" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100300199" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301121" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301129" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301278" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301339" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301356" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301385" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301399" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301408" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301414" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301425" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301742" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301758" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100301991" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302005" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302015" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302021" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302029" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302036" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302043" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302048" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302053" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302058" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302064" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302070" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302086" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302101" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302113" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302133" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302160" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302176" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302194" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302207" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302219" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302225" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302231" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302236" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302241" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302246" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302252" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302259" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302265" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302270" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302276" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302292" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302308" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302322" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302340" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302363" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302379" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302778" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302801" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302816" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302830" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302888" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302893" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302899" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302904" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302909" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302920" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302935" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302948" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100302963" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303010" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303023" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303066" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303077" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303086" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303091" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303097" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303102" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303106" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303110" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303116" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303122" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303129" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303141" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303158" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303338" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303344" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303350" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303356" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303361" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303366" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303379" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303396" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303410" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303425" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303453" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303473" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303516" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303533" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303539" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303544" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303788" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100303995" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304381" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304387" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304392" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304397" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304404" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304409" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304414" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304420" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304426" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304431" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100304437" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305144" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305161" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305174" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305189" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305344" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305360" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305416" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305750" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305773" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100305982" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306100" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306306" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306498" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306517" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306524" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306529" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306627" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306725" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306866" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307210" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307697" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307712" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307728" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307748" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307770" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307789" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307804" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307854" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307865" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307876" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100307883" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100308100" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100308125" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100308558" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100308806" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100308823" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309092" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309158" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309235" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309261" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309289" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309314" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309326" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309339" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309353" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309359" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309363" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309369" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309376" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309382" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309387" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309395" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309429" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309455" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309480" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309508" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309541" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309559" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309572" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309587" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309615" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309631" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309638" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309654" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309689" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309700" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309746" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309768" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309824" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309837" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100309853" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310240" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310255" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310285" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310292" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310304" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310318" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310324" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310335" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310622" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310628" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310640" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310664" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310687" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310702" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310717" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310735" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310750" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310762" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310769" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310776" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310802" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310809" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310936" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310950" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310969" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310977" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100310991" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311004" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311010" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311021" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311038" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311049" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311076" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311092" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311106" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311117" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311123" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311128" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311134" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311140" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311153" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311166" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311184" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311190" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311195" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311209" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311224" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311240" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311283" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311483" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311536" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311665" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100311953" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312032" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312037" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312050" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312056" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312062" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312069" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312080" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312086" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312092" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312097" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312110" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312127" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312142" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312154" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312165" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312180" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312202" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312214" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312221" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312227" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312234" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312239" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312244" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312250" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312257" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312264" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312272" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312278" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312305" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312320" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312336" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312353" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312366" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312377" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312383" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312389" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312396" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312402" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312844" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312860" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312963" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312973" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100312995" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313083" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313095" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313182" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313193" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313206" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313221" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313232" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313237" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313244" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313250" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313256" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313261" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313267" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313272" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313279" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313285" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313292" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313298" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313347" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313363" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313380" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313393" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313408" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313412" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313417" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313424" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313431" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313435" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313442" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313449" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313458" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313466" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313472" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313478" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313486" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313491" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313499" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313516" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313530" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313544" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313555" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313569" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313581" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313586" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313591" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313597" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313603" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313608" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313613" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313615" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313620" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313625" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313656" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313905" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313911" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313917" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313928" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313941" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313948" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313959" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313970" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100313977" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100314172" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100314427" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315180" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315765" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315775" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315781" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315787" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315799" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315807" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315813" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315819" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315830" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100315862" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316001" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316008" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316015" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316020" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316027" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316030" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316032" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316044" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316050" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316063" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316069" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316076" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316081" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316087" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316094" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316100" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100316999" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100317042" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100317068" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100317247" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100318807" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100320054" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100320076" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100324295" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100326023" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100326425" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100327037" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328577" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328864" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328872" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328906" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328918" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328935" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328944" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328946" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328947" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328948" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328953" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328971" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100328974" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329092" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329093" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329107" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329734" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329735" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329737" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329739" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329740" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329741" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329743" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329745" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329746" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329749" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100329750" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330235" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330265" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330279" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330299" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330300" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330303" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330310" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330311" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330313" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330314" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330315" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330317" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330320" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330321" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330323" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330324" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330325" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330327" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330328" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330329" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330334" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330339" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330346" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330348" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330363" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330364" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330371" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330373" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330374" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330375" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330376" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330377" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330379" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330380" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330381" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330382" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330383" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330384" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330385" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330387" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330389" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330390" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330391" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330392" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330393" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330394" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330395" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330397" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330399" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330400" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330402" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330404" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330405" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330406" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330412" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330414" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330417" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330418" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330419" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330420" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330421" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330422" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330431" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330435" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330508" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330509" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330510" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330511" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330512" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330516" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330648" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330652" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330656" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330661" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330665" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330669" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330673" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330675" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330679" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330688" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330694" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330698" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330700" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330701" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330705" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330706" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330707" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330708" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330710" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330714" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330719" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330723" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330724" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330727" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330729" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330734" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330742" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330748" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330749" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330753" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330756" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330766" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330771" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330775" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330785" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330788" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330791" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330792" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330793" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330798" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330811" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330821" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330824" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330826" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330829" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330831" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330834" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330835" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330836" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330837" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330838" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330840" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330844" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330847" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330851" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330854" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330857" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330860" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330861" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330865" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330866" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330870" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330874" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330876" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330886" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330915" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330916" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330917" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330918" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330919" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330920" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330921" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330922" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330928" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330963" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330982" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330989" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100330998" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100331031" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100334054" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100336530" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100337757" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100337780" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100337811" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100337852" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100337866" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100337879" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100337892" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100338157" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100338973" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339047" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339071" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339124" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339159" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339167" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339210" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339218" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339228" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339236" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339243" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339265" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339272" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339284" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339292" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339299" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339306" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339313" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339351" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339360" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339366" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339374" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339383" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339392" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339399" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339407" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339413" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339420" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339428" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339441" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339453" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339462" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339469" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339477" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339483" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339490" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339498" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339509" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339516" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339525" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339533" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339542" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339570" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339578" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339607" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339616" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339624" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339634" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339641" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339647" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339654" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339840" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339841" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100339996" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100340191" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100340192" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348444" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348445" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348446" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348447" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348448" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348449" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348450" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348451" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348453" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348455" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348521" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348522" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348523" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348524" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348526" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348528" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348530" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348531" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348532" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348539" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348549" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348558" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348567" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348577" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348584" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348586" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348588" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348589" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348591" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348593" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348594" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348597" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348601" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348602" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348603" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348604" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348605" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348607" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348608" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348609" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348610" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348612" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348614" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348617" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348618" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348619" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348621" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348622" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348624" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348627" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348628" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348721" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348727" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348728" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348732" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348733" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348735" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348741" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348757" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348761" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348764" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348765" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348768" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348770" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348779" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100348780" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350655" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350657" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350659" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350664" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350666" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350670" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350673" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100351325" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100351628" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352354" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352368" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352377" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352384" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352392" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352402" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352413" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352422" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352433" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352443" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352453" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352463" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352470" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352487" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352498" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352506" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352517" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352527" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352537" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352551" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352563" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352578" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352592" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352606" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352664" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352675" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352682" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352702" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100352914" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353194" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353207" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353219" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353230" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353330" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353371" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353392" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353401" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353407" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353414" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353422" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353431" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353437" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353456" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353463" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353469" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353476" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353487" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353502" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353517" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353535" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353546" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353558" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353562" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353564" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353565" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353570" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353571" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353574" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353576" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353578" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353579" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353580" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353582" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353583" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353594" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353617" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353641" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353642" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353643" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353646" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353651" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353652" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353654" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353656" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353660" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100353968" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100354043" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100354045" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100354423" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100354947" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100354956" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355013" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355141" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355149" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355216" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355279" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355287" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355304" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355485" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355495" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355511" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355809" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355818" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355880" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355950" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355968" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100355976" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100356058" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100357497" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100357511" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359368" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359370" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359441" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359499" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359508" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359515" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359933" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359943" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359953" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359964" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359973" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359983" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100359993" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360003" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360012" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360024" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360032" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360042" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360054" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360065" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360074" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100360084" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100361805" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100361980" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100362504" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100362514" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100362517" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100363225" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100364543" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100364546" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100364762" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100364763" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100364766" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100364768" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100374668" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100374735" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100375062" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100376019" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100377532" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100391149" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100392179" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100416944" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100417179" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100417231" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100417283" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100417338" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100418335" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100424745" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100431458" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100431555" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100432345" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100436796" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100437195" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100448532" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100453142" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100479486" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100489695" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100500386" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100501561" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100507690" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100547484" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100550094" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100550186" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100550401" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100551359" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100551645" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100552014" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100552370" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1005582" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100564168" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100565605" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100566057" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100588404" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100624882" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100700466" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100700585" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100700626" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100700704" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100700750" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100706477" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100708447" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100708484" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100708505" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100708629" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100709404" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100709416" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100709466" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100710221" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100715995" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100715996" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100716003" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100716094" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100716194" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100716197" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100716203" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100716212" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100716357" - } - } - ] - } -}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000, confidence=0.08}]}}] -2023-10-27 13:54:30.816  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]}}]} -2023-10-27 13:54:30.824 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 13:54:30.836 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]}} -2023-10-27 13:54:30.836 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]} -2023-10-27 13:54:30.838 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 13:54:30.839 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}] -2023-10-27 13:54:30.840  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q1000247 -2023-10-27 13:54:30.841  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. -2023-10-27 13:54:30.841 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 13:54:30.847 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]}} -2023-10-27 13:54:30.847 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]} -2023-10-27 13:54:30.849 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 13:54:30.849 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}] -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q1000247 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000754 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100144455 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100144534 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100144680 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144747 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100145678 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100145777 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100145971 -2023-10-27 13:54:30.850  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100146260 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100146844 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100147501 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100151385 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100152629 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100152630 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100152930 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100153068 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100153102 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100153189 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100153982 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q100153990 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100154035 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100154202 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100154295 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100154441 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100154951 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100155200 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100155250 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100155318 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100155778 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100156203 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100156231 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100156248 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100195598 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100195938 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100196247 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100196594 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100196940 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100197315 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100197689 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100198447 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100198817 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100199144 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100199473 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100199830 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100200238 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100217115 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q100230388 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100230390 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q100230938 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100233380 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100249778 -2023-10-27 13:54:30.851  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100250595 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100251109 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100251215 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100251224 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100251256 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100251329 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100251442 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100251673 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q100254362 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100255539 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100256400 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q1002567 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100262375 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100268229 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100268935 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100268938 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100269136 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100272509 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100273231 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q1002735 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1002754 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100277382 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100279065 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q1002872 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q1002954 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100299026 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100299077 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100299083 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100299090 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100299217 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100299298 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100299313 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100299380 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100299388 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100299406 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100299417 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100299423 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100299587 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100299863 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100299947 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100299953 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100299958 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100299966 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100299982 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100300045 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100300049 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100300054 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100300060 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100300065 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100300071 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100300099 -2023-10-27 13:54:30.852  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100300103 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100300109 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100300148 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100300177 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100300191 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100300199 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100301121 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100301129 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100301278 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100301339 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100301356 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100301385 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100301399 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100301408 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100301414 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100301425 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100301742 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100301758 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100301991 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100302005 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100302015 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100302021 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100302029 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100302036 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100302043 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100302048 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100302053 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100302058 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100302064 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100302070 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100302086 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100302101 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100302113 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100302133 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q100302160 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q100302176 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q100302194 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q100302207 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q100302219 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q100302225 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q100302231 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q100302236 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q100302241 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q100302246 -2023-10-27 13:54:30.853  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q100302252 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q100302259 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q100302265 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q100302270 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q100302276 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q100302292 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q100302308 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q100302322 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q100302340 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q100302363 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q100302379 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q100302778 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q100302801 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q100302816 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q100302830 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q100302888 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q100302893 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q100302899 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q100302904 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q100302909 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q100302920 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q100302935 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q100302948 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q100302963 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q100303010 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q100303023 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q100303066 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q100303077 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q100303086 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q100303091 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q100303097 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q100303102 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q100303106 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q100303110 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q100303116 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q100303122 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q100303129 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q100303141 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q100303158 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q100303338 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q100303344 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q100303350 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q100303356 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q100303361 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q100303366 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q100303379 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q100303396 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q100303410 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q100303425 -2023-10-27 13:54:30.854  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q100303453 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q100303473 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q100303516 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q100303533 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q100303539 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q100303544 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q100303788 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q100303995 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q100304381 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q100304387 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q100304392 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q100304397 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q100304404 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q100304409 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q100304414 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q100304420 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q100304426 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q100304431 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q100304437 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q100305144 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q100305161 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q100305174 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q100305189 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q100305344 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q100305360 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q100305416 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q100305750 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q100305773 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q100305982 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q100306100 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q100306306 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q100306498 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q100306517 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q100306524 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q100306529 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q100306627 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q100306725 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q100306866 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q100307210 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q100307697 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q100307712 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q100307728 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q100307748 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q100307770 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q100307789 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q100307804 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q100307854 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q100307865 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q100307876 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q100307883 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q100308100 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q100308125 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q100308558 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q100308806 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q100308823 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q100309092 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q100309158 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q100309235 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q100309261 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q100309289 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q100309314 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q100309326 -2023-10-27 13:54:30.855  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q100309339 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q100309353 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q100309359 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q100309363 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q100309369 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q100309376 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q100309382 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q100309387 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q100309395 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q100309429 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q100309455 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q100309480 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q100309508 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q100309541 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q100309559 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q100309572 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q100309587 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q100309615 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q100309631 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q100309638 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q100309654 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q100309689 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q100309700 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q100309746 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q100309768 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q100309824 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q100309837 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q100309853 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q100310240 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q100310255 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q100310285 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q100310292 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q100310304 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q100310318 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q100310324 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q100310335 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q100310622 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q100310628 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q100310640 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q100310664 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q100310687 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q100310702 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q100310717 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q100310735 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q100310750 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q100310762 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q100310769 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q100310776 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q100310802 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q100310809 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q100310936 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q100310950 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q100310969 -2023-10-27 13:54:30.856  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q100310977 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q100310991 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q100311004 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q100311010 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q100311021 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q100311038 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q100311049 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q100311076 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q100311092 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q100311106 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q100311117 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q100311123 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q100311128 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q100311134 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q100311140 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q100311153 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q100311166 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q100311184 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q100311190 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q100311195 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q100311209 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q100311224 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q100311240 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q100311283 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q100311483 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q100311536 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q100311665 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q100311953 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q100312032 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q100312037 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q100312050 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q100312056 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q100312062 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q100312069 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q100312080 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q100312086 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q100312092 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q100312097 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q100312110 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q100312127 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q100312142 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q100312154 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q100312165 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q100312180 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q100312202 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q100312214 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q100312221 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q100312227 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q100312234 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q100312239 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q100312244 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q100312250 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q100312257 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q100312264 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q100312272 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q100312278 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q100312305 -2023-10-27 13:54:30.857  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q100312320 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q100312336 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q100312353 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q100312366 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q100312377 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q100312383 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q100312389 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q100312396 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q100312402 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q100312844 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q100312860 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q100312963 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q100312973 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q100312995 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q100313083 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q100313095 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q100313182 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q100313193 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q100313206 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q100313221 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q100313232 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q100313237 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q100313244 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q100313250 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q100313256 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q100313261 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q100313267 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q100313272 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q100313279 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q100313285 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q100313292 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q100313298 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q100313347 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q100313363 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q100313380 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q100313393 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q100313408 -2023-10-27 13:54:30.858  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q100313412 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q100313417 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q100313424 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q100313431 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q100313435 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q100313442 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q100313449 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q100313458 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q100313466 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q100313472 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q100313478 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q100313486 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q100313491 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q100313499 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q100313516 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q100313530 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q100313544 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q100313555 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q100313569 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q100313581 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q100313586 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q100313591 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q100313597 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q100313603 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q100313608 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q100313613 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q100313615 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q100313620 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q100313625 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q100313656 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q100313905 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q100313911 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q100313917 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q100313928 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q100313941 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q100313948 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q100313954 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q100313959 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q100313970 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q100313977 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q100314172 -2023-10-27 13:54:30.859  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q100314427 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q100315180 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q100315765 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q100315775 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q100315781 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q100315787 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q100315799 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q100315807 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q100315813 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q100315819 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q100315830 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q100315862 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q100316001 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q100316008 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q100316015 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q100316020 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q100316027 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q100316030 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q100316032 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q100316044 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q100316050 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q100316063 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q100316069 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q100316076 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q100316081 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q100316087 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q100316094 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q100316100 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q100316999 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q100317042 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q100317068 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q100317247 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q100318807 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q100320054 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q100320076 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q100324295 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q100326023 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q100326425 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q100327037 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q100328577 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q100328864 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q100328872 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q100328906 -2023-10-27 13:54:30.860  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q100328918 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q100328935 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q100328944 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q100328946 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q100328947 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q100328948 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q100328953 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q100328954 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q100328971 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q100328974 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q100329092 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q100329093 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q100329107 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q100329734 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q100329735 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q100329737 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q100329739 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q100329740 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q100329741 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q100329743 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q100329745 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q100329746 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q100329749 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q100329750 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q100330235 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q100330265 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q100330279 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q100330299 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q100330300 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q100330303 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q100330310 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q100330311 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q100330313 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q100330314 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q100330315 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q100330317 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q100330320 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q100330321 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q100330323 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q100330324 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q100330325 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q100330327 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q100330328 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q100330329 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q100330334 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q100330339 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q100330346 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q100330348 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q100330363 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q100330364 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q100330371 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q100330373 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q100330374 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q100330375 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q100330376 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q100330377 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q100330379 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q100330380 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q100330381 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q100330382 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q100330383 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q100330384 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q100330385 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q100330387 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q100330389 -2023-10-27 13:54:30.861  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q100330390 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q100330391 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q100330392 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q100330393 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q100330394 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q100330395 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q100330397 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q100330399 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q100330400 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q100330402 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q100330404 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q100330405 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q100330406 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q100330412 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q100330414 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q100330417 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q100330418 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q100330419 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q100330420 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q100330421 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q100330422 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q100330431 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q100330435 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q100330508 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q100330509 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q100330510 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q100330511 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q100330512 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q100330516 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q100330648 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q100330652 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q100330656 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q100330661 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q100330665 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q100330669 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q100330673 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q100330675 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q100330679 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q100330688 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q100330694 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q100330698 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q100330700 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q100330701 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q100330705 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q100330706 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q100330707 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q100330708 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q100330710 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q100330714 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q100330719 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q100330723 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q100330724 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q100330727 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q100330729 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q100330734 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q100330742 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q100330748 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q100330749 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q100330753 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q100330756 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q100330766 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q100330771 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q100330775 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q100330785 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q100330788 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q100330791 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q100330792 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q100330793 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q100330798 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q100330811 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q100330821 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q100330824 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q100330826 -2023-10-27 13:54:30.862  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q100330829 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q100330831 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q100330834 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q100330835 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q100330836 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q100330837 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q100330838 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q100330840 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q100330844 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q100330847 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q100330851 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q100330854 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q100330857 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q100330860 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q100330861 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q100330865 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q100330866 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q100330870 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q100330874 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q100330876 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q100330886 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q100330915 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q100330916 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q100330917 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q100330918 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q100330919 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q100330920 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q100330921 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q100330922 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q100330928 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q100330963 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q100330982 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q100330989 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q100330998 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q100331031 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q100334054 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q100336530 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q100337757 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q100337780 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q100337811 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q100337852 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q100337866 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q100337879 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q100337892 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q100338157 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q100338973 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q100339047 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q100339071 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q100339124 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q100339159 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q100339167 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q100339210 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q100339218 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q100339228 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q100339236 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q100339243 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q100339265 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q100339272 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q100339284 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q100339292 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q100339299 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q100339306 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q100339313 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q100339351 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q100339360 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q100339366 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q100339374 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q100339383 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q100339392 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q100339399 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q100339407 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q100339413 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q100339420 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q100339428 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q100339441 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q100339453 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q100339462 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q100339469 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q100339477 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q100339483 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q100339490 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q100339498 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q100339509 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q100339516 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q100339525 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q100339533 -2023-10-27 13:54:30.863  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q100339542 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q100339570 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q100339578 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q100339607 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q100339616 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q100339624 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q100339634 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q100339641 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q100339647 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q100339654 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q100339840 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q100339841 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q100339996 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q100340191 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q100340192 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q100348444 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q100348445 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q100348446 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q100348447 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q100348448 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q100348449 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q100348450 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q100348451 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q100348453 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q100348455 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q100348521 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q100348522 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q100348523 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q100348524 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q100348526 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q100348528 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q100348530 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q100348531 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q100348532 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q100348539 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q100348549 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q100348558 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q100348567 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q100348577 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q100348584 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q100348586 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q100348588 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q100348589 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q100348591 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q100348593 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q100348594 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q100348597 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q100348601 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q100348602 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q100348603 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q100348604 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q100348605 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q100348607 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q100348608 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q100348609 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q100348610 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q100348612 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q100348614 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q100348617 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q100348618 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q100348619 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q100348621 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q100348622 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q100348624 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q100348627 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q100348628 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q100348721 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q100348727 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q100348728 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q100348732 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q100348733 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q100348735 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q100348741 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q100348757 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q100348761 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q100348764 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q100348765 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q100348768 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q100348770 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q100348779 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q100348780 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q100350655 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q100350657 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q100350659 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q100350664 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q100350666 -2023-10-27 13:54:30.864  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q100350670 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q100350673 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q100351325 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q100351628 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q100352354 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q100352368 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q100352377 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q100352384 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q100352392 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q100352402 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q100352413 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q100352422 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q100352433 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q100352443 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q100352453 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q100352463 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q100352470 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q100352487 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q100352498 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q100352506 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q100352517 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q100352527 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q100352537 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q100352551 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q100352563 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q100352578 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q100352592 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q100352606 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q100352664 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q100352675 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q100352682 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q100352702 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q100352914 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q100353194 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q100353207 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q100353219 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q100353230 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q100353330 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q100353371 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q100353392 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q100353401 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q100353407 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q100353414 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q100353422 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q100353431 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q100353437 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q100353456 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q100353463 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q100353469 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q100353476 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q100353487 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q100353502 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q100353517 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q100353535 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q100353546 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q100353558 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q100353562 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q100353564 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q100353565 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q100353570 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q100353571 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q100353574 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q100353576 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q100353578 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q100353579 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q100353580 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q100353582 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q100353583 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q100353594 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q100353617 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q100353641 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q100353642 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q100353643 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q100353646 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q100353651 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q100353652 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q100353654 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q100353656 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q100353660 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q100353968 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q100354043 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q100354045 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q100354423 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q100354947 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q100354956 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q100355013 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q100355141 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q100355149 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q100355216 -2023-10-27 13:54:30.865  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q100355279 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q100355287 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q100355304 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q100355485 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q100355495 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q100355511 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q100355809 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q100355818 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q100355880 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q100355950 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q100355968 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q100355976 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q100356058 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q100357497 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q100357511 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q100359368 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q100359370 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q100359441 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q100359499 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q100359508 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q100359515 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q100359933 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q100359943 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q100359953 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q100359964 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q100359973 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q100359983 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q100359993 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q100360003 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q100360012 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q100360024 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q100360032 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q100360042 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q100360054 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q100360065 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q100360074 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q100360084 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q100361805 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q100361980 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q100362504 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q100362514 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q100362517 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q100363225 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q100364543 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q100364546 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q100364762 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q100364763 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q100364766 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q100364768 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q100374668 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q100374735 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q100375062 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q100376019 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q100377532 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q100391149 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q100392179 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q100416944 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q100417179 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q100417231 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q100417283 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q100417338 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q100418335 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q100424745 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q100431458 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q100431555 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q100432345 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q100436796 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q100437195 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q100448532 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q100453142 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q100479486 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q100489695 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q100500386 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q100501561 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q100507690 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q100547484 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q100550094 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q100550186 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q100550401 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q100551359 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q100551645 -2023-10-27 13:54:30.866  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q100552014 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q100552370 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q1005582 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q100564168 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q100565605 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q100566057 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q100588404 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q100624882 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q100700466 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q100700585 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q100700626 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q100700704 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q100700750 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q100706477 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q100708447 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q100708484 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q100708505 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q100708629 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q100709404 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q100709416 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q100709466 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q100710221 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q100715995 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q100715996 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q100716003 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q100716094 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q100716194 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q100716197 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q100716203 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q100716212 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q100716357 -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources -2023-10-27 13:54:30.867  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. -2023-10-27 13:54:30.867 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 13:54:30.872 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]}} -2023-10-27 13:54:30.872 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}]} -2023-10-27 13:54:30.874 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 13:54:30.874 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144680"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144747"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145678"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100145971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100147501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100151385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152630"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100152930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100155778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195598"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100195938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100196940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100197689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100198817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100199830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200238"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100217115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100249778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100250595"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100254362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100262375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268229"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268938"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100269136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100273231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100279065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299090"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299217"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299388"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100299982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300099"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300177"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100300199"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301758"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100301991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302070"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302160"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302241"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302252"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302259"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302276"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302340"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302904"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100302963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303077"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303102"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303116"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303122"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303361"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100303995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304409"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304426"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100304437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305174"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305189"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305344"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100305982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307789"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307804"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100307883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308125"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100308823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309158"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309326"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309480"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309559"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309572"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309587"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309631"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309638"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100309853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310255"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310640"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310687"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310776"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100310991"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311010"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311021"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311123"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311128"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311153"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311166"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311184"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311209"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100311953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312080"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312097"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312110"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312127"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312154"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312202"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312214"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312239"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312278"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312353"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312396"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100312995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313095"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313182"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313244"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313256"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313261"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313267"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313298"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313478"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313544"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313615"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313620"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100313977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314172"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100314427"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100315862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316001"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316015"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316020"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316063"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316081"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316100"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100316999"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100317247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100318807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100320076"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100324295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326023"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100326425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100327037"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328935"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328946"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100328974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329092"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329740"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329743"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100329750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330235"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330300"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330311"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330314"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330320"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330321"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330334"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330339"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330346"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330348"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330363"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330373"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330379"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330380"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330381"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330387"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330389"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330390"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330391"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330393"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330405"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330406"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330412"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330417"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330435"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330648"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330688"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330723"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330771"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330788"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330824"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330836"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330918"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100330998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100331031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100334054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337852"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337879"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100337892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100338973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339159"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339167"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339210"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339236"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339243"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339265"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339272"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339284"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339292"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339313"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339360"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339399"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339420"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339490"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339634"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100339996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340191"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100340192"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348448"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348451"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348588"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348589"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348591"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348593"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348597"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348602"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348607"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348608"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348610"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348614"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348618"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348619"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348624"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348741"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348757"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348764"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348765"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100348780"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350659"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351325"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100351628"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352402"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352453"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352498"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352506"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352563"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352592"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352675"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352682"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100352914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353230"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353371"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353422"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353437"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353487"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353502"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353535"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353558"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353562"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353564"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353565"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353578"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353580"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353594"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353617"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353642"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353646"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353651"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353656"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100353968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100354956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355279"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355287"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355485"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355968"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100355976"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100356058"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100357511"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359368"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359499"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100359993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360065"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100360084"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100361980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362504"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100362517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363225"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364546"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364762"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100364768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100374735"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375062"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100376019"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100391149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100392179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417179"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417231"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417283"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100417338"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100418335"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100424745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431458"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100431555"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100432345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100436796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437195"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100448532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100453142"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100479486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100489695"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100500386"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100501561"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100507690"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100547484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550186"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100550401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551359"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100551645"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552014"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100552370"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100564168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100565605"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100566057"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100624882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700626"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100700750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100706477"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708505"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709416"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100710221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100715996"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716003"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716194"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716197"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100716357"}}] -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q1000247 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000754 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100144455 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100144534 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100144680 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144747 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100145678 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100145777 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100145971 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100146260 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100146844 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100147501 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100151385 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100152629 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100152630 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100152930 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100153068 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100153102 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100153189 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100153982 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q100153990 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100154035 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100154202 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100154295 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100154441 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100154951 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100155200 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100155250 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100155318 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100155778 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100156203 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100156231 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100156248 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100195598 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100195938 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100196247 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100196594 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100196940 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100197315 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100197689 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100198447 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100198817 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100199144 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100199473 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100199830 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100200238 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100217115 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q100230388 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100230390 -2023-10-27 13:54:30.876  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q100230938 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100233380 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100249778 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100250595 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100251109 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100251215 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100251224 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100251256 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100251329 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100251442 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100251673 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q100254362 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100255539 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100256400 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q1002567 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100262375 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100268229 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100268935 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100268938 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100269136 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100272509 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100273231 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q1002735 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1002754 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100277382 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100279065 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q1002872 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q1002954 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100299026 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100299077 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100299083 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100299090 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100299217 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100299298 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100299313 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100299380 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100299388 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100299406 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100299417 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100299423 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100299587 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100299863 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100299947 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100299953 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100299958 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100299966 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100299982 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100300045 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100300049 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100300054 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100300060 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100300065 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100300071 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100300099 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100300103 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100300109 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100300148 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100300177 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100300191 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100300199 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100301121 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100301129 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100301278 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100301339 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100301356 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100301385 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100301399 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100301408 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100301414 -2023-10-27 13:54:30.877  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100301425 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100301742 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100301758 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100301991 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100302005 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100302015 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100302021 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100302029 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100302036 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100302043 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100302048 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100302053 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100302058 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100302064 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100302070 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100302086 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100302101 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100302113 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100302133 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q100302160 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q100302176 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q100302194 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q100302207 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q100302219 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q100302225 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q100302231 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q100302236 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q100302241 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q100302246 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q100302252 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q100302259 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q100302265 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q100302270 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q100302276 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q100302292 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q100302308 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q100302322 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q100302340 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q100302363 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q100302379 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q100302778 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q100302801 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q100302816 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q100302830 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q100302888 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q100302893 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q100302899 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q100302904 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q100302909 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q100302920 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q100302935 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q100302948 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q100302963 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q100303010 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q100303023 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q100303066 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q100303077 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q100303086 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q100303091 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q100303097 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q100303102 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q100303106 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q100303110 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q100303116 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q100303122 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q100303129 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q100303141 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q100303158 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q100303338 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q100303344 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q100303350 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q100303356 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q100303361 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q100303366 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q100303379 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q100303396 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q100303410 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q100303425 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q100303453 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q100303473 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q100303516 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q100303533 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q100303539 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q100303544 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q100303788 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q100303995 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q100304381 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q100304387 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q100304392 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q100304397 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q100304404 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q100304409 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q100304414 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q100304420 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q100304426 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q100304431 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q100304437 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q100305144 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q100305161 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q100305174 -2023-10-27 13:54:30.878  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q100305189 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q100305344 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q100305360 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q100305416 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q100305750 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q100305773 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q100305982 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q100306100 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q100306306 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q100306498 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q100306517 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q100306524 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q100306529 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q100306627 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q100306725 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q100306866 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q100307210 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q100307697 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q100307712 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q100307728 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q100307748 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q100307770 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q100307789 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q100307804 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q100307854 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q100307865 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q100307876 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q100307883 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q100308100 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q100308125 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q100308558 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q100308806 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q100308823 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q100309092 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q100309158 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q100309235 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q100309261 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q100309289 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q100309314 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q100309326 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q100309339 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q100309353 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q100309359 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q100309363 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q100309369 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q100309376 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q100309382 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q100309387 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q100309395 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q100309429 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q100309455 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q100309480 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q100309508 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q100309541 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q100309559 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q100309572 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q100309587 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q100309615 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q100309631 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q100309638 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q100309654 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q100309689 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q100309700 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q100309746 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q100309768 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q100309824 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q100309837 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q100309853 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q100310240 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q100310255 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q100310285 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q100310292 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q100310304 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q100310318 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q100310324 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q100310335 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q100310622 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q100310628 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q100310640 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q100310664 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q100310687 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q100310702 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q100310717 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q100310735 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q100310750 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q100310762 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q100310769 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q100310776 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q100310802 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q100310809 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q100310936 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q100310950 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q100310969 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q100310977 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q100310991 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q100311004 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q100311010 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q100311021 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q100311038 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q100311049 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q100311076 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q100311092 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q100311106 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q100311117 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q100311123 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q100311128 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q100311134 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q100311140 -2023-10-27 13:54:30.879  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q100311153 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q100311166 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q100311184 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q100311190 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q100311195 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q100311209 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q100311224 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q100311240 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q100311283 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q100311483 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q100311536 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q100311665 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q100311953 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q100312032 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q100312037 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q100312050 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q100312056 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q100312062 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q100312069 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q100312080 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q100312086 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q100312092 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q100312097 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q100312110 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q100312127 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q100312142 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q100312154 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q100312165 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q100312180 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q100312202 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q100312214 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q100312221 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q100312227 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q100312234 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q100312239 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q100312244 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q100312250 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q100312257 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q100312264 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q100312272 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q100312278 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q100312305 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q100312320 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q100312336 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q100312353 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q100312366 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q100312377 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q100312383 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q100312389 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q100312396 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q100312402 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q100312844 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q100312860 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q100312963 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q100312973 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q100312995 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q100313083 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q100313095 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q100313182 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q100313193 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q100313206 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q100313221 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q100313232 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q100313237 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q100313244 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q100313250 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q100313256 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q100313261 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q100313267 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q100313272 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q100313279 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q100313285 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q100313292 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q100313298 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q100313347 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q100313363 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q100313380 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q100313393 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q100313408 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q100313412 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q100313417 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q100313424 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q100313431 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q100313435 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q100313442 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q100313449 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q100313458 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q100313466 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q100313472 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q100313478 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q100313486 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q100313491 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q100313499 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q100313516 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q100313530 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q100313544 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q100313555 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q100313569 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q100313581 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q100313586 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q100313591 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q100313597 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q100313603 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q100313608 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q100313613 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q100313615 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q100313620 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q100313625 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q100313656 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q100313905 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q100313911 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q100313917 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q100313928 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q100313941 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q100313948 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q100313954 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q100313959 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q100313970 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q100313977 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q100314172 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q100314427 -2023-10-27 13:54:30.880  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q100315180 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q100315765 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q100315775 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q100315781 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q100315787 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q100315799 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q100315807 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q100315813 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q100315819 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q100315830 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q100315862 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q100316001 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q100316008 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q100316015 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q100316020 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q100316027 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q100316030 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q100316032 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q100316044 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q100316050 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q100316063 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q100316069 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q100316076 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q100316081 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q100316087 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q100316094 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q100316100 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q100316999 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q100317042 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q100317068 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q100317247 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q100318807 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q100320054 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q100320076 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q100324295 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q100326023 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q100326425 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q100327037 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q100328577 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q100328864 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q100328872 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q100328906 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q100328918 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q100328935 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q100328944 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q100328946 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q100328947 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q100328948 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q100328953 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q100328954 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q100328971 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q100328974 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q100329092 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q100329093 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q100329107 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q100329734 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q100329735 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q100329737 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q100329739 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q100329740 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q100329741 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q100329743 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q100329745 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q100329746 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q100329749 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q100329750 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q100330235 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q100330265 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q100330279 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q100330299 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q100330300 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q100330303 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q100330310 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q100330311 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q100330313 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q100330314 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q100330315 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q100330317 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q100330320 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q100330321 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q100330323 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q100330324 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q100330325 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q100330327 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q100330328 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q100330329 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q100330334 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q100330339 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q100330346 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q100330348 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q100330363 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q100330364 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q100330371 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q100330373 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q100330374 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q100330375 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q100330376 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q100330377 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q100330379 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q100330380 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q100330381 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q100330382 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q100330383 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q100330384 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q100330385 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q100330387 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q100330389 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q100330390 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q100330391 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q100330392 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q100330393 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q100330394 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q100330395 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q100330397 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q100330399 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q100330400 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q100330402 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q100330404 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q100330405 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q100330406 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q100330412 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q100330414 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q100330417 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q100330418 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q100330419 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q100330420 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q100330421 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q100330422 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q100330431 -2023-10-27 13:54:30.881  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q100330435 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q100330508 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q100330509 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q100330510 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q100330511 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q100330512 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q100330516 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q100330648 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q100330652 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q100330656 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q100330661 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q100330665 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q100330669 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q100330673 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q100330675 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q100330679 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q100330688 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q100330694 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q100330698 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q100330700 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q100330701 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q100330705 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q100330706 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q100330707 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q100330708 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q100330710 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q100330714 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q100330719 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q100330723 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q100330724 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q100330727 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q100330729 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q100330734 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q100330742 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q100330748 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q100330749 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q100330753 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q100330756 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q100330766 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q100330771 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q100330775 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q100330785 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q100330788 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q100330791 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q100330792 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q100330793 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q100330798 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q100330811 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q100330821 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q100330824 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q100330826 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q100330829 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q100330831 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q100330834 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q100330835 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q100330836 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q100330837 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q100330838 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q100330840 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q100330844 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q100330847 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q100330851 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q100330854 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q100330857 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q100330860 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q100330861 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q100330865 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q100330866 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q100330870 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q100330874 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q100330876 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q100330886 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q100330915 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q100330916 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q100330917 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q100330918 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q100330919 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q100330920 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q100330921 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q100330922 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q100330928 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q100330963 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q100330982 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q100330989 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q100330998 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q100331031 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q100334054 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q100336530 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q100337757 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q100337780 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q100337811 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q100337852 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q100337866 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q100337879 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q100337892 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q100338157 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q100338973 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q100339047 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q100339071 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q100339124 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q100339159 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q100339167 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q100339210 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q100339218 -2023-10-27 13:54:30.882  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q100339228 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q100339236 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q100339243 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q100339265 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q100339272 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q100339284 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q100339292 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q100339299 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q100339306 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q100339313 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q100339351 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q100339360 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q100339366 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q100339374 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q100339383 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q100339392 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q100339399 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q100339407 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q100339413 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q100339420 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q100339428 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q100339441 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q100339453 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q100339462 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q100339469 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q100339477 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q100339483 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q100339490 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q100339498 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q100339509 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q100339516 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q100339525 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q100339533 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q100339542 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q100339570 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q100339578 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q100339607 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q100339616 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q100339624 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q100339634 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q100339641 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q100339647 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q100339654 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q100339840 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q100339841 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q100339996 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q100340191 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q100340192 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q100348444 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q100348445 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q100348446 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q100348447 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q100348448 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q100348449 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q100348450 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q100348451 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q100348453 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q100348455 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q100348521 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q100348522 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q100348523 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q100348524 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q100348526 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q100348528 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q100348530 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q100348531 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q100348532 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q100348539 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q100348549 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q100348558 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q100348567 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q100348577 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q100348584 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q100348586 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q100348588 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q100348589 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q100348591 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q100348593 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q100348594 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q100348597 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q100348601 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q100348602 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q100348603 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q100348604 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q100348605 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q100348607 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q100348608 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q100348609 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q100348610 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q100348612 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q100348614 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q100348617 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q100348618 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q100348619 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q100348621 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q100348622 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q100348624 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q100348627 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q100348628 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q100348721 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q100348727 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q100348728 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q100348732 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q100348733 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q100348735 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q100348741 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q100348757 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q100348761 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q100348764 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q100348765 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q100348768 -2023-10-27 13:54:30.883  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q100348770 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q100348779 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q100348780 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q100350655 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q100350657 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q100350659 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q100350664 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q100350666 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q100350670 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q100350673 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q100351325 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q100351628 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q100352354 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q100352368 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q100352377 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q100352384 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q100352392 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q100352402 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q100352413 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q100352422 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q100352433 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q100352443 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q100352453 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q100352463 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q100352470 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q100352487 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q100352498 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q100352506 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q100352517 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q100352527 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q100352537 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q100352551 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q100352563 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q100352578 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q100352592 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q100352606 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q100352664 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q100352675 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q100352682 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q100352702 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q100352914 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q100353194 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q100353207 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q100353219 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q100353230 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q100353330 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q100353371 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q100353392 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q100353401 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q100353407 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q100353414 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q100353422 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q100353431 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q100353437 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q100353456 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q100353463 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q100353469 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q100353476 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q100353487 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q100353502 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q100353517 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q100353535 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q100353546 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q100353558 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q100353562 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q100353564 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q100353565 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q100353570 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q100353571 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q100353574 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q100353576 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q100353578 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q100353579 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q100353580 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q100353582 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q100353583 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q100353594 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q100353617 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q100353641 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q100353642 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q100353643 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q100353646 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q100353651 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q100353652 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q100353654 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q100353656 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q100353660 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q100353968 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q100354043 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q100354045 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q100354423 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q100354947 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q100354956 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q100355013 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q100355141 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q100355149 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q100355216 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q100355279 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q100355287 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q100355304 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q100355485 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q100355495 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q100355511 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q100355809 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q100355818 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q100355880 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q100355950 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q100355968 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q100355976 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q100356058 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q100357497 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q100357511 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q100359368 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q100359370 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q100359441 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q100359499 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q100359508 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q100359515 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q100359933 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q100359943 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q100359953 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q100359964 -2023-10-27 13:54:30.884  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q100359973 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q100359983 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q100359993 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q100360003 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q100360012 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q100360024 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q100360032 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q100360042 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q100360054 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q100360065 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q100360074 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q100360084 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q100361805 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q100361980 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q100362504 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q100362514 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q100362517 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q100363225 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q100364543 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q100364546 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q100364762 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q100364763 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q100364766 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q100364768 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q100374668 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q100374735 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q100375062 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q100376019 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q100377532 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q100391149 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q100392179 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q100416944 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q100417179 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q100417231 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q100417283 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q100417338 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q100418335 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q100424745 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q100431458 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q100431555 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q100432345 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q100436796 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q100437195 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q100448532 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q100453142 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q100479486 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q100489695 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q100500386 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q100501561 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q100507690 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q100547484 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q100550094 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q100550186 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q100550401 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q100551359 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q100551645 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q100552014 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q100552370 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q1005582 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q100564168 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q100565605 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q100566057 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q100588404 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q100624882 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q100700466 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q100700585 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q100700626 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q100700704 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q100700750 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q100706477 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q100708447 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q100708484 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q100708505 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q100708629 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q100709404 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q100709416 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q100709466 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q100710221 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q100715995 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q100715996 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q100716003 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q100716094 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q100716194 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q100716197 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q100716203 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q100716212 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q100716357 -2023-10-27 13:54:30.885  INFO 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources -2023-10-27 13:54:30.885 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144680\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144747\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145678\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100145971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100147501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100151385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152630\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100152930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100155778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195598\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100195938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100196940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100197689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100198817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100199830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200238\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100217115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100249778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100250595\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100254362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100262375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268229\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268938\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100269136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100273231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100279065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299090\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299217\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299388\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100299982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300099\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300177\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100300199\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301758\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100301991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302070\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302160\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302241\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302252\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302259\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302276\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302340\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302904\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100302963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303077\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303102\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303116\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303122\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303361\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100303995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304409\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304426\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100304437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305174\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305189\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305344\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100305982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307789\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307804\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100307883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308125\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100308823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309158\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309326\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309480\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309559\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309572\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309587\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309631\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309638\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100309853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310255\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310640\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310687\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310776\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100310991\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311010\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311021\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311123\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311128\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311153\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311166\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311184\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311209\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100311953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312080\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312097\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312110\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312127\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312154\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312202\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312214\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312239\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312278\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312353\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312396\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100312995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313095\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313182\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313244\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313256\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313261\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313267\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313298\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313478\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313544\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313615\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313620\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100313977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314172\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100314427\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100315862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316001\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316015\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316020\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316063\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316081\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316100\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100316999\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100317247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100318807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100320076\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100324295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326023\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100326425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100327037\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328935\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328946\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100328974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329092\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329740\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329743\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100329750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330235\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330300\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330311\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330314\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330320\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330321\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330334\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330339\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330346\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330348\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330363\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330373\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330379\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330380\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330381\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330387\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330389\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330390\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330391\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330393\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330405\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330406\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330412\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330417\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330435\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330648\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330688\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330723\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330771\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330788\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330824\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330836\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330918\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100330998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100331031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100334054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337852\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337879\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100337892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100338973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339159\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339167\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339210\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339236\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339243\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339265\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339272\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339284\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339292\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339313\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339360\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339399\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339420\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339490\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339634\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100339996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340191\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100340192\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348448\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348451\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348588\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348589\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348591\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348593\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348597\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348602\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348607\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348608\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348610\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348614\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348618\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348619\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348624\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348741\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348757\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348764\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348765\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100348780\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350659\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351325\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100351628\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352402\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352453\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352498\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352506\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352563\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352592\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352675\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352682\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100352914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353230\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353371\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353422\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353437\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353487\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353502\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353535\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353558\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353562\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353564\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353565\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353578\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353580\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353594\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353617\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353642\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353646\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353651\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353656\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100353968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100354956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355279\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355287\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355485\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355968\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100355976\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100356058\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100357511\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359368\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359499\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100359993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360065\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100360084\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100361980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362504\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100362517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363225\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364546\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364762\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100364768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100374735\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375062\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100376019\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100391149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100392179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417179\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417231\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417283\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100417338\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100418335\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100424745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431458\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100431555\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100432345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100436796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437195\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100448532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100453142\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100479486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100489695\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100500386\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100501561\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100507690\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100547484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550186\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100550401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551359\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100551645\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552014\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100552370\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100564168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100565605\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100566057\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100624882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700626\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100700750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100706477\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708505\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709416\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100710221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100715996\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716003\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716194\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716197\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100716357\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}] -2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08} -2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000 -2023-10-27 13:54:30.888 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.08 -2023-10-27 13:54:30.910 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:30.916  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 13:54:30.916 DEBUG 9655 --- [o-11022-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ; rdf:_3 ; rdf:_4 ; rdf:_5 ; rdf:_6 ; rdf:_7 ; rdf:_8 ; rdf:_9 ; rdf:_10 ; rdf:_11 ; rdf:_12 ; rdf:_13 ; rdf:_14 ; rdf:_15 ; rdf:_16 ; rdf:_17 ; rdf:_18 ; rdf:_19 ; rdf:_20 ; rdf:_21 ; rdf:_22 ; rdf:_23 ; rdf:_24 ; rdf:_25 ; rdf:_26 ; rdf:_27 ; rdf:_28 ; rdf:_29 ; rdf:_30 ; rdf:_31 ; rdf:_32 ; rdf:_33 ; rdf:_34 ; rdf:_35 ; rdf:_36 ; rdf:_37 ; rdf:_38 ; rdf:_39 ; rdf:_40 ; rdf:_41 ; rdf:_42 ; rdf:_43 ; rdf:_44 ; rdf:_45 ; rdf:_46 ; rdf:_47 ; rdf:_48 ; rdf:_49 ; rdf:_50 ; rdf:_51 ; rdf:_52 ; rdf:_53 ; rdf:_54 ; rdf:_55 ; rdf:_56 ; rdf:_57 ; rdf:_58 ; rdf:_59 ; rdf:_60 ; rdf:_61 ; rdf:_62 ; rdf:_63 ; rdf:_64 ; rdf:_65 ; rdf:_66 ; rdf:_67 ; rdf:_68 ; rdf:_69 ; rdf:_70 ; rdf:_71 ; rdf:_72 ; rdf:_73 ; rdf:_74 ; rdf:_75 ; rdf:_76 ; rdf:_77 ; rdf:_78 ; rdf:_79 ; rdf:_80 ; rdf:_81 ; rdf:_82 ; rdf:_83 ; rdf:_84 ; rdf:_85 ; rdf:_86 ; rdf:_87 ; rdf:_88 ; rdf:_89 ; rdf:_90 ; rdf:_91 ; rdf:_92 ; rdf:_93 ; rdf:_94 ; rdf:_95 ; rdf:_96 ; rdf:_97 ; rdf:_98 ; rdf:_99 ; rdf:_100 ; rdf:_101 ; rdf:_102 ; rdf:_103 ; rdf:_104 ; rdf:_105 ; rdf:_106 ; rdf:_107 ; rdf:_108 ; rdf:_109 ; rdf:_110 ; rdf:_111 ; rdf:_112 ; rdf:_113 ; rdf:_114 ; rdf:_115 ; rdf:_116 ; rdf:_117 ; rdf:_118 ; rdf:_119 ; rdf:_120 ; rdf:_121 ; rdf:_122 ; rdf:_123 ; rdf:_124 ; rdf:_125 ; rdf:_126 ; rdf:_127 ; rdf:_128 ; rdf:_129 ; rdf:_130 ; rdf:_131 ; rdf:_132 ; rdf:_133 ; rdf:_134 ; rdf:_135 ; rdf:_136 ; rdf:_137 ; rdf:_138 ; rdf:_139 ; rdf:_140 ; rdf:_141 ; rdf:_142 ; rdf:_143 ; rdf:_144 ; rdf:_145 ; rdf:_146 ; rdf:_147 ; rdf:_148 ; rdf:_149 ; rdf:_150 ; rdf:_151 ; rdf:_152 ; rdf:_153 ; rdf:_154 ; rdf:_155 ; rdf:_156 ; rdf:_157 ; rdf:_158 ; rdf:_159 ; rdf:_160 ; rdf:_161 ; rdf:_162 ; rdf:_163 ; rdf:_164 ; rdf:_165 ; rdf:_166 ; rdf:_167 ; rdf:_168 ; rdf:_169 ; rdf:_170 ; rdf:_171 ; rdf:_172 ; rdf:_173 ; rdf:_174 ; rdf:_175 ; rdf:_176 ; rdf:_177 ; rdf:_178 ; rdf:_179 ; rdf:_180 ; rdf:_181 ; rdf:_182 ; rdf:_183 ; rdf:_184 ; rdf:_185 ; rdf:_186 ; rdf:_187 ; rdf:_188 ; rdf:_189 ; rdf:_190 ; rdf:_191 ; rdf:_192 ; rdf:_193 ; rdf:_194 ; rdf:_195 ; rdf:_196 ; rdf:_197 ; rdf:_198 ; rdf:_199 ; rdf:_200 ; rdf:_201 ; rdf:_202 ; rdf:_203 ; rdf:_204 ; rdf:_205 ; rdf:_206 ; rdf:_207 ; rdf:_208 ; rdf:_209 ; rdf:_210 ; rdf:_211 ; rdf:_212 ; rdf:_213 ; rdf:_214 ; rdf:_215 ; rdf:_216 ; rdf:_217 ; rdf:_218 ; rdf:_219 ; rdf:_220 ; rdf:_221 ; rdf:_222 ; rdf:_223 ; rdf:_224 ; rdf:_225 ; rdf:_226 ; rdf:_227 ; rdf:_228 ; rdf:_229 ; rdf:_230 ; rdf:_231 ; rdf:_232 ; rdf:_233 ; rdf:_234 ; rdf:_235 ; rdf:_236 ; rdf:_237 ; rdf:_238 ; rdf:_239 ; rdf:_240 ; rdf:_241 ; rdf:_242 ; rdf:_243 ; rdf:_244 ; rdf:_245 ; rdf:_246 ; rdf:_247 ; rdf:_248 ; rdf:_249 ; rdf:_250 ; rdf:_251 ; rdf:_252 ; rdf:_253 ; rdf:_254 ; rdf:_255 ; rdf:_256 ; rdf:_257 ; rdf:_258 ; rdf:_259 ; rdf:_260 ; rdf:_261 ; rdf:_262 ; rdf:_263 ; rdf:_264 ; rdf:_265 ; rdf:_266 ; rdf:_267 ; rdf:_268 ; rdf:_269 ; rdf:_270 ; rdf:_271 ; rdf:_272 ; rdf:_273 ; rdf:_274 ; rdf:_275 ; rdf:_276 ; rdf:_277 ; rdf:_278 ; rdf:_279 ; rdf:_280 ; rdf:_281 ; rdf:_282 ; rdf:_283 ; rdf:_284 ; rdf:_285 ; rdf:_286 ; rdf:_287 ; rdf:_288 ; rdf:_289 ; rdf:_290 ; rdf:_291 ; rdf:_292 ; rdf:_293 ; rdf:_294 ; rdf:_295 ; rdf:_296 ; rdf:_297 ; rdf:_298 ; rdf:_299 ; rdf:_300 ; rdf:_301 ; rdf:_302 ; rdf:_303 ; rdf:_304 ; rdf:_305 ; rdf:_306 ; rdf:_307 ; rdf:_308 ; rdf:_309 ; rdf:_310 ; rdf:_311 ; rdf:_312 ; rdf:_313 ; rdf:_314 ; rdf:_315 ; rdf:_316 ; rdf:_317 ; rdf:_318 ; rdf:_319 ; rdf:_320 ; rdf:_321 ; rdf:_322 ; rdf:_323 ; rdf:_324 ; rdf:_325 ; rdf:_326 ; rdf:_327 ; rdf:_328 ; rdf:_329 ; rdf:_330 ; rdf:_331 ; rdf:_332 ; rdf:_333 ; rdf:_334 ; rdf:_335 ; rdf:_336 ; rdf:_337 ; rdf:_338 ; rdf:_339 ; rdf:_340 ; rdf:_341 ; rdf:_342 ; rdf:_343 ; rdf:_344 ; rdf:_345 ; rdf:_346 ; rdf:_347 ; rdf:_348 ; rdf:_349 ; rdf:_350 ; rdf:_351 ; rdf:_352 ; rdf:_353 ; rdf:_354 ; rdf:_355 ; rdf:_356 ; rdf:_357 ; rdf:_358 ; rdf:_359 ; rdf:_360 ; rdf:_361 ; rdf:_362 ; rdf:_363 ; rdf:_364 ; rdf:_365 ; rdf:_366 ; rdf:_367 ; rdf:_368 ; rdf:_369 ; rdf:_370 ; rdf:_371 ; rdf:_372 ; rdf:_373 ; rdf:_374 ; rdf:_375 ; rdf:_376 ; rdf:_377 ; rdf:_378 ; rdf:_379 ; rdf:_380 ; rdf:_381 ; rdf:_382 ; rdf:_383 ; rdf:_384 ; rdf:_385 ; rdf:_386 ; rdf:_387 ; rdf:_388 ; rdf:_389 ; rdf:_390 ; rdf:_391 ; rdf:_392 ; rdf:_393 ; rdf:_394 ; rdf:_395 ; rdf:_396 ; rdf:_397 ; rdf:_398 ; rdf:_399 ; rdf:_400 ; rdf:_401 ; rdf:_402 ; rdf:_403 ; rdf:_404 ; rdf:_405 ; rdf:_406 ; rdf:_407 ; rdf:_408 ; rdf:_409 ; rdf:_410 ; rdf:_411 ; rdf:_412 ; rdf:_413 ; rdf:_414 ; rdf:_415 ; rdf:_416 ; rdf:_417 ; rdf:_418 ; rdf:_419 ; rdf:_420 ; rdf:_421 ; rdf:_422 ; rdf:_423 ; rdf:_424 ; rdf:_425 ; rdf:_426 ; rdf:_427 ; rdf:_428 ; rdf:_429 ; rdf:_430 ; rdf:_431 ; rdf:_432 ; rdf:_433 ; rdf:_434 ; rdf:_435 ; rdf:_436 ; rdf:_437 ; rdf:_438 ; rdf:_439 ; rdf:_440 ; rdf:_441 ; rdf:_442 ; rdf:_443 ; rdf:_444 ; rdf:_445 ; rdf:_446 ; rdf:_447 ; rdf:_448 ; rdf:_449 ; rdf:_450 ; rdf:_451 ; rdf:_452 ; rdf:_453 ; rdf:_454 ; rdf:_455 ; rdf:_456 ; rdf:_457 ; rdf:_458 ; rdf:_459 ; rdf:_460 ; rdf:_461 ; rdf:_462 ; rdf:_463 ; rdf:_464 ; rdf:_465 ; rdf:_466 ; rdf:_467 ; rdf:_468 ; rdf:_469 ; rdf:_470 ; rdf:_471 ; rdf:_472 ; rdf:_473 ; rdf:_474 ; rdf:_475 ; rdf:_476 ; rdf:_477 ; rdf:_478 ; rdf:_479 ; rdf:_480 ; rdf:_481 ; rdf:_482 ; rdf:_483 ; rdf:_484 ; rdf:_485 ; rdf:_486 ; rdf:_487 ; rdf:_488 ; rdf:_489 ; rdf:_490 ; rdf:_491 ; rdf:_492 ; rdf:_493 ; rdf:_494 ; rdf:_495 ; rdf:_496 ; rdf:_497 ; rdf:_498 ; rdf:_499 ; rdf:_500 ; rdf:_501 ; rdf:_502 ; rdf:_503 ; rdf:_504 ; rdf:_505 ; rdf:_506 ; rdf:_507 ; rdf:_508 ; rdf:_509 ; rdf:_510 ; rdf:_511 ; rdf:_512 ; rdf:_513 ; rdf:_514 ; rdf:_515 ; rdf:_516 ; rdf:_517 ; rdf:_518 ; rdf:_519 ; rdf:_520 ; rdf:_521 ; rdf:_522 ; rdf:_523 ; rdf:_524 ; rdf:_525 ; rdf:_526 ; rdf:_527 ; rdf:_528 ; rdf:_529 ; rdf:_530 ; rdf:_531 ; rdf:_532 ; rdf:_533 ; rdf:_534 ; rdf:_535 ; rdf:_536 ; rdf:_537 ; rdf:_538 ; rdf:_539 ; rdf:_540 ; rdf:_541 ; rdf:_542 ; rdf:_543 ; rdf:_544 ; rdf:_545 ; rdf:_546 ; rdf:_547 ; rdf:_548 ; rdf:_549 ; rdf:_550 ; rdf:_551 ; rdf:_552 ; rdf:_553 ; rdf:_554 ; rdf:_555 ; rdf:_556 ; rdf:_557 ; rdf:_558 ; rdf:_559 ; rdf:_560 ; rdf:_561 ; rdf:_562 ; rdf:_563 ; rdf:_564 ; rdf:_565 ; rdf:_566 ; rdf:_567 ; rdf:_568 ; rdf:_569 ; rdf:_570 ; rdf:_571 ; rdf:_572 ; rdf:_573 ; rdf:_574 ; rdf:_575 ; rdf:_576 ; rdf:_577 ; rdf:_578 ; rdf:_579 ; rdf:_580 ; rdf:_581 ; rdf:_582 ; rdf:_583 ; rdf:_584 ; rdf:_585 ; rdf:_586 ; rdf:_587 ; rdf:_588 ; rdf:_589 ; rdf:_590 ; rdf:_591 ; rdf:_592 ; rdf:_593 ; rdf:_594 ; rdf:_595 ; rdf:_596 ; rdf:_597 ; rdf:_598 ; rdf:_599 ; rdf:_600 ; rdf:_601 ; rdf:_602 ; rdf:_603 ; rdf:_604 ; rdf:_605 ; rdf:_606 ; rdf:_607 ; rdf:_608 ; rdf:_609 ; rdf:_610 ; rdf:_611 ; rdf:_612 ; rdf:_613 ; rdf:_614 ; rdf:_615 ; rdf:_616 ; rdf:_617 ; rdf:_618 ; rdf:_619 ; rdf:_620 ; rdf:_621 ; rdf:_622 ; rdf:_623 ; rdf:_624 ; rdf:_625 ; rdf:_626 ; rdf:_627 ; rdf:_628 ; rdf:_629 ; rdf:_630 ; rdf:_631 ; rdf:_632 ; rdf:_633 ; rdf:_634 ; rdf:_635 ; rdf:_636 ; rdf:_637 ; rdf:_638 ; rdf:_639 ; rdf:_640 ; rdf:_641 ; rdf:_642 ; rdf:_643 ; rdf:_644 ; rdf:_645 ; rdf:_646 ; rdf:_647 ; rdf:_648 ; rdf:_649 ; rdf:_650 ; rdf:_651 ; rdf:_652 ; rdf:_653 ; rdf:_654 ; rdf:_655 ; rdf:_656 ; rdf:_657 ; rdf:_658 ; rdf:_659 ; rdf:_660 ; rdf:_661 ; rdf:_662 ; rdf:_663 ; rdf:_664 ; rdf:_665 ; rdf:_666 ; rdf:_667 ; rdf:_668 ; rdf:_669 ; rdf:_670 ; rdf:_671 ; rdf:_672 ; rdf:_673 ; rdf:_674 ; rdf:_675 ; rdf:_676 ; rdf:_677 ; rdf:_678 ; rdf:_679 ; rdf:_680 ; rdf:_681 ; rdf:_682 ; rdf:_683 ; rdf:_684 ; rdf:_685 ; rdf:_686 ; rdf:_687 ; rdf:_688 ; rdf:_689 ; rdf:_690 ; rdf:_691 ; rdf:_692 ; rdf:_693 ; rdf:_694 ; rdf:_695 ; rdf:_696 ; rdf:_697 ; rdf:_698 ; rdf:_699 ; rdf:_700 ; rdf:_701 ; rdf:_702 ; rdf:_703 ; rdf:_704 ; rdf:_705 ; rdf:_706 ; rdf:_707 ; rdf:_708 ; rdf:_709 ; rdf:_710 ; rdf:_711 ; rdf:_712 ; rdf:_713 ; rdf:_714 ; rdf:_715 ; rdf:_716 ; rdf:_717 ; rdf:_718 ; rdf:_719 ; rdf:_720 ; rdf:_721 ; rdf:_722 ; rdf:_723 ; rdf:_724 ; rdf:_725 ; rdf:_726 ; rdf:_727 ; rdf:_728 ; rdf:_729 ; rdf:_730 ; rdf:_731 ; rdf:_732 ; rdf:_733 ; rdf:_734 ; rdf:_735 ; rdf:_736 ; rdf:_737 ; rdf:_738 ; rdf:_739 ; rdf:_740 ; rdf:_741 ; rdf:_742 ; rdf:_743 ; rdf:_744 ; rdf:_745 ; rdf:_746 ; rdf:_747 ; rdf:_748 ; rdf:_749 ; rdf:_750 ; rdf:_751 ; rdf:_752 ; rdf:_753 ; rdf:_754 ; rdf:_755 ; rdf:_756 ; rdf:_757 ; rdf:_758 ; rdf:_759 ; rdf:_760 ; rdf:_761 ; rdf:_762 ; rdf:_763 ; rdf:_764 ; rdf:_765 ; rdf:_766 ; rdf:_767 ; rdf:_768 ; rdf:_769 ; rdf:_770 ; rdf:_771 ; rdf:_772 ; rdf:_773 ; rdf:_774 ; rdf:_775 ; rdf:_776 ; rdf:_777 ; rdf:_778 ; rdf:_779 ; rdf:_780 ; rdf:_781 ; rdf:_782 ; rdf:_783 ; rdf:_784 ; rdf:_785 ; rdf:_786 ; rdf:_787 ; rdf:_788 ; rdf:_789 ; rdf:_790 ; rdf:_791 ; rdf:_792 ; rdf:_793 ; rdf:_794 ; rdf:_795 ; rdf:_796 ; rdf:_797 ; rdf:_798 ; rdf:_799 ; rdf:_800 ; rdf:_801 ; rdf:_802 ; rdf:_803 ; rdf:_804 ; rdf:_805 ; rdf:_806 ; rdf:_807 ; rdf:_808 ; rdf:_809 ; rdf:_810 ; rdf:_811 ; rdf:_812 ; rdf:_813 ; rdf:_814 ; rdf:_815 ; rdf:_816 ; rdf:_817 ; rdf:_818 ; rdf:_819 ; rdf:_820 ; rdf:_821 ; rdf:_822 ; rdf:_823 ; rdf:_824 ; rdf:_825 ; rdf:_826 ; rdf:_827 ; rdf:_828 ; rdf:_829 ; rdf:_830 ; rdf:_831 ; rdf:_832 ; rdf:_833 ; rdf:_834 ; rdf:_835 ; rdf:_836 ; rdf:_837 ; rdf:_838 ; rdf:_839 ; rdf:_840 ; rdf:_841 ; rdf:_842 ; rdf:_843 ; rdf:_844 ; rdf:_845 ; rdf:_846 ; rdf:_847 ; rdf:_848 ; rdf:_849 ; rdf:_850 ; rdf:_851 ; rdf:_852 ; rdf:_853 ; rdf:_854 ; rdf:_855 ; rdf:_856 ; rdf:_857 ; rdf:_858 ; rdf:_859 ; rdf:_860 ; rdf:_861 ; rdf:_862 ; rdf:_863 ; rdf:_864 ; rdf:_865 ; rdf:_866 ; rdf:_867 ; rdf:_868 ; rdf:_869 ; rdf:_870 ; rdf:_871 ; rdf:_872 ; rdf:_873 ; rdf:_874 ; rdf:_875 ; rdf:_876 ; rdf:_877 ; rdf:_878 ; rdf:_879 ; rdf:_880 ; rdf:_881 ; rdf:_882 ; rdf:_883 ; rdf:_884 ; rdf:_885 ; rdf:_886 ; rdf:_887 ; rdf:_888 ; rdf:_889 ; rdf:_890 ; rdf:_891 ; rdf:_892 ; rdf:_893 ; rdf:_894 ; rdf:_895 ; rdf:_896 ; rdf:_897 ; rdf:_898 ; rdf:_899 ; rdf:_900 ; rdf:_901 ; rdf:_902 ; rdf:_903 ; rdf:_904 ; rdf:_905 ; rdf:_906 ; rdf:_907 ; rdf:_908 ; rdf:_909 ; rdf:_910 ; rdf:_911 ; rdf:_912 ; rdf:_913 ; rdf:_914 ; rdf:_915 ; rdf:_916 ; rdf:_917 ; rdf:_918 ; rdf:_919 ; rdf:_920 ; rdf:_921 ; rdf:_922 ; rdf:_923 ; rdf:_924 ; rdf:_925 ; rdf:_926 ; rdf:_927 ; rdf:_928 ; rdf:_929 ; rdf:_930 ; rdf:_931 ; rdf:_932 ; rdf:_933 ; rdf:_934 ; rdf:_935 ; rdf:_936 ; rdf:_937 ; rdf:_938 ; rdf:_939 ; rdf:_940 ; rdf:_941 ; rdf:_942 ; rdf:_943 ; rdf:_944 ; rdf:_945 ; rdf:_946 ; rdf:_947 ; rdf:_948 ; rdf:_949 ; rdf:_950 ; rdf:_951 ; rdf:_952 ; rdf:_953 ; rdf:_954 ; rdf:_955 ; rdf:_956 ; rdf:_957 ; rdf:_958 ; rdf:_959 ; rdf:_960 ; rdf:_961 ; rdf:_962 ; rdf:_963 ; rdf:_964 ; rdf:_965 ; rdf:_966 ; rdf:_967 ; rdf:_968 ; rdf:_969 ; rdf:_970 ; rdf:_971 ; rdf:_972 ; rdf:_973 ; rdf:_974 ; rdf:_975 ; rdf:_976 ; rdf:_977 ; rdf:_978 ; rdf:_979 ; rdf:_980 ; rdf:_981 ; rdf:_982 ; rdf:_983 ; rdf:_984 ; rdf:_985 ; rdf:_986 ; rdf:_987 ; rdf:_988 ; rdf:_989 ; rdf:_990 ; rdf:_991 ; rdf:_992 ; rdf:_993 ; rdf:_994 ; rdf:_995 ; rdf:_996 ; rdf:_997 ; rdf:_998 ; rdf:_999 ; rdf:_1000 ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.08"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("http://dbpedia.org/resource/String_theory are the http://dbpedia.org/resource/German_name of http://dbpedia.org/resource/Outline_of_academic_disciplines containing “linguistik”?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1000247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1000754\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144680\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144747\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100145678\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100145777\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100145971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146260\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100147501\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100151385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100152629\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100152630\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100152930\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153102\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153189\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153990\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154035\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154202\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154295\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154951\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155200\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155318\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100155778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156203\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156248\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100195598\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100195938\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100196247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100196594\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100196940\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100197315\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100197689\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100198447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100198817\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100199144\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100199473\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100199830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100200238\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100217115\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230388\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230390\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230938\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100233380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100249778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100250595\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251215\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251224\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251256\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251442\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100254362\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100262375\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268229\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268935\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268938\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100269136\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100272509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100273231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002754\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100277382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100279065\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002872\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299026\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299077\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299083\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299090\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299217\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299298\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299313\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299388\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299406\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299417\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299587\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299863\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299958\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299966\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100299982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300045\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300049\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300060\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300065\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300071\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300099\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300103\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300148\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300177\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300191\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100300199\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301121\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301129\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301278\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301339\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301399\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301408\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301758\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100301991\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302005\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302015\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302021\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302036\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302048\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302053\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302058\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302064\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302070\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302101\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302113\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302133\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302160\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302176\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302194\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302207\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302219\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302225\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302236\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302241\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302246\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302252\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302259\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302265\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302270\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302276\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302308\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302322\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302340\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302379\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302801\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302816\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302893\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302899\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302904\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302909\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302935\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100302963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303010\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303023\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303066\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303077\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303091\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303097\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303102\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303110\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303116\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303122\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303129\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303141\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303158\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303338\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303344\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303350\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303361\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303379\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303396\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303410\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303473\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303533\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303544\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303788\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100303995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304381\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304387\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304409\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304420\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304426\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100304437\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305144\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305161\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305174\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305189\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305344\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305360\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305416\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305773\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100305982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306100\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306306\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306498\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306529\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306627\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306725\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307210\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307728\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307748\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307789\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307804\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307865\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307876\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100307883\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308100\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308125\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308558\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308806\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100308823\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309158\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309235\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309261\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309289\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309314\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309326\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309339\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309353\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309359\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309369\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309376\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309387\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309395\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309429\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309480\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309541\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309559\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309572\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309587\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309615\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309631\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309638\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309689\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309700\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309746\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309824\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100309853\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310240\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310255\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310304\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310318\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310324\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310335\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310622\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310628\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310640\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310687\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310702\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310717\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310762\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310769\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310776\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310802\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310809\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310936\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310950\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310969\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310977\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100310991\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311004\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311010\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311021\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311038\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311049\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311076\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311117\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311123\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311128\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311134\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311140\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311153\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311166\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311184\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311190\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311195\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311209\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311224\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311240\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311283\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311483\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100311953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312037\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312050\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312056\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312062\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312069\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312080\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312097\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312110\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312127\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312142\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312154\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312165\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312180\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312202\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312214\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312227\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312234\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312239\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312244\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312264\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312272\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312278\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312305\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312320\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312336\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312353\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312389\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312396\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312402\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312860\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100312995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313083\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313095\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313182\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313193\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313206\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313232\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313237\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313244\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313256\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313261\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313267\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313272\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313279\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313298\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313347\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313393\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313408\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313412\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313417\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313424\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313435\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313442\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313458\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313472\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313478\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313486\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313491\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313499\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313544\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313555\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313569\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313581\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313586\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313591\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313597\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313603\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313608\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313613\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313615\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313620\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313625\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313656\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313905\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313911\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313941\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313959\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313970\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100313977\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100314172\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100314427\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315180\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315765\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315775\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315781\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315787\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315799\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315819\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100315862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316001\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316008\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316015\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316020\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316027\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316030\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316044\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316050\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316063\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316069\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316076\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316081\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316087\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316100\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100316999\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100317042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100317068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100317247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100318807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100320054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100320076\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100324295\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100326023\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100326425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100327037\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328864\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328872\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328906\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328918\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328935\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328946\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100328974\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329092\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329093\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329107\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329737\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329739\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329740\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329741\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329743\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329746\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100329750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330235\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330265\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330279\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330299\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330300\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330303\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330310\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330311\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330313\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330314\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330315\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330317\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330320\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330321\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330323\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330324\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330325\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330327\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330328\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330334\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330339\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330346\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330348\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330363\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330364\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330371\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330373\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330375\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330376\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330379\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330380\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330381\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330384\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330387\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330389\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330390\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330391\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330393\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330394\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330395\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330399\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330402\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330405\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330406\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330412\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330417\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330418\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330419\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330420\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330421\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330422\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330435\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330510\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330511\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330512\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330648\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330656\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330661\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330669\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330675\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330679\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330688\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330694\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330700\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330705\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330706\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330707\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330714\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330719\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330723\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330724\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330729\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330748\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330766\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330771\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330775\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330785\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330788\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330791\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330793\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330798\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330821\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330824\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330829\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330831\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330834\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330835\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330836\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330838\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330847\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330851\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330860\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330861\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330865\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330870\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330876\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330886\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330915\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330916\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330918\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330921\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330922\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330989\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100330998\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100331031\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100334054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100336530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337757\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337780\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337852\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337879\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100337892\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100338157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100338973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339047\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339071\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339124\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339159\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339167\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339210\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339218\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339228\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339236\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339243\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339265\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339272\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339284\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339292\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339299\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339306\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339313\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339351\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339360\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339399\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339420\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339428\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339462\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339469\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339477\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339483\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339490\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339498\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339525\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339533\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339542\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339578\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339607\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339616\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339624\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339634\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339641\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339647\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339841\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100339996\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100340191\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100340192\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348444\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348445\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348448\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348450\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348451\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348522\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348523\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348528\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348531\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348549\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348558\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348584\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348586\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348588\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348589\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348591\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348593\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348594\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348597\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348602\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348603\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348604\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348605\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348607\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348608\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348609\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348610\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348612\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348614\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348617\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348618\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348619\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348621\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348622\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348624\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348627\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348628\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348721\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348728\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348732\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348741\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348757\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348761\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348764\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348765\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348779\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100348780\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350655\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350657\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350659\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350666\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350670\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100351325\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100351628\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352354\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352368\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352384\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352402\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352422\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352433\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352443\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352453\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352470\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352487\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352498\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352506\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352527\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352563\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352578\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352592\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352606\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352675\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352682\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352702\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100352914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353194\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353207\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353219\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353230\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353330\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353371\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353422\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353437\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353456\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353469\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353476\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353487\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353502\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353535\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353546\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353558\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353562\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353564\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353565\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353571\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353574\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353576\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353578\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353579\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353580\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353582\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353583\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353594\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353617\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353641\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353642\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353643\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353646\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353651\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353656\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353660\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100353968\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354045\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100354956\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355013\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355141\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355149\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355216\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355279\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355287\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355304\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355485\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355495\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355511\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355809\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355818\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355880\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355950\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355968\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100355976\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100356058\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100357497\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100357511\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359368\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359370\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359499\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359515\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359933\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359943\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359964\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359983\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100359993\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360003\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360012\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360024\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360065\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360074\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100360084\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100361805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100361980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100362504\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100362514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100362517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100363225\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364546\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364762\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364763\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364766\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100364768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100374668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100374735\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100375062\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100376019\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100377532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100391149\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100392179\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100416944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417179\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417231\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417283\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100417338\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100418335\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100424745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100431458\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100431555\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100432345\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100436796\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100437195\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100448532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100453142\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100479486\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100489695\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100500386\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100501561\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100507690\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100547484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100550094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100550186\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100550401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100551359\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100551645\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100552014\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100552370\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1005582\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100564168\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100565605\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100566057\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100588404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100624882\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700585\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700626\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700704\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100700750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100706477\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708505\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708629\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709416\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100710221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100715995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100715996\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716003\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716194\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716197\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716203\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716212\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100716357\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000\",\"confidence\":0.08}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 13:54:31.802 DEBUG 9655 --- [o-11022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 3205 ms -2023-10-27 13:55:29.381  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:29.381  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:29.381  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"},"inGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f","outGraph":"urn:graph:877984f8-f896-470c-a826-556572fb489f"} -2023-10-27 13:55:29.382  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@71d4248b -2023-10-27 13:55:29.396  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@35aae2b9 -2023-10-27 13:55:29.397 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:55:29.399  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:29.400  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:55:29.408 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 -2023-10-27 13:55:29.408  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ff73818d-9278-4ec0-854f-48e5b0a26936 found in urn:graph:877984f8-f896-470c-a826-556572fb489f at http://localhost:8080/sparql -2023-10-27 13:55:29.413 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:29.413  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1dd024eb -2023-10-27 13:55:29.414 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:55:29.415  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:55:29.441  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(23,26) (score=null>=0.5) ignored=false -2023-10-27 13:55:29.441  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(30,47) (score=null>=0.5) ignored=false -2023-10-27 13:55:29.441  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(12,19) (score=null>=0.5) ignored=false -2023-10-27 13:55:29.453 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the website of NPR's “Tiny Desk Concert”? -2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (3 items) of getNamedEntitiesOfQuestion for question "What is the website of NPR's “Tiny Desk Concert”?". -2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/NPR at (23,26) with score null -2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Tiny_Desk_Concerts at (30,47) with score null -2023-10-27 13:55:29.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Уебсайт at (12,19) with score null -2023-10-27 13:55:29.465 ERROR 9655 --- [io-11022-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause - -java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:57:28.118  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:28.120  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:28.120  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:28.121  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@5e3a1078 -2023-10-27 13:57:28.154  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@16ff97d6 -2023-10-27 13:57:28.155 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:28.157  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:28.157  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:28.181 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:28.182  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb found in urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 at http://localhost:8080/sparql -2023-10-27 13:57:28.186 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? -2023-10-27 13:57:28.186  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4411b789 -2023-10-27 13:57:28.187 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:57:28.189  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:57:28.243  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(20,24) (score=null>=0.5) ignored=false -2023-10-27 13:57:28.244  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(12,19) (score=null>=0.5) ignored=false -2023-10-27 13:57:28.265 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the twitter name of Running Wild? -2023-10-27 13:57:28.265  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "What is the twitter name of Running Wild?". -2023-10-27 13:57:28.265  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Име at (20,24) with score null -2023-10-27 13:57:28.265  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Туитър at (12,19) with score null -2023-10-27 13:57:28.267 ERROR 9655 --- [io-11022-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause - -java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:45.798  INFO 9655 --- [io-11022-exec-3] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@3144cdff -2023-10-27 13:57:45.820  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f8335a7 -2023-10-27 13:57:45.820 DEBUG 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:57:45.821  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:45.821  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:57:45.827 DEBUG 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:45.827  INFO 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 found in urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b at http://localhost:8080/sparql -2023-10-27 13:57:45.830 DEBUG 9655 --- [io-11022-exec-3] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many people died due to the Great Leap Forward according to the highest estimate? -2023-10-27 13:57:45.830  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3bbca68f -2023-10-27 13:57:45.830 DEBUG 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:57:45.832  INFO 9655 --- [io-11022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:57:45.854 ERROR 9655 --- [io-11022-exec-3] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Great_Leap_Forward"] with root cause - -org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Great_Leap_Forward" - at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:58:12.881  INFO 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:12.881  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:12.882  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"},"inGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6","outGraph":"urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6"} -2023-10-27 13:58:12.882  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@51c22386 -2023-10-27 13:58:12.889  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5f05d7ce -2023-10-27 13:58:12.889 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:58:12.890  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:12.890  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:58:12.897 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:12.897  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db found in urn:graph:905a363b-86dd-49fe-aa2c-c77f7c560ad6 at http://localhost:8080/sparql -2023-10-27 13:58:12.899 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:12.899  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5b3a48f6 -2023-10-27 13:58:12.899 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:58:12.900  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:58:12.924  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(0,3) (score=0.9794783>=0.5) ignored=false -2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(18,22) (score=0.5942743>=0.5) ignored=false -2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(23,29) (score=0.86473304>=0.5) ignored=false -2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(37,44) (score=1.0>=0.5) ignored=false -2023-10-27 13:58:12.925  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(51,60) (score=1.0>=0.5) ignored=false -2023-10-27 13:58:12.935 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:12.935  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (5 items) of getNamedEntitiesOfQuestion for question "Who is the oldest cast member of the Netflix show “Queer Eye” ?". -2023-10-27 13:58:12.935  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/The_Who at (0,3) with score 0.9794783 -2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Casting at (18,22) with score 0.5942743 -2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Member_of_parliament at (23,29) with score 0.86473304 -2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Netflix at (37,44) with score 1.0 -2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Queer_Eye at (51,60) with score 1.0 -2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'Queer Eye' at (51,60) results in: Who is the oldest cast member of the Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest cast member of the Netflix show “|, second:|” ?| -2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'Netflix' at (37,44) results in: Who is the oldest cast member of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest cast member of the |, second:| show “http://dbpedia.org/resource/Queer_Eye ” ?| -2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 2. replace of 'member' at (23,29) results in: Who is the oldest cast http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest cast |, second:| of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?| -2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 3. replace of 'cast' at (18,22) results in: Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:|Who is the oldest |, second:| http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?| -2023-10-27 13:58:12.936 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 4. replace of 'Who' at (0,3) results in: http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?, first:||, second:| is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?| -2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Who is the oldest cast member of the Netflix show “Queer Eye” ? -2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ? -2023-10-27 13:58:12.936  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 13:58:12.936  WARN 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 13:58:12.937 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 13:58:12.937 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:58:12.937 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 13:58:12.937  INFO 9655 --- [io-11022-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-193667574 -2023-10-27 13:58:13.047 DEBUG 9655 --- [io-11022-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@454989fe -2023-10-27 13:58:13.122 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:58:13.122 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:58:13.123  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?': [{question={answers={ - "head" : { - "vars" : [ - "x1" - ] - }, - "results" : { - "bindings" : [ ] - } -}, language=[{SPARQL=SELECT ?x1 WHERE { }, confidence=0.0}]}}] -2023-10-27 13:58:13.123  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]}}]} -2023-10-27 13:58:13.123 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 13:58:13.124  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 13:58:13.124  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 13:58:13.124  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}] -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0} -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT ?x1 WHERE { } -2023-10-27 13:58:13.124 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.0 -2023-10-27 13:58:13.134 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_b9623dc5-97f5-497d-b3c7-ab106387c0db -2023-10-27 13:58:13.134  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 13:58:13.134 DEBUG 9655 --- [io-11022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.0"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT ?x1 WHERE { }"^^xsd:string AS ?sparqlQueryString ) . - BIND ("http://dbpedia.org/resource/The_Who is the oldest http://dbpedia.org/resource/Casting http://dbpedia.org/resource/Member_of_parliament of the http://dbpedia.org/resource/Netflix show “http://dbpedia.org/resource/Queer_Eye ” ?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"x1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT ?x1 WHERE { }\",\"confidence\":0.0}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 13:58:13.168 DEBUG 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 286 ms -2023-10-27 13:59:03.297  INFO 9655 --- [io-11022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:59:03.298  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:59:03.299  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:59:03.299  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@2c91ba42 -2023-10-27 13:59:03.307  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@225651a0 -2023-10-27 13:59:03.307 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:03.308  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:03.309  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:03.317 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:59:03.317  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 found in urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 at http://localhost:8080/sparql -2023-10-27 13:59:03.319 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What notes does a C major chord consist of? -2023-10-27 13:59:03.319  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2669d132 -2023-10-27 13:59:03.319 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:59:03.320  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:59:03.344 ERROR 9655 --- [io-11022-exec-9] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/C_major"] with root cause - -org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/C_major" - at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 13:59:36.921  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.921  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.922  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"},"inGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1","outGraph":"urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1"} -2023-10-27 13:59:36.922  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@31806114 -2023-10-27 13:59:36.934  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5bab11d5 -2023-10-27 13:59:36.934 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 13:59:36.935  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:36.935  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 13:59:36.942 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 -2023-10-27 13:59:36.942  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 found in urn:graph:66289196-ccbd-4e19-b31e-dcea4933a9a1 at http://localhost:8080/sparql -2023-10-27 13:59:36.944 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:36.945  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@124f58d6 -2023-10-27 13:59:36.945 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 13:59:36.948  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 13:59:36.989 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:36.989  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Who are the actresses in Portrait of a Lady on Fire?". -2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:37.000  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Who are the actresses in Portrait of a Lady on Fire?' -2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Who are the actresses in Portrait of a Lady on Fire? -2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 13:59:37.000  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Who are the actresses in Portrait of a Lady on Fire?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 13:59:37.000 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Who are the actresses in Portrait of a Lady on Fire?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 13:59:37.000  INFO 9655 --- [io-11022-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1697422773 -2023-10-27 13:59:37.088 DEBUG 9655 --- [io-11022-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@67e93f74 -2023-10-27 13:59:46.006 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 13:59:46.006 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 13:59:46.006  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Who are the actresses in Portrait of a Lady on Fire?': [{question={answers={ - "head" : { - "vars" : [ - "o1" - ] - }, - "results" : { - "bindings" : [ - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q230710" - } - }, - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q31353" - } - }, - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q3345735" - } - }, - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q65043586" - } - }, - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q65468168" - } - } - ] - } -}, language=[{SPARQL=SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000, confidence=0.84}]}}] -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]}}]} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]}} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}] -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q230710 -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]}} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}] -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q230710 -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q31353 -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q3345735 -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q65043586 -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q65468168 -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5 resources -2023-10-27 13:59:46.007  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]}} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}]} -2023-10-27 13:59:46.007 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q230710"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q31353"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q3345735"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65043586"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q65468168"}}] -2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q230710 -2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q31353 -2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q3345735 -2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q65043586 -2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q65468168 -2023-10-27 13:59:46.017  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5 resources -2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q230710\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q31353\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q3345735\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65043586\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q65468168\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}]} -2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84}] -2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.84} -2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000 -2023-10-27 13:59:46.017 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.84 -2023-10-27 13:59:46.023 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_57ef8e16-30a5-4bdd-b293-19a1b54f4872 -2023-10-27 13:59:46.023  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 13:59:46.023 DEBUG 9655 --- [io-11022-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ; rdf:_3 ; rdf:_4 ; rdf:_5 ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.84"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("Who are the actresses in Portrait of a Lady on Fire?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"o1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q230710\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q31353\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q3345735\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q65043586\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q65468168\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000\",\"confidence\":0.84}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 13:59:46.049 DEBUG 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 9128 ms -2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:10.453  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@713ac2c8 -2023-10-27 14:00:10.473  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@76a6b82f -2023-10-27 14:00:10.473 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:10.475  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:10.478  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:10.494 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 -2023-10-27 14:00:10.494  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 found in urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 at http://localhost:8080/sparql -2023-10-27 14:00:10.499 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? -2023-10-27 14:00:10.500  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@654173fd -2023-10-27 14:00:10.500 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:00:10.502  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:00:10.558 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? -2023-10-27 14:00:10.558  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Which egyptian pyramid is the tallest?". -2023-10-27 14:00:10.578 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which egyptian pyramid is the tallest? -2023-10-27 14:00:10.579  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Which egyptian pyramid is the tallest?' -2023-10-27 14:00:10.579  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Which egyptian pyramid is the tallest? -2023-10-27 14:00:10.579  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Which egyptian pyramid is the tallest? -2023-10-27 14:00:10.579  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:00:10.579  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Which egyptian pyramid is the tallest?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:00:10.579 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:00:10.580 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:00:10.580 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Which egyptian pyramid is the tallest?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:00:10.581  INFO 9655 --- [io-11022-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1678079023 -2023-10-27 14:00:10.667 DEBUG 9655 --- [io-11022-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@3a429b92 -2023-10-27 14:00:11.972 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:11.972 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Which egyptian pyramid is the tallest?': [{question={answers={ - "head" : { - "vars" : [ - "s1" - ] - }, - "results" : { - "bindings" : [ - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q2380546" - } - } - ] - } -}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000, confidence=0.14}]}}] -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]}}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]}} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}] -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2380546 -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]}} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}] -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2380546 -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]}} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2380546"}}] -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2380546 -2023-10-27 14:00:11.973  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2380546\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}]} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14}] -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.14} -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000 -2023-10-27 14:00:11.973 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.14 -2023-10-27 14:00:11.984 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 -2023-10-27 14:00:11.985  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:00:11.985 DEBUG 9655 --- [io-11022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.14"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("Which egyptian pyramid is the tallest?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q2380546\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000\",\"confidence\":0.14}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:00:12.051 DEBUG 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 1598 ms -2023-10-27 14:00:21.816  INFO 9655 --- [io-11022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:21.817  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:21.817  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"},"inGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104","outGraph":"urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104"} -2023-10-27 14:00:21.817  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@7521ccbf -2023-10-27 14:00:21.829  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7be63c6b -2023-10-27 14:00:21.830 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:21.831  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:21.831  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:21.838 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 -2023-10-27 14:00:21.838  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_49cb4b80-062e-4521-be09-283d1d2de152 found in urn:graph:036fa638-7217-4c70-bc12-a3ebb3cb5104 at http://localhost:8080/sparql -2023-10-27 14:00:21.839 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? -2023-10-27 14:00:21.840  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fd9a7cf -2023-10-27 14:00:21.840 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:00:21.841  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:00:21.862  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(33,39) (score=null>=0.5) ignored=false -2023-10-27 14:00:21.862  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(14,23) (score=null>=0.5) ignored=false -2023-10-27 14:00:21.872 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Through which countries does the Danube go? -2023-10-27 14:00:21.872  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "Through which countries does the Danube go?". -2023-10-27 14:00:21.872  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Danube at (33,39) with score null -2023-10-27 14:00:21.872  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Страна at (14,23) with score null -2023-10-27 14:00:21.873 ERROR 9655 --- [io-11022-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause - -java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:00:35.444  INFO 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:35.445  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:35.445  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:35.446  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@66546ec9 -2023-10-27 14:00:35.453  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68939c73 -2023-10-27 14:00:35.454 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:00:35.455  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:35.456  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:00:35.461 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:35.461  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 found in urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf at http://localhost:8080/sparql -2023-10-27 14:00:35.464 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? -2023-10-27 14:00:35.465  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6c498792 -2023-10-27 14:00:35.465 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:00:35.466  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:00:35.498 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? -2023-10-27 14:00:35.498  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Which of the dragons in Game of Thrones died?". -2023-10-27 14:00:35.513 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which of the dragons in Game of Thrones died? -2023-10-27 14:00:35.513  WARN 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Which of the dragons in Game of Thrones died?' -2023-10-27 14:00:35.513  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Which of the dragons in Game of Thrones died? -2023-10-27 14:00:35.513  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Which of the dragons in Game of Thrones died? -2023-10-27 14:00:35.513  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:00:35.514  WARN 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Which of the dragons in Game of Thrones died?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:00:35.514 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:00:35.514 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:00:35.514 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Which of the dragons in Game of Thrones died?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:00:35.514  INFO 9655 --- [io-11022-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1815978476 -2023-10-27 14:00:35.658 DEBUG 9655 --- [io-11022-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@773a2b3d -2023-10-27 14:00:39.808 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:00:39.808 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Which of the dragons in Game of Thrones died?': [{question={answers={ - "head" : { - "vars" : [ - "s1" - ] - }, - "results" : { - "bindings" : [ ] - } -}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000, confidence=0.02}]}}] -2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]}}]} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 14:00:39.809  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}]} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02}] -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 ?p2 . } LIMIT 1000","confidence":0.02} -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000 -2023-10-27 14:00:39.809 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.02 -2023-10-27 14:00:39.817 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:39.817  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:00:39.817 DEBUG 9655 --- [io-11022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.02"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("Which of the dragons in Game of Thrones died?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 ?p2 . } LIMIT 1000\",\"confidence\":0.02}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:00:39.845 DEBUG 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 4400 ms -2023-10-27 14:02:29.109  INFO 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:29.110  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:29.110  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"},"inGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d","outGraph":"urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d"} -2023-10-27 14:02:29.110  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@3672fec6 -2023-10-27 14:02:29.127  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@45e0a6ea -2023-10-27 14:02:29.127 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:02:29.128  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:29.129  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:02:29.140 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d -2023-10-27 14:02:29.140  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_4324e046-5fed-4735-b8bd-2cb3204c2b3d found in urn:graph:ac95aa37-aaa2-419d-8ad0-faa76662b64d at http://localhost:8080/sparql -2023-10-27 14:02:29.143 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:02:29.143  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2b5c9a9e -2023-10-27 14:02:29.143 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:02:29.145  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:02:29.172 ERROR 9655 --- [io-11022-exec-5] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Impressionism"] with root cause - -org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Impressionism" - at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:07.000  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@6b428cdb -2023-10-27 14:03:07.007  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3f71f2d2 -2023-10-27 14:03:07.007 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:03:07.008  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:07.008  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:03:07.013 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:07.013  INFO 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 found in urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 at http://localhost:8080/sparql -2023-10-27 14:03:07.018 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:07.018  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@493e4697 -2023-10-27 14:03:07.018 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:03:07.019  INFO 9655 --- [io-11022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(8,11) (score=0.9871425>=0.5) ignored=false -2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(17,20) (score=0.9982751>=0.5) ignored=false -2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(29,43) (score=0.99999815>=0.5) ignored=false -2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(47,51) (score=0.9988245>=0.5) ignored=false -2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(52,56) (score=0.9513692>=0.5) ignored=false -2023-10-27 14:03:07.042  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(57,63) (score=0.9999998>=0.5) ignored=false -2023-10-27 14:03:07.051 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (6 items) of getNamedEntitiesOfQuestion for question "who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?". -2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/South_Korean_won at (8,11) with score 0.9871425 -2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/National_Basketball_Association at (17,20) with score 0.9982751 -2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Michael_Jordan at (29,43) with score 0.99999815 -2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Kobe_Bryant at (47,51) with score 0.9988245 -2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Bean at (52,56) with score 0.9513692 -2023-10-27 14:03:07.051  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Kobe_Bryant at (57,63) with score 0.9999998 -2023-10-27 14:03:07.051 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'Bryant' at (57,63) results in: who has won more NBA awards, Michael Jordan or Kobe Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, Michael Jordan or Kobe Bean |, second:|?| -2023-10-27 14:03:07.051 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'Bean' at (52,56) results in: who has won more NBA awards, Michael Jordan or Kobe http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, Michael Jordan or Kobe |, second:| http://dbpedia.org/resource/Kobe_Bryant ?| -2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 2. replace of 'Kobe' at (47,51) results in: who has won more NBA awards, Michael Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, Michael Jordan or |, second:| http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| -2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 3. replace of 'Michael Jordan' at (29,43) results in: who has won more NBA awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more NBA awards, |, second:| or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| -2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 4. replace of 'NBA' at (17,20) results in: who has won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has won more |, second:| awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| -2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 5. replace of 'won' at (8,11) results in: who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?, first:|who has |, second:| more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?| -2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ? -2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:03:07.052  WARN 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:03:07.052 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:03:07.052  INFO 9655 --- [io-11022-exec-7] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1251280899 -2023-10-27 14:03:07.134 DEBUG 9655 --- [io-11022-exec-7] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@20068a60 -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?': [{question={answers={ - "head" : { - "vars" : [ - "x1" - ] - }, - "results" : { - "bindings" : [ ] - } -}, language=[{SPARQL=SELECT ?x1 WHERE { }, confidence=0.0}]}}] -2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]}}]} -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["x1"]},"results":{"bindings":[]}} -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["x1"], key: x1 -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 14:03:07.199  INFO 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 14:03:07.199 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"x1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}]} -2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0}] -2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT ?x1 WHERE { }","confidence":0.0} -2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT ?x1 WHERE { } -2023-10-27 14:03:07.200 DEBUG 9655 --- [io-11022-exec-7] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.0 -2023-10-27 14:03:07.205 DEBUG 9655 --- [io-11022-exec-7] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:07.205  INFO 9655 --- [io-11022-exec-7] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:03:07.205 DEBUG 9655 --- [io-11022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.0"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT ?x1 WHERE { }"^^xsd:string AS ?sparqlQueryString ) . - BIND ("who has http://dbpedia.org/resource/South_Korean_won more http://dbpedia.org/resource/National_Basketball_Association awards, http://dbpedia.org/resource/Michael_Jordan or http://dbpedia.org/resource/Kobe_Bryant http://dbpedia.org/resource/Bean http://dbpedia.org/resource/Kobe_Bryant ?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"x1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT ?x1 WHERE { }\",\"confidence\":0.0}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:03:07.226 DEBUG 9655 --- [io-11022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 226 ms -2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:05:00.119  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@39fe11c6 -2023-10-27 14:05:00.129  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5af4c91f -2023-10-27 14:05:00.129 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:05:00.130  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:00.130  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:05:00.135 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:05:00.135  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f found in urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 at http://localhost:8080/sparql -2023-10-27 14:05:00.137 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation What is the capital of the prefecture Tokyo ? -2023-10-27 14:05:00.137  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@397ffb90 -2023-10-27 14:05:00.137 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:05:00.138  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:05:00.162 ERROR 9655 --- [io-11022-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Madrid"] with root cause - -org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Madrid" - at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:06:34.207  INFO 9655 --- [io-11022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:34.207  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:34.208  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:34.208  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@2ab7d93b -2023-10-27 14:06:34.221  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ed3bf07 -2023-10-27 14:06:34.221 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:06:34.222  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:34.223  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:06:34.231 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 -2023-10-27 14:06:34.231  INFO 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 found in urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 at http://localhost:8080/sparql -2023-10-27 14:06:34.233 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? -2023-10-27 14:06:34.233  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@528879cf -2023-10-27 14:06:34.234 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:06:34.235  INFO 9655 --- [io-11022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:06:34.280 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? -2023-10-27 14:06:34.280  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Is Dr. Pepper named after its inventor?". -2023-10-27 14:06:34.297 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Is Dr. Pepper named after its inventor? -2023-10-27 14:06:34.297  WARN 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Is Dr. Pepper named after its inventor?' -2023-10-27 14:06:34.297  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Is Dr. Pepper named after its inventor? -2023-10-27 14:06:34.297  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Is Dr. Pepper named after its inventor? -2023-10-27 14:06:34.298  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:06:34.298  WARN 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Is Dr. Pepper named after its inventor?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:06:34.298 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:06:34.298 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:06:34.298 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Is Dr. Pepper named after its inventor?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:06:34.298  INFO 9655 --- [io-11022-exec-2] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=1460739267 -2023-10-27 14:06:34.388 DEBUG 9655 --- [io-11022-exec-2] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@40c8ac76 -2023-10-27 14:06:39.585 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:06:39.585 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:06:39.585  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Is Dr. Pepper named after its inventor?': [{question={answers={ - "head" : { - "vars" : [ - "o1" - ] - }, - "results" : { - "bindings" : [ - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q2868" - } - }, - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q34820" - } - } - ] - } -}, language=[{SPARQL=SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000, confidence=0.45}]}}] -2023-10-27 14:06:39.585  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]}}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]}} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}] -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2868 -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]}} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}] -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2868 -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q34820 -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2 resources -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]}} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q2868"}},{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q34820"}}] -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q2868 -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q34820 -2023-10-27 14:06:39.586  INFO 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2 resources -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q2868\"\n }\n },\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q34820\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}]} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45}] -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.45} -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000 -2023-10-27 14:06:39.586 DEBUG 9655 --- [io-11022-exec-2] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.45 -2023-10-27 14:06:39.591 DEBUG 9655 --- [io-11022-exec-2] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 -2023-10-27 14:06:39.591  INFO 9655 --- [io-11022-exec-2] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:06:39.591 DEBUG 9655 --- [io-11022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.45"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("Is Dr. Pepper named after its inventor?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"o1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q2868\\\" } }, { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q34820\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000\",\"confidence\":0.45}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:06:39.612 DEBUG 9655 --- [io-11022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 5405 ms -2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:14.921  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@20647a85 -2023-10-27 14:07:14.928  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4eff7d2d -2023-10-27 14:07:14.929 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:14.929  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:14.930  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:14.935 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:14.935  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c found in urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f at http://localhost:8080/sparql -2023-10-27 14:07:14.937 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation can i play don't starve on play station 4? -2023-10-27 14:07:14.937  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2467193c -2023-10-27 14:07:14.937 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:07:14.938  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:07:14.961 ERROR 9655 --- [io-11022-exec-4] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Don%27t_Starve"] with root cause - -org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Don%27t_Starve" - at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"},"inGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4","outGraph":"urn:graph:2b57545d-73ce-4504-8503-786505d360a4"} -2023-10-27 14:07:34.090  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@22fa7e33 -2023-10-27 14:07:34.097  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5ebaf742 -2023-10-27 14:07:34.098 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:07:34.098  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:34.099  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:07:34.105 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 -2023-10-27 14:07:34.105  INFO 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_179e6719-480f-47cf-9cad-d93d669d9f03 found in urn:graph:2b57545d-73ce-4504-8503-786505d360a4 at http://localhost:8080/sparql -2023-10-27 14:07:34.107 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:34.107  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@185f347e -2023-10-27 14:07:34.107 DEBUG 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:07:34.108  INFO 9655 --- [io-11022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:07:34.133  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(18,25) (score=null>=0.5) ignored=false -2023-10-27 14:07:34.133  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(4,14) (score=null>=0.5) ignored=false -2023-10-27 14:07:34.146 DEBUG 9655 --- [io-11022-exec-6] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation has population of Isfahan increased at any point after 2006? -2023-10-27 14:07:34.146  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "has population of Isfahan increased at any point after 2006?". -2023-10-27 14:07:34.146  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Isfahan at (18,25) with score null -2023-10-27 14:07:34.146  INFO 9655 --- [io-11022-exec-6] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Population at (4,14) with score null -2023-10-27 14:07:34.147 ERROR 9655 --- [io-11022-exec-6] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause - -java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:08:23.705  INFO 9655 --- [o-11022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:23.707  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:23.707  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"},"inGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd","outGraph":"urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd"} -2023-10-27 14:08:23.707  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@16ec29d7 -2023-10-27 14:08:23.721  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@211d13f2 -2023-10-27 14:08:23.722 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:23.723  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:23.723  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:23.731 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 -2023-10-27 14:08:23.731  INFO 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_88042cfc-9f78-46c5-9aa5-bfe5b973f544 found in urn:graph:8e55cdad-358e-455a-8450-6b327d6b52dd at http://localhost:8080/sparql -2023-10-27 14:08:23.732 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? -2023-10-27 14:08:23.732  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1b340182 -2023-10-27 14:08:23.733 DEBUG 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:08:23.734  INFO 9655 --- [o-11022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:08:23.768  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(10,28) (score=null>=0.5) ignored=false -2023-10-27 14:08:23.780 DEBUG 9655 --- [o-11022-exec-10] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Where was Roland Corporation founded? -2023-10-27 14:08:23.780  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (1 items) of getNamedEntitiesOfQuestion for question "Where was Roland Corporation founded?". -2023-10-27 14:08:23.781  INFO 9655 --- [o-11022-exec-10] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Roland_(Unternehmen) at (10,28) with score null -2023-10-27 14:08:23.782 ERROR 9655 --- [o-11022-exec-10] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null] with root cause - -java.lang.NullPointerException: Cannot invoke "java.lang.Float.floatValue()" because the return value of "eu.wdaqua.qanary.component.qanswer.qbe.NamedEntity.getScore()" is null - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.computeQuestionStringWithReplacedResources(QAnswerQueryBuilderAndExecutor.java:291) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:159) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"},"inGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206","outGraph":"urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206"} -2023-10-27 14:08:25.257  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@314a6871 -2023-10-27 14:08:25.264  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@38b3fa5d -2023-10-27 14:08:25.264 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:08:25.264  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:25.264  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:08:25.270 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c -2023-10-27 14:08:25.270  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_1382d230-ed2b-4590-8756-5d0bbd7d3f2c found in urn:graph:e908e49a-7abb-4e44-8823-b9668efe6206 at http://localhost:8080/sparql -2023-10-27 14:08:25.272 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How often was Naomi Novik nominated for a Hugo Award? -2023-10-27 14:08:25.272  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6cbdf4b1 -2023-10-27 14:08:25.272 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:08:25.273  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:08:25.295 ERROR 9655 --- [io-11022-exec-1] o.a.c.c.C.[.[.[/].[dispatcherServlet]  : Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Request processing failed; nested exception is org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Naomi_Novik"] with root cause - -org.apache.jena.rdf.model.ResourceRequiredException: "http://dbpedia.org/resource/Naomi_Novik" - at org.apache.jena.rdf.model.impl.LiteralImpl.asResource(LiteralImpl.java:76) ~[jena-core-4.9.0.jar!/:4.9.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.getNamedEntitiesOfQuestion(QAnswerQueryBuilderAndExecutor.java:248) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.qanswer.qbe.QAnswerQueryBuilderAndExecutor.process(QAnswerQueryBuilderAndExecutor.java:155) ~[classes!/:3.3.0] - at eu.wdaqua.qanary.component.QanaryServiceController.annotatequestion(QanaryServiceController.java:80) ~[qa.component-3.7.2.jar!/:3.7.2] - at java.base/jdk.internal.reflect.DirectMethodHandleAccessor.invoke(DirectMethodHandleAccessor.java:103) ~[na:na] - at java.base/java.lang.reflect.Method.invoke(Method.java:580) ~[na:na] - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:205) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:150) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:117) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:895) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:808) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1067) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:963) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1006) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:909) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:681) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:883) ~[spring-webmvc-5.3.20.jar!/:5.3.20] - at javax.servlet.http.HttpServlet.service(HttpServlet.java:764) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) ~[tomcat-embed-websocket-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.boot.actuate.metrics.web.servlet.WebMvcMetricsFilter.doFilterInternal(WebMvcMetricsFilter.java:96) ~[spring-boot-actuator-2.7.0.jar!/:2.7.0] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:117) ~[spring-web-5.3.20.jar!/:5.3.20] - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:197) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:399) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:890) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1743) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) ~[tomcat-embed-core-9.0.63.jar!/:na] - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) ~[tomcat-embed-core-9.0.63.jar!/:na] - at java.base/java.lang.Thread.run(Thread.java:1583) ~[na:na] - -2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:07.714  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@9646ba4 -2023-10-27 14:09:07.730  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3cc779b0 -2023-10-27 14:09:07.730 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:09:07.731  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:07.731  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:09:07.738 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be -2023-10-27 14:09:07.738  INFO 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be found in urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 at http://localhost:8080/sparql -2023-10-27 14:09:07.739 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? -2023-10-27 14:09:07.740  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@20f529ed -2023-10-27 14:09:07.740 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:09:07.741  INFO 9655 --- [io-11022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:09:07.771 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? -2023-10-27 14:09:07.771  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "In which country is Oberirrach ?". -2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation In which country is Oberirrach ? -2023-10-27 14:09:07.779  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'In which country is Oberirrach ?' -2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: In which country is Oberirrach ? -2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : In which country is Oberirrach ? -2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:09:07.779  WARN 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[In which country is Oberirrach ?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:09:07.779 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[In which country is Oberirrach ?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:09:07.779  INFO 9655 --- [io-11022-exec-4] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1591091684 -2023-10-27 14:09:07.941 DEBUG 9655 --- [io-11022-exec-4] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@12222e7d -2023-10-27 14:09:09.518 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:09:09.518 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'In which country is Oberirrach ?': [{question={answers={ - "head" : { - "vars" : [ - "o1" - ] - }, - "results" : { - "bindings" : [ - { - "o1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q40" - } - } - ] - } -}, language=[{SPARQL=SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000, confidence=0.25}]}}] -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]}}]} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]}} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}] -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q40 -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]}} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}] -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q40 -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["o1"]},"results":{"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]}} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}]} -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["o1"], key: o1 -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"o1":{"type":"uri","value":"http://www.wikidata.org/entity/Q40"}}] -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/Q40 -2023-10-27 14:09:09.519  INFO 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 resources -2023-10-27 14:09:09.519 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"o1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"o1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q40\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}]} -2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25}] -2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?o1 WHERE { \t ?o1 . } LIMIT 1000","confidence":0.25} -2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000 -2023-10-27 14:09:09.520 DEBUG 9655 --- [io-11022-exec-4] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.25 -2023-10-27 14:09:09.527 DEBUG 9655 --- [io-11022-exec-4] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be -2023-10-27 14:09:09.527  INFO 9655 --- [io-11022-exec-4] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:09:09.527 DEBUG 9655 --- [io-11022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.25"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("In which country is Oberirrach ?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"o1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"o1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q40\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?o1 WHERE { ?o1 . } LIMIT 1000\",\"confidence\":0.25}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:09:09.549 DEBUG 9655 --- [io-11022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 1835 ms -2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"},"inGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224","outGraph":"urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224"} -2023-10-27 14:10:14.023  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@4209be1e -2023-10-27 14:10:14.030  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52423cae -2023-10-27 14:10:14.030 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:14.031  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:14.031  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:14.038 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e -2023-10-27 14:10:14.039  INFO 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e found in urn:graph:699c66d1-1fc6-436f-a366-4d14353ab224 at http://localhost:8080/sparql -2023-10-27 14:10:14.040 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:14.040  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3aca8795 -2023-10-27 14:10:14.040 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:10:14.041  INFO 9655 --- [io-11022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:10:14.075 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:14.076  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "How many Oscars did all the movies directed by Hayao Miyazaki combined win?". -2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:14.084  WARN 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?' -2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : How many Oscars did all the movies directed by Hayao Miyazaki combined win? -2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:10:14.084  WARN 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[How many Oscars did all the movies directed by Hayao Miyazaki combined win?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:10:14.084 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[How many Oscars did all the movies directed by Hayao Miyazaki combined win?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:10:14.084  INFO 9655 --- [io-11022-exec-9] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=391741153 -2023-10-27 14:10:14.176 DEBUG 9655 --- [io-11022-exec-9] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@6a5509df -2023-10-27 14:10:22.939 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:10:22.940 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:10:22.940  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'How many Oscars did all the movies directed by Hayao Miyazaki combined win?': [{question={answers={ - "head" : { - "vars" : [ - "count" - ] - }, - "results" : { - "bindings" : [ - { - "count" : { - "datatype" : "http://www.w3.org/2001/XMLSchema#integer", - "type" : "literal", - "value" : "0" - } - } - ] - } -}, language=[{SPARQL=SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000, confidence=0.12}]}}] -2023-10-27 14:10:22.940  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http:\/\/www.w3.org\/2001\/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]}}]} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] -2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 -2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals -2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (http://www.w3.org/2001/XMLSchema#integer). -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["count"]},"results":{"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]}} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}]} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["count"], key: count -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"count":{"datatype":"http://www.w3.org/2001/XMLSchema#integer","type":"literal","value":"0"}}] -2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: literal -> 0 -2023-10-27 14:10:22.942  INFO 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1 literals -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"count\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"count\" : {\n \"datatype\" : \"http://www.w3.org/2001/XMLSchema#integer\",\n \"type\" : \"literal\",\n \"value\" : \"0\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}]} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12}] -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE {\t ?s1 . \t ?s1 . } LIMIT 1000","confidence":0.12} -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000 -2023-10-27 14:10:22.942 DEBUG 9655 --- [io-11022-exec-9] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.12 -2023-10-27 14:10:22.947 DEBUG 9655 --- [io-11022-exec-9] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_3c7eaf1f-4239-4e18-ae86-7e383e12e61e -2023-10-27 14:10:22.948  INFO 9655 --- [io-11022-exec-9] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:10:22.948 DEBUG 9655 --- [io-11022-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 "0"^^ ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.12"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("How many Oscars did all the movies directed by Hayao Miyazaki combined win?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"count\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"count\\\" : { \\\"datatype\\\" : \\\"http://www.w3.org/2001/XMLSchema#integer\\\", \\\"type\\\" : \\\"literal\\\", \\\"value\\\" : \\\"0\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT (COUNT(DISTINCT ?s1) as ?count) WHERE { ?s1 . ?s1 . } LIMIT 1000\",\"confidence\":0.12}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:10:22.975 DEBUG 9655 --- [io-11022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 8952 ms -2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:31.756  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@206a950c -2023-10-27 14:10:31.764  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ace24e -2023-10-27 14:10:31.765 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:10:31.765  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:31.766  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:10:31.773 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb -2023-10-27 14:10:31.773  INFO 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb found in urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab at http://localhost:8080/sparql -2023-10-27 14:10:31.775 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? -2023-10-27 14:10:31.775  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4b79676 -2023-10-27 14:10:31.775 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:10:31.776  INFO 9655 --- [io-11022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:10:31.822 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? -2023-10-27 14:10:31.822  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (0 items) of getNamedEntitiesOfQuestion for question "Which creator of The OA also acted in it?". -2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation Which creator of The OA also acted in it? -2023-10-27 14:10:31.832  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : no named entities exist for 'Which creator of The OA also acted in it?' -2023-10-27 14:10:31.832  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: Which creator of The OA also acted in it? -2023-10-27 14:10:31.832  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : Which creator of The OA also acted in it? -2023-10-27 14:10:31.832  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:10:31.832  WARN 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[Which creator of The OA also acted in it?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:10:31.832 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[Which creator of The OA also acted in it?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:10:31.833  INFO 9655 --- [io-11022-exec-1] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-368850252 -2023-10-27 14:10:31.928 DEBUG 9655 --- [io-11022-exec-1] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@30a90a43 -2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:10:38.499  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'Which creator of The OA also acted in it?': [{question={answers={ - "head" : { - "vars" : [ - "s1" - ] - }, - "results" : { - "bindings" : [ ] - } -}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000, confidence=0.0}]}}] -2023-10-27 14:10:38.499  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]}}]} -2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]} -2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} -2023-10-27 14:10:38.499 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 14:10:38.500  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 14:10:38.500  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'literal' (null). -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]} -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[]}} -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[]} -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [] -2023-10-27 14:10:38.500  INFO 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0 literals -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [ ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}]} -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0}] -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 ?p1 . \t ?s1 . } LIMIT 1000","confidence":0.0} -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000 -2023-10-27 14:10:38.500 DEBUG 9655 --- [io-11022-exec-1] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.0 -2023-10-27 14:10:38.508 DEBUG 9655 --- [io-11022-exec-1] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb -2023-10-27 14:10:38.508  INFO 9655 --- [io-11022-exec-1] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:10:38.508 DEBUG 9655 --- [io-11022-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.0"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("Which creator of The OA also acted in it?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 ?p1 . ?s1 . } LIMIT 1000\",\"confidence\":0.0}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:10:38.530 DEBUG 9655 --- [io-11022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 6774 ms -2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:19.057  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : process: eu.wdaqua.qanary.commons.QanaryMessage@3f6ae30 -2023-10-27 14:11:19.066  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_uri_textual_representation.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@43e19f52 -2023-10-27 14:11:19.066 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -SELECT ?uri -FROM ?graph { - ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation . - ?a oa:hasTarget ?q . - ?a oa:hasBody ?uri . -} -2023-10-27 14:11:19.067  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:19.067  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : SPARQL query: PREFIX qa: -PREFIX oa: - -SELECT ?uri -FROM -WHERE - { ?q a qa:Question . - ?a a qa:AnnotationOfTextRepresentation ; - oa:hasTarget ?q ; - oa:hasBody ?uri - } - -2023-10-27 14:11:19.072 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:19.072  INFO 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : uriTextRepresentation http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 found in urn:graph:7a130498-786b-4597-afe4-76939bf2d704 at http://localhost:8080/sparql -2023-10-27 14:11:19.073 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:19.074  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfInstance.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@c2675da -2023-10-27 14:11:19.074 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX rdf: -PREFIX oa: -PREFIX qa: - -SELECT * -FROM ?graph -WHERE { - ?annotationId rdf:type qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?hasSource; - oa:hasSelector [ - a oa:TextPositionSelector; - oa:start ?start; - oa:end ?end - ] - ]. - ?annotationId oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - OPTIONAL { - ?annotationId qa:score ?score . - } -} -2023-10-27 14:11:19.075  INFO 9655 --- [io-11022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX rdf: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - rdf:type qa:AnnotationOfInstance ; - oa:hasTarget _:b0 . - _:b0 rdf:type oa:SpecificResource ; - oa:hasSource ?hasSource ; - oa:hasSelector _:b1 . - _:b1 rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end . - ?annotationId - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - OPTIONAL - { ?annotationId - qa:score ?score - } - } - -2023-10-27 14:11:19.096  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(0,5) (score=0.5118103>=0.5) ignored=false -2023-10-27 14:11:19.096  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found entity in Qanary triplestore: position=(18,37) (score=1.0>=0.5) ignored=false -2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : textRepresentation After whom is the Riemannian geometry named? -2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Result list (2 items) of getNamedEntitiesOfQuestion for question "After whom is the Riemannian geometry named?". -2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/AfterMASH at (0,5) with score 0.5118103 -2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : found namedEntity: http://dbpedia.org/resource/Riemannian_geometry at (18,37) with score 1.0 -2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 0. replace of 'Riemannian geometry' at (18,37) results in: After whom is the http://dbpedia.org/resource/Riemannian_geometry named?, first:|After whom is the |, second:| named?| -2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : 1. replace of 'After' at (0,5) results in: http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?, first:||, second:| whom is the http://dbpedia.org/resource/Riemannian_geometry named?| -2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question original: After whom is the Riemannian geometry named? -2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Question changed : http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named? -2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : Created URL template: https://qanswer-core1.univ-st-etienne.fr/api/gerbil?query={query}&lang={lang}&kb={kb}&user={user} -2023-10-27 14:11:19.104  WARN 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : request to https://qanswer-core1.univ-st-etienne.fr/api/gerbil with data {query=[http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?], lang=[en], kb=[wikidata], user=[open]} -2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : HTTP POST https://qanswer-core1.univ-st-etienne.fr/api/gerbil -2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Accept=[application/xml, text/xml, application/json, application/cbor, application/*+xml, application/*+json] -2023-10-27 14:11:19.104 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Writing [{query=[http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?], lang=[en], kb=[wikidata], user=[open]}] as "application/x-www-form-urlencoded" -2023-10-27 14:11:19.104  INFO 9655 --- [io-11022-exec-5] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse.getResponse: cache miss --> send request, hascode=-1242772544 -2023-10-27 14:11:19.191 DEBUG 9655 --- [io-11022-exec-5] q.c.RestTemplateCacheResponseInterceptor : response received: org.springframework.http.client.BufferingClientHttpResponseWrapper@7aed0d51 -2023-10-27 14:11:21.490 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Response 200 OK -2023-10-27 14:11:21.607 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.RestTemplateWithCaching  : Reading to [net.minidev.json.JSONObject] -2023-10-27 14:11:21.609  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : QAnswer JSON result for question 'http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?': [{question={answers={ - "head" : { - "vars" : [ - "s1" - ] - }, - "results" : { - "bindings" : [ - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/P97" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1000303" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100042862" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100138352" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100138547" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100144644" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100146345" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100146669" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100149091" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100149151" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100153085" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100154345" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100156282" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100158068" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100166497" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100200203" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100226840" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100230981" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100233550" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100235719" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1002465" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100247710" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100251476" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100255524" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100255571" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100255652" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100255673" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256033" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256260" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256336" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256365" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256384" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256423" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100256441" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100268330" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100268917" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100270821" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100271385" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100272277" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100272467" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100277657" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100290884" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100296857" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100296919" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100296954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100306163" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100323660" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10032888" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100336041" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1003491" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350697" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100350712" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100363472" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100363753" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100368900" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100369837" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100375843" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100377193" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100387742" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100397017" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1004124" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100416234" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100429444" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100437710" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100476322" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100497722" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100533874" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100534096" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100545431" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100567305" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100585173" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100588445" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1005902" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100600664" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100605702" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100683537" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100686728" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100690942" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100701460" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100707410" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100707432" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100707450" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100707560" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100707570" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100707579" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100707582" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100708568" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100708814" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100708828" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100709397" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100709407" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100709508" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100722474" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100726808" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100733133" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100740654" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100742710" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100744452" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100744910" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100750442" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100752647" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100766665" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100767188" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100768033" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100770629" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100771043" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100771094" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100777516" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100789929" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100791998" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100799377" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100853469" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100869791" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100872433" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100877419" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100880026" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100890188" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100890633" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100908749" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100916130" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100927753" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100935224" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100935227" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100938271" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100939770" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100945066" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100945285" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100945637" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100978462" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100979333" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100982849" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100982861" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100983365" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100997212" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100997306" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100997397" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q100998590" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101010922" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101013250" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101032352" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101054473" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063207" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063233" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063240" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063248" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063295" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063323" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063350" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063362" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101063364" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101065644" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101071928" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101075720" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101079308" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101094792" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101096138" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101113247" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101115774" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101116447" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101116604" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101130750" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101137443" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1011446" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101160132" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101173400" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101199215" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101205665" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101205681" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101205732" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101205779" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101209733" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101223763" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101228463" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101238280" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101243257" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101247428" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101247484" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101247489" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101247519" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101247540" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101247567" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101248074" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101267136" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101324254" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101333514" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101334319" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101343924" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101349536" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101349712" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101356218" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101402616" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101418327" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101418887" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101419071" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101419751" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101422799" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101423783" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101427897" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101427898" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101428516" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101429521" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101436914" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101438997" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101441954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101444705" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101445621" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101445676" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101445883" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101445913" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101453383" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101459115" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101484096" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101486501" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101495425" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101497289" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101497449" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101497643" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101497866" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101498264" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101498470" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101498584" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101500281" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101500907" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101504200" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101522111" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101524075" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101528994" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101535940" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101538319" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101538374" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101538434" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101538703" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101538826" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101539018" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101539047" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101541410" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101542180" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101542257" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101552911" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101554049" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101566501" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101566783" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101579769" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101583472" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101627797" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1016407" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101668466" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1016801" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101695457" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101697785" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101702521" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1017046" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1017086" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1017332" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101753497" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101754733" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101754990" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101758330" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101788376" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101795434" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101797745" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1018087" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101833802" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1018465" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101913232" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101953096" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q101971567" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102039658" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102045857" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102045965" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102046013" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102047781" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102048093" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102048138" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102048612" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102048854" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102049697" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102049796" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102049844" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102049925" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102050005" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102050517" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102050884" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102076291" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102083" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102083439" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102083767" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102104632" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102120106" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102150752" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102158574" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102158749" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102162072" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102162094" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102165489" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102177201" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102180882" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102187356" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102187912" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102201050" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102204875" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102204893" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102204905" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102208413" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102210482" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102210838" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102211352" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102211649" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102212673" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102213098" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102216056" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102216237" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102216486" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102216808" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102217141" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102226106" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102226212" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102239874" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1022483" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102251036" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102252101" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102252119" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102254530" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102260583" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102261737" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102276173" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102276807" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102278041" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102278043" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102278045" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102278048" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102278424" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1022791" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102281601" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102281677" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102290356" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102291484" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102291875" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102294569" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102297519" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102298581" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102299711" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102310627" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102310701" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102312294" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102313297" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102315377" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1023161" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102316221" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102317157" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102317554" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102324008" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102328716" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102329273" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102336299" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102336787" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102336810" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102337773" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338301" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338310" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338312" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338315" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338318" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338436" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338439" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338694" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338699" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338704" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338706" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338801" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338805" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338807" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338810" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338811" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102338813" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102350347" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102352778" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102354463" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102361119" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102362004" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102362324" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1023727" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102379157" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102388622" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102396650" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102400530" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102418503" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102420543" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102431966" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102452206" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102454460" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102455933" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102457871" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1025106" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1025118" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1025121" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102528897" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1025919" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10259887" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10260424" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10260577" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102616336" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10263636" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10264107" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10266053" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1026612" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10267059" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10267060" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10267766" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10268756" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10268937" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10269109" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10269524" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10269526" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10269529" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10270319" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10270984" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10271017" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10271175" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10272701" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1027366" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10274024" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10274868" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102797423" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10282109" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10282783" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102829543" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1028297" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10284285" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102849713" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10286148" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10286251" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10286510" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10286661" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10286972" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q102885027" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10288525" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10289329" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10290705" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10290892" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1029135" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10291411" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10291443" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10293585" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10293927" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10294040" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10294484" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10294550" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10295954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10295993" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10296131" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10296770" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10297919" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10299026" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10301351" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10301981" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10302268" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10303514" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10303515" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10303537" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10303540" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10303978" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103042012" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103049401" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10305017" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10305246" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10307972" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10313048" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10313385" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10313613" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10313703" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10313889" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10314198" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10314768" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10314975" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10315455" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103163" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103179432" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1031816" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10318606" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10319052" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10320043" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103222362" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10322521" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10323221" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10325569" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326696" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326697" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326698" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326700" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326701" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326703" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326704" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326708" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326712" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326713" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326714" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326715" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326722" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326724" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326725" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326726" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326727" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326729" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326730" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326731" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326733" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326734" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326736" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326737" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326739" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326742" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326744" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326745" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326746" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326751" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326753" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326754" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10326756" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10329206" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10329657" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10329673" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103304064" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10330721" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10331068" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103318185" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10331823" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10333980" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1033408" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10334176" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1033460" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10335304" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103375029" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103375635" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10337647" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10337956" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10338655" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1033877" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10340551" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10340971" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103409942" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10341016" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1034117" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10341264" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10341401" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103432988" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103449792" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10346072" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103479666" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10348576" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10349213" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10349216" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103492756" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103498067" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10349975" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103501493" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10350954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1035129" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10351538" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1035157" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10351611" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10354482" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10355035" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10355042" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10355178" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1035611" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10356616" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10356912" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103582989" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10359188" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1036025" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1036027" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1036039" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103619797" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10364748" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103649446" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10366548" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103676187" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103684222" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10368807" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1036944" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10369482" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10370031" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10370032" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103705570" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103715454" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10371973" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10372354" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10372428" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10372429" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10372430" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10373104" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10373382" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10373392" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10373394" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10373395" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10373954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103754677" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10375920" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10377711" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10377712" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10377714" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10377715" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10377717" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10378137" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10379103" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10379249" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10379369" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103798029" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10380168" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103819965" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103820839" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103821030" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10382162" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10382537" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103826228" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10383257" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103837374" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103837460" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1038377" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103838847" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103847517" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103848331" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103848601" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103850890" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10385407" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10385708" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10386185" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10387054" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10387060" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10387760" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10387761" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10388661" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10388793" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103888328" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103888331" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103888641" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10389579" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10389914" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103911669" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391797" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391798" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391799" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391800" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391802" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391803" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391807" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391808" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391809" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391810" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391811" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391812" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391813" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391814" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391815" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391816" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391817" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391818" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391819" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391821" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391822" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391823" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391825" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391826" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391827" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391828" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391829" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391830" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391831" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391832" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391833" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391834" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391835" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391837" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391839" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391840" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391841" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391842" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391843" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391845" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391846" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391847" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391850" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391851" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391853" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391854" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391855" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391857" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391859" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391860" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391862" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391863" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391864" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391866" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391867" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391868" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391869" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391870" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391873" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391874" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391875" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391876" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391877" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391878" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391880" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391881" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391882" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391884" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391886" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391888" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391889" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391890" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391891" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391892" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391893" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391894" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391896" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391897" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391899" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391900" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391901" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391902" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391903" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391905" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391906" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391907" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391908" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391909" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391910" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391911" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391912" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391914" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391915" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391916" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391917" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391919" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391920" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391921" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391923" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391925" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391926" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391927" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391928" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391929" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391930" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391931" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391932" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391933" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391934" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391936" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391939" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391940" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391941" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391942" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391943" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391944" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391945" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391947" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391948" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391949" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391950" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391951" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391953" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391954" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391955" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391956" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391957" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391958" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391959" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391960" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391961" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391962" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391963" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391965" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391966" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391967" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391969" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391970" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391971" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391972" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391973" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391974" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391977" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391979" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391980" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391981" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391982" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391983" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391985" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391986" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10391987" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10392149" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103924317" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103924462" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10392664" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10392733" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10392775" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10393218" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10393219" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10393220" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10393551" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10394046" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1039432" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10394995" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10394997" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10395155" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103958059" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103958350" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103959782" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10396329" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103980526" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103982686" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103985237" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10398667" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10398706" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10398707" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1039908" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10399113" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103991413" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q103993134" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10400698" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104007577" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10400866" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10401140" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10401509" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104022211" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104022342" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10402660" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104028711" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104029581" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104029584" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104033750" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104034668" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104042609" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104043752" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104047679" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10404777" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104049534" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104051165" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104051980" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104054163" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1040543" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104054601" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104057038" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1040603" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104062828" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10406715" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1040689" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104072067" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10407258" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1040761" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1040806" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104082897" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104084793" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10408556" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104086600" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104088310" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104092899" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104093156" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104093542" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104097697" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104097708" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104097772" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104097803" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104098872" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10410183" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104107856" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1041144" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411663" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411862" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411863" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411864" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411865" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411866" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411867" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411868" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10411888" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104119755" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104119777" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104127079" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104128067" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104128400" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10413668" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104145349" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104151609" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104151652" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104151655" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104152731" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104153418" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104154385" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104154414" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104156356" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104156983" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104157029" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104157721" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10415972" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104160135" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104161269" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104163111" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104165632" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1041668" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104170787" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104170805" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104170815" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104170826" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104170838" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104170845" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104176270" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104176717" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10417798" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104179196" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104179526" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10418059" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104182012" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104187784" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104188332" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104188943" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104189007" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104190216" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104192449" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104192625" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104205792" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10420805" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10420835" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104211534" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104211551" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104211601" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104212495" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104213523" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104213637" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104213909" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104214025" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104214213" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104217454" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104223698" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104223759" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104223964" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104234421" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104234446" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10423734" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104241536" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104243375" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104246069" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104247017" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104247355" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104250289" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104251914" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10425586" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10426590" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1042670" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104269190" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10428456" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10428811" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10429813" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10430832" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10430859" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104315503" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10432404" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104329352" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433030" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433040" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433041" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433042" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433043" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433044" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q1043341" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433512" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433513" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433514" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433515" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433516" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433517" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433518" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433519" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433520" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433521" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433522" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433523" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433524" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433525" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433526" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433527" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433528" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433529" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433530" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433531" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433532" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433533" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433534" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433536" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433537" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433538" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433539" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433540" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10433541" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10434744" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10435984" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q10436549" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104368133" - } - }, - { - "s1" : { - "type" : "uri", - "value" : "http://www.wikidata.org/entity/Q104372944" - } - } - ] - } -}, language=[{SPARQL=SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000, confidence=0.08}]}}] -2023-10-27 14:11:21.610  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : got response: {"questions":[{"question":{"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http:\/\/www.wikidata.org\/entity\/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]}}]} -2023-10-27 14:11:21.611 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 14:11:21.614 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]}} -2023-10-27 14:11:21.614 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]} -2023-10-27 14:11:21.615 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:11:21.615 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}] -2023-10-27 14:11:21.615  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/P97 -2023-10-27 14:11:21.615  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : result: Is NOT of type 'literal'. -2023-10-27 14:11:21.615 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]}} -2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]} -2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:11:21.618 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}] -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/P97 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000303 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100042862 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100138352 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100138547 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144644 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100146345 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100146669 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100149091 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100149151 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100153085 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100154345 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100156282 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100158068 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100166497 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100200203 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100226840 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100230981 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100233550 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100235719 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q1002465 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100247710 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100251476 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100255524 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100255571 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100255652 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100255673 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100256033 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100256260 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100256336 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100256365 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100256384 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100256423 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100256441 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100268330 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100268917 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100270821 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100271385 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100272277 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100272467 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100277657 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100290884 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100296857 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100296919 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100296954 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100306163 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100323660 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q10032888 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100336041 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q1003491 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100350697 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100350712 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100363472 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100363753 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100368900 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100369837 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100375843 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100377193 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100387742 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100397017 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q1004124 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100416234 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100429444 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q100437710 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100476322 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100497722 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100533874 -2023-10-27 14:11:21.619  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100534096 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100545431 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100567305 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100585173 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q100588445 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1005902 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100600664 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100605702 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q100683537 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q100686728 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100690942 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100701460 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100707410 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100707432 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100707450 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100707560 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100707570 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100707579 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100707582 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100708568 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100708814 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100708828 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100709397 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100709407 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100709508 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100722474 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100726808 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100733133 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100740654 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100742710 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100744452 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100744910 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100750442 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100752647 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100766665 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100767188 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100768033 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100770629 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100771043 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100771094 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100777516 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100789929 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100791998 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100799377 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100853469 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100869791 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100872433 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100877419 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100880026 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100890188 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100890633 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100908749 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100916130 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100927753 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100935224 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100935227 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100938271 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100939770 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100945066 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100945285 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100945637 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100978462 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100979333 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100982849 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100982861 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100983365 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100997212 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100997306 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100997397 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100998590 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q101010922 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q101013250 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q101032352 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q101054473 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q101063207 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q101063233 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q101063240 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q101063248 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q101063295 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q101063323 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q101063350 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q101063362 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q101063364 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q101065644 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q101071928 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q101075720 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q101079308 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q101094792 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q101096138 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q101113247 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q101115774 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q101116447 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q101116604 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q101130750 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q101137443 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q1011446 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q101160132 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q101173400 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q101199215 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q101205665 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q101205681 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q101205732 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q101205779 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q101209733 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q101223763 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q101228463 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q101238280 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q101243257 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q101247428 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q101247484 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q101247489 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q101247519 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q101247540 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q101247567 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q101248074 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q101267136 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q101324254 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q101333514 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q101334319 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q101343924 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q101349536 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q101349712 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q101356218 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q101402616 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q101418327 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q101418887 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q101419071 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q101419751 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q101422799 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q101423783 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q101427897 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q101427898 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q101428516 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q101429521 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q101436914 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q101438997 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q101441954 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q101444705 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q101445621 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q101445676 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q101445883 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q101445913 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q101453383 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q101459115 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q101484096 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q101486501 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q101495425 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q101497289 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q101497449 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q101497643 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q101497866 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q101498264 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q101498470 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q101498584 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q101500281 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q101500907 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q101504200 -2023-10-27 14:11:21.620  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q101522111 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q101524075 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q101528994 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q101535940 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q101538319 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q101538374 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q101538434 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q101538703 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q101538826 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q101539018 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q101539047 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q101541410 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q101542180 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q101542257 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q101552911 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q101554049 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q101566501 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q101566783 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q101579769 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q101583472 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q101627797 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q1016407 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q101668466 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q1016801 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q101695457 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q101697785 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q101702521 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q1017046 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q1017086 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q1017332 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q101753497 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q101754733 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q101754990 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q101758330 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q101788376 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q101795434 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q101797745 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q1018087 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q101833802 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q1018465 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q101913232 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q101953096 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q101971567 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q102039658 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q102045857 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q102045965 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q102046013 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q102047781 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q102048093 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q102048138 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q102048612 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q102048854 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q102049697 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q102049796 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q102049844 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q102049925 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q102050005 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q102050517 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q102050884 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q102076291 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q102083 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q102083439 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q102083767 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q102104632 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q102120106 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q102150752 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q102158574 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q102158749 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q102162072 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q102162094 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q102165489 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q102177201 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q102180882 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q102187356 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q102187912 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q102201050 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q102204875 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q102204893 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q102204905 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q102208413 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q102210482 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q102210838 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q102211352 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q102211649 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q102212673 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q102213098 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q102216056 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q102216237 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q102216486 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q102216808 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q102217141 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q102226106 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q102226212 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q102239874 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q1022483 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q102251036 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q102252101 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q102252119 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q102254530 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q102260583 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q102261737 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q102276173 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q102276807 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q102278041 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q102278043 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q102278045 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q102278048 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q102278424 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q1022791 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q102281601 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q102281677 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q102290356 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q102291484 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q102291875 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q102294569 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q102297519 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q102298581 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q102299711 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q102310627 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q102310701 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q102312294 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q102313297 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q102315377 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q1023161 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q102316221 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q102317157 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q102317554 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q102324008 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q102328716 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q102329273 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q102336299 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q102336787 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q102336810 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q102337773 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q102338301 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q102338310 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q102338312 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q102338315 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q102338318 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q102338436 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q102338439 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q102338694 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q102338699 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q102338704 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q102338706 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q102338801 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q102338805 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q102338807 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q102338810 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q102338811 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q102338813 -2023-10-27 14:11:21.621  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q102350347 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q102352778 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q102354463 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q102361119 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q102362004 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q102362324 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q1023727 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q102379157 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q102388622 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q102396650 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q102400530 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q102418503 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q102420543 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q102431966 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q102452206 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q102454460 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q102455933 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q102457871 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q1025106 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q1025118 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q1025121 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q102528897 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q1025919 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q10259887 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q10260424 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q10260577 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q102616336 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q10263636 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q10264107 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q10266053 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q1026612 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q10267059 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q10267060 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q10267766 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q10268756 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q10268937 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q10269109 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q10269524 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q10269526 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q10269529 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q10270319 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q10270984 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q10271017 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q10271175 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q10272701 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q1027366 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q10274024 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q10274868 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q102797423 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q10282109 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q10282783 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q102829543 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q1028297 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q10284285 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q102849713 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q10286148 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q10286251 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q10286510 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q10286661 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q10286972 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q102885027 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q10288525 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q10289329 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q10290705 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q10290892 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q1029135 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q10291411 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q10291443 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q10293585 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q10293927 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q10294040 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q10294484 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q10294550 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q10295954 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q10295993 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q10296131 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q10296770 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q10297919 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q10299026 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q10301351 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q10301981 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q10302268 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q10303514 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q10303515 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q10303537 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q10303540 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q10303978 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q103042012 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q103049401 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q10305017 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q10305246 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q10307972 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q10313048 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q10313385 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q10313613 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q10313703 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q10313889 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q10314198 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q10314768 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q10314975 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q10315455 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q103163 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q103179432 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q1031816 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q10318606 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q10319052 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q10320043 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q103222362 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q10322521 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q10323221 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q10325569 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q10326696 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q10326697 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q10326698 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q10326700 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q10326701 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q10326703 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q10326704 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q10326708 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q10326712 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q10326713 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q10326714 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q10326715 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q10326722 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q10326724 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q10326725 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q10326726 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q10326727 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q10326729 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q10326730 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q10326731 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q10326733 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q10326734 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q10326736 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q10326737 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q10326739 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q10326742 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q10326744 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q10326745 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q10326746 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q10326751 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q10326753 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q10326754 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q10326756 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q10329206 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q10329657 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q10329673 -2023-10-27 14:11:21.622  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q103304064 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q10330721 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q10331068 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q103318185 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q10331823 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q10333980 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q1033408 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q10334176 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q1033460 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q10335304 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q103375029 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q103375635 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q10337647 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q10337956 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q10338655 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q1033877 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q10340551 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q10340971 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q103409942 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q10341016 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q1034117 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q10341264 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q10341401 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q103432988 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q103449792 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q10346072 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q103479666 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q10348576 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q10349213 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q10349216 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q103492756 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q103498067 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q10349975 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q103501493 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q10350954 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q1035129 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q10351538 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q1035157 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q10351611 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q10354482 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q10355035 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q10355042 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q10355178 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q1035611 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q10356616 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q10356912 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q103582989 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q10359188 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q1036025 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q1036027 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q1036039 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q103619797 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q10364748 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q103649446 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q10366548 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q103676187 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q103684222 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q10368807 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q1036944 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q10369482 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q10370031 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q10370032 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q103705570 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q103715454 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q10371973 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q10372354 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q10372428 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q10372429 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q10372430 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q10373104 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q10373382 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q10373392 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q10373394 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q10373395 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q10373954 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q103754677 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q10375920 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q10377711 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q10377712 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q10377714 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q10377715 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q10377717 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q10378137 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q10379103 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q10379249 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q10379369 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q103798029 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q10380168 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q103819965 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q103820839 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q103821030 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q10382162 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q10382537 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q103826228 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q10383257 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q103837374 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q103837460 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q1038377 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q103838847 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q103847517 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q103848331 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q103848601 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q103850890 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q10385407 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q10385708 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q10386185 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q10387054 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q10387060 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q10387760 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q10387761 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q10388661 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q10388793 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q103888328 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q103888331 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q103888641 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q10389579 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q10389914 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q103911669 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q10391797 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q10391798 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q10391799 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q10391800 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q10391802 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q10391803 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q10391807 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q10391808 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q10391809 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q10391810 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q10391811 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q10391812 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q10391813 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q10391814 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q10391815 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q10391816 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q10391817 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q10391818 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q10391819 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q10391821 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q10391822 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q10391823 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q10391825 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q10391826 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q10391827 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q10391828 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q10391829 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q10391830 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q10391831 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q10391832 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q10391833 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q10391834 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q10391835 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q10391837 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q10391839 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q10391840 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q10391841 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q10391842 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q10391843 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q10391845 -2023-10-27 14:11:21.623  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q10391846 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q10391847 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q10391850 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q10391851 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q10391853 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q10391854 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q10391855 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q10391857 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q10391859 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q10391860 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q10391862 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q10391863 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q10391864 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q10391866 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q10391867 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q10391868 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q10391869 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q10391870 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q10391873 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q10391874 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q10391875 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q10391876 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q10391877 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q10391878 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q10391880 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q10391881 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q10391882 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q10391884 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q10391886 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q10391888 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q10391889 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q10391890 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q10391891 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q10391892 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q10391893 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q10391894 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q10391896 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q10391897 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q10391899 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q10391900 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q10391901 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q10391902 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q10391903 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q10391905 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q10391906 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q10391907 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q10391908 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q10391909 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q10391910 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q10391911 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q10391912 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q10391914 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q10391915 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q10391916 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q10391917 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q10391919 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q10391920 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q10391921 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q10391923 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q10391925 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q10391926 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q10391927 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q10391928 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q10391929 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q10391930 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q10391931 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q10391932 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q10391933 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q10391934 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q10391936 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q10391939 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q10391940 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q10391941 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q10391942 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q10391943 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q10391944 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q10391945 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q10391947 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q10391948 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q10391949 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q10391950 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q10391951 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q10391953 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q10391954 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q10391955 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q10391956 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q10391957 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q10391958 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q10391959 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q10391960 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q10391961 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q10391962 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q10391963 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q10391965 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q10391966 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q10391967 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q10391969 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q10391970 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q10391971 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q10391972 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q10391973 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q10391974 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q10391977 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q10391979 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q10391980 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q10391981 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q10391982 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q10391983 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q10391985 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q10391986 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q10391987 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q10392149 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q103924317 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q103924462 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q10392664 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q10392733 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q10392775 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q10393218 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q10393219 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q10393220 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q10393551 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q10394046 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q1039432 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q10394995 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q10394997 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q10395155 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q103958059 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q103958350 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q103959782 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q10396329 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q103980526 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q103982686 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q103985237 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q10398667 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q10398706 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q10398707 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q1039908 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q10399113 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q103991413 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q103993134 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q10400698 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q104007577 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q10400866 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q10401140 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q10401509 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q104022211 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q104022342 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q10402660 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q104028711 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q104029581 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q104029584 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q104033750 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q104034668 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q104042609 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q104043752 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q104047679 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q10404777 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q104049534 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q104051165 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q104051980 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q104054163 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q1040543 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q104054601 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q104057038 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q1040603 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q104062828 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q10406715 -2023-10-27 14:11:21.624  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q1040689 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q104072067 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q10407258 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q1040761 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q1040806 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q104082897 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q104084793 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q10408556 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q104086600 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q104088310 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q104092899 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q104093156 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q104093542 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q104097697 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q104097708 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q104097772 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q104097803 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q104098872 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q10410183 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q104107856 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q1041144 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q10411663 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q10411862 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q10411863 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q10411864 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q10411865 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q10411866 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q10411867 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q10411868 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q10411888 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q104119755 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q104119777 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q104127079 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q104128067 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q104128400 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q10413668 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q104145349 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q104151609 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q104151652 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q104151655 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q104152731 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q104153418 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q104154385 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q104154414 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q104156356 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q104156983 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q104157029 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q104157721 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q10415972 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q104160135 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q104161269 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q104163111 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q104165632 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q1041668 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q104170787 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q104170805 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q104170815 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q104170826 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q104170838 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q104170845 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q104176270 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q104176717 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q10417798 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q104179196 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q104179526 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q10418059 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q104182012 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q104187784 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q104188332 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q104188943 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q104189007 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q104190216 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q104192449 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q104192625 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q104205792 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q10420805 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q10420835 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q104211534 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q104211551 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q104211601 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q104212495 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q104213523 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q104213637 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q104213909 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q104214025 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q104214213 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q104217454 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q104223698 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q104223759 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q104223964 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q104234421 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q104234446 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q10423734 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q104241536 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q104243375 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q104246069 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q104247017 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q104247355 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q104250289 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q104251914 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q10425586 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q10426590 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q1042670 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q104269190 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q10428456 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q10428811 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q10429813 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q10430832 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q10430859 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q104315503 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q10432404 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q104329352 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q10433030 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q10433040 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q10433041 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q10433042 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q10433043 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q10433044 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q1043341 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q10433512 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q10433513 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q10433514 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q10433515 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q10433516 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q10433517 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q10433518 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q10433519 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q10433520 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q10433521 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q10433522 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q10433523 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q10433524 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q10433525 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q10433526 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q10433527 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q10433528 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q10433529 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q10433530 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q10433531 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q10433532 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q10433533 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q10433534 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q10433536 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q10433537 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q10433538 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q10433539 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q10433540 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q10433541 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q10434744 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q10435984 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q10436549 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q104368133 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q104372944 -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources -2023-10-27 14:11:21.625  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : result: IS of type 'resources'. -2023-10-27 14:11:21.625 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->answers: {"head":{"vars":["s1"]},"results":{"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]}} -2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : results: {"bindings":[{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}]} -2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : vars: ["s1"], key: s1 -2023-10-27 14:11:21.628 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : bindings: [{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/P97"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1000303"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100042862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100138547"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100144644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100146669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149091"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100149151"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100153085"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100154345"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100156282"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100158068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100166497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100200203"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100226840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100230981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100233550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100235719"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1002465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100247710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100251476"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255571"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100255673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256260"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256384"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100256441"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100268917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100270821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100271385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272277"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100272467"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100277657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100290884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100296954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100306163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100323660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10032888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100336041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1003491"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100350712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100363753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100368900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100369837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100375843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100377193"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100387742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100397017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1004124"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100416234"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100429444"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100437710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100476322"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100497722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100533874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100534096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100545431"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100567305"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100585173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100588445"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1005902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100600664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100605702"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100683537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100686728"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100690942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100701460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707450"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707560"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100707582"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708568"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100708828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100709508"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100722474"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100726808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100733133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100740654"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100742710"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744452"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100744910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100750442"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100752647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100766665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100767188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100768033"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100770629"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100771094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100777516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100789929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100791998"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100799377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100853469"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100869791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100872433"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100877419"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100880026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100890633"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100908749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100916130"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100927753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935224"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100935227"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100938271"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100939770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945066"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100945637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100978462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100979333"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982849"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100982861"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100983365"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997306"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100997397"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q100998590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101010922"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101013250"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101032352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101054473"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063207"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063233"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063240"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063248"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063295"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063323"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101063364"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101065644"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101071928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101075720"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101079308"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101094792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101096138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101113247"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101115774"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116447"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101116604"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101130750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101137443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1011446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101160132"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101173400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101199215"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205665"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205681"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205732"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101205779"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101209733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101223763"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101228463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101238280"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101243257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101247567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101248074"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101267136"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101324254"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101333514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101334319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101343924"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101349712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101356218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101402616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418327"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101418887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419071"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101419751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101422799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101423783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101427898"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101428516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101429521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101436914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101438997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101441954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101444705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445621"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445676"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445883"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101445913"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101453383"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101459115"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101484096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101486501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101495425"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497643"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101497866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498470"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101498584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500281"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101500907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101504200"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101522111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101524075"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101528994"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101535940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101538826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539018"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101539047"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101541410"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542180"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101542257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101552911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101554049"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566501"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101566783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101579769"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101583472"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101627797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101668466"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1016801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101695457"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101697785"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101702521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017086"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1017332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101753497"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101754990"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101758330"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101788376"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101795434"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101797745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018087"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101833802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1018465"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101913232"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101953096"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q101971567"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102039658"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102045965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102046013"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102047781"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048093"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048138"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102048854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049796"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049844"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102049925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050005"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102050884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102076291"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102083767"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102104632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102120106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102150752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158574"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102158749"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102162094"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102165489"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102177201"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102180882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102187912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102201050"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102204905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102208413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102210838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102211649"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102212673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102213098"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216056"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216486"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102216808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102217141"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102226212"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102239874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022483"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102251036"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252101"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102252119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102254530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102260583"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102261737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276173"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102276807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278045"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102278424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1022791"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102281677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102290356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102291875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102294569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102297519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102298581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102299711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310627"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102310701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102312294"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102313297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102315377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023161"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102316221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102317554"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102324008"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102328716"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102329273"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336299"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102336810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102337773"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338301"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338312"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338315"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338318"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338436"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338439"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338694"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338699"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338801"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102338813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102350347"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102352778"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102354463"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102361119"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362004"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102362324"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1023727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102379157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102388622"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102396650"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102400530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102418503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102420543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102431966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102452206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102454460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102455933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102457871"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025106"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025118"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025121"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102528897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1025919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10259887"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260424"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10260577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102616336"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10263636"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10264107"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10266053"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1026612"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10267766"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10268937"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10269529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270319"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10270984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10271175"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10272701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1027366"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274024"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10274868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102797423"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282109"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10282783"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102829543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1028297"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10284285"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102849713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286148"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286251"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286510"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10286972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q102885027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10288525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10289329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290705"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10290892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1029135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291411"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10291443"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293585"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10293927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294484"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10294550"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10295993"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296131"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10296770"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10297919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10299026"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301351"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10301981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10302268"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10303978"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103042012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103049401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10305246"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10307972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313048"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313613"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10313889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314198"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314768"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10314975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10315455"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103179432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1031816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10318606"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10319052"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10320043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103222362"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10322521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10323221"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10325569"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326696"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326700"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326701"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326703"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326704"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326713"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326722"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326724"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326725"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326726"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326727"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326729"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326730"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326736"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326737"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326739"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326742"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326745"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326746"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326751"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326753"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326754"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10326756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329206"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329657"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10329673"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103304064"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10330721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331068"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103318185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10331823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10333980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033408"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10334176"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10335304"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103375635"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337647"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10337956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10338655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1033877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10340971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103409942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341016"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1034117"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341264"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10341401"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103432988"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103449792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10346072"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103479666"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10348576"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103492756"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103498067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10349975"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103501493"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10350954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035129"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035157"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10351611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10354482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355035"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10355178"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1035611"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356616"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10356912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103582989"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10359188"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036027"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036039"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103619797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10364748"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103649446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10366548"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103676187"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103684222"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10368807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1036944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10369482"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370031"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10370032"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103705570"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103715454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10371973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372354"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372428"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372429"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10372430"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373104"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373382"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373392"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373394"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373395"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10373954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103754677"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10375920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377712"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377714"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10377717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10378137"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379103"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379249"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10379369"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103798029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10380168"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103819965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103820839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103821030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382162"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10382537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103826228"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10383257"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837374"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103837460"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1038377"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103838847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103847517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103848601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103850890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385407"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10385708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10386185"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387054"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387060"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387760"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10387761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388661"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10388793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888328"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888331"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103888641"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389579"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10389914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103911669"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391797"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391799"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391800"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391802"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391807"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391808"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391809"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391810"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391812"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391814"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391816"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391817"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391818"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391819"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391821"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391822"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391823"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391825"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391827"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391829"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391830"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391831"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391833"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391834"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391837"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391839"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391840"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391841"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391842"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391843"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391846"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391847"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391850"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391851"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391853"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391854"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391855"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391857"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391860"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391869"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391870"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391873"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391874"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391875"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391876"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391877"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391878"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391880"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391881"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391882"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391884"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391886"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391889"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391890"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391891"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391892"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391893"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391894"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391896"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391900"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391901"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391902"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391903"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391905"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391906"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391907"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391910"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391911"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391912"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391915"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391916"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391917"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391919"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391920"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391921"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391923"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391925"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391926"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391927"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391928"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391929"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391930"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391931"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391932"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391933"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391934"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391936"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391939"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391940"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391941"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391942"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391944"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391945"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391947"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391948"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391949"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391950"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391951"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391953"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391954"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391955"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391956"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391957"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391958"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391959"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391960"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391961"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391962"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391963"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391965"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391966"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391967"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391969"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391970"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391971"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391973"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391974"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391977"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391979"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391981"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391982"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391985"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391986"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10391987"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392149"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924317"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103924462"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392664"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392733"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10392775"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393218"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393219"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393220"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10393551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394046"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039432"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394995"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10394997"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10395155"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103958350"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103959782"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10396329"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103980526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103982686"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103985237"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398667"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398706"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10398707"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1039908"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10399113"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103991413"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q103993134"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104007577"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10400866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401140"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10401509"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022211"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104022342"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10402660"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104028711"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029581"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104029584"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104033750"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104034668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104042609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104043752"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104047679"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10404777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104049534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051165"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104051980"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054163"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040543"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104054601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104057038"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040603"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104062828"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10406715"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040689"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104072067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10407258"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040761"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1040806"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104082897"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104084793"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10408556"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104086600"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104088310"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104092899"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093156"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104093542"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097697"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097708"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097772"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104097803"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104098872"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10410183"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104107856"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041144"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411663"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411862"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411863"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411864"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411865"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411866"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411867"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411868"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10411888"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119755"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104119777"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104127079"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128067"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104128400"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10413668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104145349"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151609"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151652"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104151655"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104152731"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104153418"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154385"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104154414"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156356"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104156983"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157029"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104157721"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10415972"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104160135"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104161269"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104163111"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104165632"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1041668"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170787"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170815"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170826"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170838"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104170845"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176270"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104176717"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10417798"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179196"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104179526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10418059"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104182012"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104187784"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188332"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104188943"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104189007"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104190216"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192449"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104192625"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104205792"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420805"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10420835"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211551"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104211601"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104212495"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213637"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104213909"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214025"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104214213"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104217454"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223698"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223759"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104223964"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234421"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104234446"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10423734"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104241536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104243375"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104246069"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247017"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104247355"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104250289"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104251914"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10425586"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10426590"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1042670"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104269190"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428456"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10428811"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10429813"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430832"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10430859"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104315503"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10432404"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104329352"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433030"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433040"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433041"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433042"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433043"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433044"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q1043341"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433512"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433513"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433514"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433515"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433516"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433517"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433518"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433519"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433520"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433521"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433522"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433523"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433524"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433525"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433526"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433527"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433528"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433529"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433530"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433531"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433532"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433533"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433534"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433536"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433537"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433538"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433539"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433540"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10433541"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10434744"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10435984"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q10436549"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104368133"}},{"s1":{"type":"uri","value":"http://www.wikidata.org/entity/Q104372944"}}] -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 0: uri -> http://www.wikidata.org/entity/P97 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1: uri -> http://www.wikidata.org/entity/Q1000303 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 2: uri -> http://www.wikidata.org/entity/Q100042862 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 3: uri -> http://www.wikidata.org/entity/Q100138352 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 4: uri -> http://www.wikidata.org/entity/Q100138547 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 5: uri -> http://www.wikidata.org/entity/Q100144644 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 6: uri -> http://www.wikidata.org/entity/Q100146345 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 7: uri -> http://www.wikidata.org/entity/Q100146669 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 8: uri -> http://www.wikidata.org/entity/Q100149091 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 9: uri -> http://www.wikidata.org/entity/Q100149151 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 10: uri -> http://www.wikidata.org/entity/Q100153085 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 11: uri -> http://www.wikidata.org/entity/Q100154345 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 12: uri -> http://www.wikidata.org/entity/Q100156282 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 13: uri -> http://www.wikidata.org/entity/Q100158068 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 14: uri -> http://www.wikidata.org/entity/Q100166497 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 15: uri -> http://www.wikidata.org/entity/Q100200203 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 16: uri -> http://www.wikidata.org/entity/Q100226840 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 17: uri -> http://www.wikidata.org/entity/Q100230981 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 18: uri -> http://www.wikidata.org/entity/Q100233550 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 19: uri -> http://www.wikidata.org/entity/Q100235719 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 20: uri -> http://www.wikidata.org/entity/Q1002465 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 21: uri -> http://www.wikidata.org/entity/Q100247710 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 22: uri -> http://www.wikidata.org/entity/Q100251476 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 23: uri -> http://www.wikidata.org/entity/Q100255524 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 24: uri -> http://www.wikidata.org/entity/Q100255571 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 25: uri -> http://www.wikidata.org/entity/Q100255652 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 26: uri -> http://www.wikidata.org/entity/Q100255673 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 27: uri -> http://www.wikidata.org/entity/Q100256033 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 28: uri -> http://www.wikidata.org/entity/Q100256260 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 29: uri -> http://www.wikidata.org/entity/Q100256336 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 30: uri -> http://www.wikidata.org/entity/Q100256365 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 31: uri -> http://www.wikidata.org/entity/Q100256384 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 32: uri -> http://www.wikidata.org/entity/Q100256423 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 33: uri -> http://www.wikidata.org/entity/Q100256441 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 34: uri -> http://www.wikidata.org/entity/Q100268330 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 35: uri -> http://www.wikidata.org/entity/Q100268917 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 36: uri -> http://www.wikidata.org/entity/Q100270821 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 37: uri -> http://www.wikidata.org/entity/Q100271385 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 38: uri -> http://www.wikidata.org/entity/Q100272277 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 39: uri -> http://www.wikidata.org/entity/Q100272467 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 40: uri -> http://www.wikidata.org/entity/Q100277657 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 41: uri -> http://www.wikidata.org/entity/Q100290884 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 42: uri -> http://www.wikidata.org/entity/Q100296857 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 43: uri -> http://www.wikidata.org/entity/Q100296919 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 44: uri -> http://www.wikidata.org/entity/Q100296954 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 45: uri -> http://www.wikidata.org/entity/Q100306163 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 46: uri -> http://www.wikidata.org/entity/Q100323660 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 47: uri -> http://www.wikidata.org/entity/Q10032888 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 48: uri -> http://www.wikidata.org/entity/Q100336041 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 49: uri -> http://www.wikidata.org/entity/Q1003491 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 50: uri -> http://www.wikidata.org/entity/Q100350697 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 51: uri -> http://www.wikidata.org/entity/Q100350712 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 52: uri -> http://www.wikidata.org/entity/Q100363472 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 53: uri -> http://www.wikidata.org/entity/Q100363753 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 54: uri -> http://www.wikidata.org/entity/Q100368900 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 55: uri -> http://www.wikidata.org/entity/Q100369837 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 56: uri -> http://www.wikidata.org/entity/Q100375843 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 57: uri -> http://www.wikidata.org/entity/Q100377193 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 58: uri -> http://www.wikidata.org/entity/Q100387742 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 59: uri -> http://www.wikidata.org/entity/Q100397017 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 60: uri -> http://www.wikidata.org/entity/Q1004124 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 61: uri -> http://www.wikidata.org/entity/Q100416234 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 62: uri -> http://www.wikidata.org/entity/Q100429444 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 63: uri -> http://www.wikidata.org/entity/Q100437710 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 64: uri -> http://www.wikidata.org/entity/Q100476322 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 65: uri -> http://www.wikidata.org/entity/Q100497722 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 66: uri -> http://www.wikidata.org/entity/Q100533874 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 67: uri -> http://www.wikidata.org/entity/Q100534096 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 68: uri -> http://www.wikidata.org/entity/Q100545431 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 69: uri -> http://www.wikidata.org/entity/Q100567305 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 70: uri -> http://www.wikidata.org/entity/Q100585173 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 71: uri -> http://www.wikidata.org/entity/Q100588445 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 72: uri -> http://www.wikidata.org/entity/Q1005902 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 73: uri -> http://www.wikidata.org/entity/Q100600664 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 74: uri -> http://www.wikidata.org/entity/Q100605702 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 75: uri -> http://www.wikidata.org/entity/Q100683537 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 76: uri -> http://www.wikidata.org/entity/Q100686728 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 77: uri -> http://www.wikidata.org/entity/Q100690942 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 78: uri -> http://www.wikidata.org/entity/Q100701460 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 79: uri -> http://www.wikidata.org/entity/Q100707410 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 80: uri -> http://www.wikidata.org/entity/Q100707432 -2023-10-27 14:11:21.629  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 81: uri -> http://www.wikidata.org/entity/Q100707450 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 82: uri -> http://www.wikidata.org/entity/Q100707560 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 83: uri -> http://www.wikidata.org/entity/Q100707570 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 84: uri -> http://www.wikidata.org/entity/Q100707579 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 85: uri -> http://www.wikidata.org/entity/Q100707582 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 86: uri -> http://www.wikidata.org/entity/Q100708568 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 87: uri -> http://www.wikidata.org/entity/Q100708814 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 88: uri -> http://www.wikidata.org/entity/Q100708828 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 89: uri -> http://www.wikidata.org/entity/Q100709397 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 90: uri -> http://www.wikidata.org/entity/Q100709407 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 91: uri -> http://www.wikidata.org/entity/Q100709508 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 92: uri -> http://www.wikidata.org/entity/Q100722474 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 93: uri -> http://www.wikidata.org/entity/Q100726808 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 94: uri -> http://www.wikidata.org/entity/Q100733133 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 95: uri -> http://www.wikidata.org/entity/Q100740654 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 96: uri -> http://www.wikidata.org/entity/Q100742710 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 97: uri -> http://www.wikidata.org/entity/Q100744452 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 98: uri -> http://www.wikidata.org/entity/Q100744910 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 99: uri -> http://www.wikidata.org/entity/Q100750442 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 100: uri -> http://www.wikidata.org/entity/Q100752647 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 101: uri -> http://www.wikidata.org/entity/Q100766665 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 102: uri -> http://www.wikidata.org/entity/Q100767188 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 103: uri -> http://www.wikidata.org/entity/Q100768033 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 104: uri -> http://www.wikidata.org/entity/Q100770629 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 105: uri -> http://www.wikidata.org/entity/Q100771043 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 106: uri -> http://www.wikidata.org/entity/Q100771094 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 107: uri -> http://www.wikidata.org/entity/Q100777516 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 108: uri -> http://www.wikidata.org/entity/Q100789929 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 109: uri -> http://www.wikidata.org/entity/Q100791998 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 110: uri -> http://www.wikidata.org/entity/Q100799377 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 111: uri -> http://www.wikidata.org/entity/Q100853469 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 112: uri -> http://www.wikidata.org/entity/Q100869791 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 113: uri -> http://www.wikidata.org/entity/Q100872433 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 114: uri -> http://www.wikidata.org/entity/Q100877419 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 115: uri -> http://www.wikidata.org/entity/Q100880026 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 116: uri -> http://www.wikidata.org/entity/Q100890188 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 117: uri -> http://www.wikidata.org/entity/Q100890633 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 118: uri -> http://www.wikidata.org/entity/Q100908749 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 119: uri -> http://www.wikidata.org/entity/Q100916130 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 120: uri -> http://www.wikidata.org/entity/Q100927753 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 121: uri -> http://www.wikidata.org/entity/Q100935224 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 122: uri -> http://www.wikidata.org/entity/Q100935227 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 123: uri -> http://www.wikidata.org/entity/Q100938271 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 124: uri -> http://www.wikidata.org/entity/Q100939770 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 125: uri -> http://www.wikidata.org/entity/Q100945066 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 126: uri -> http://www.wikidata.org/entity/Q100945285 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 127: uri -> http://www.wikidata.org/entity/Q100945637 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 128: uri -> http://www.wikidata.org/entity/Q100978462 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 129: uri -> http://www.wikidata.org/entity/Q100979333 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 130: uri -> http://www.wikidata.org/entity/Q100982849 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 131: uri -> http://www.wikidata.org/entity/Q100982861 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 132: uri -> http://www.wikidata.org/entity/Q100983365 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 133: uri -> http://www.wikidata.org/entity/Q100997212 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 134: uri -> http://www.wikidata.org/entity/Q100997306 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 135: uri -> http://www.wikidata.org/entity/Q100997397 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 136: uri -> http://www.wikidata.org/entity/Q100998590 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 137: uri -> http://www.wikidata.org/entity/Q101010922 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 138: uri -> http://www.wikidata.org/entity/Q101013250 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 139: uri -> http://www.wikidata.org/entity/Q101032352 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 140: uri -> http://www.wikidata.org/entity/Q101054473 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 141: uri -> http://www.wikidata.org/entity/Q101063207 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 142: uri -> http://www.wikidata.org/entity/Q101063233 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 143: uri -> http://www.wikidata.org/entity/Q101063240 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 144: uri -> http://www.wikidata.org/entity/Q101063248 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 145: uri -> http://www.wikidata.org/entity/Q101063295 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 146: uri -> http://www.wikidata.org/entity/Q101063323 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 147: uri -> http://www.wikidata.org/entity/Q101063350 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 148: uri -> http://www.wikidata.org/entity/Q101063362 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 149: uri -> http://www.wikidata.org/entity/Q101063364 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 150: uri -> http://www.wikidata.org/entity/Q101065644 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 151: uri -> http://www.wikidata.org/entity/Q101071928 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 152: uri -> http://www.wikidata.org/entity/Q101075720 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 153: uri -> http://www.wikidata.org/entity/Q101079308 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 154: uri -> http://www.wikidata.org/entity/Q101094792 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 155: uri -> http://www.wikidata.org/entity/Q101096138 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 156: uri -> http://www.wikidata.org/entity/Q101113247 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 157: uri -> http://www.wikidata.org/entity/Q101115774 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 158: uri -> http://www.wikidata.org/entity/Q101116447 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 159: uri -> http://www.wikidata.org/entity/Q101116604 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 160: uri -> http://www.wikidata.org/entity/Q101130750 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 161: uri -> http://www.wikidata.org/entity/Q101137443 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 162: uri -> http://www.wikidata.org/entity/Q1011446 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 163: uri -> http://www.wikidata.org/entity/Q101160132 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 164: uri -> http://www.wikidata.org/entity/Q101173400 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 165: uri -> http://www.wikidata.org/entity/Q101199215 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 166: uri -> http://www.wikidata.org/entity/Q101205665 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 167: uri -> http://www.wikidata.org/entity/Q101205681 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 168: uri -> http://www.wikidata.org/entity/Q101205732 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 169: uri -> http://www.wikidata.org/entity/Q101205779 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 170: uri -> http://www.wikidata.org/entity/Q101209733 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 171: uri -> http://www.wikidata.org/entity/Q101223763 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 172: uri -> http://www.wikidata.org/entity/Q101228463 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 173: uri -> http://www.wikidata.org/entity/Q101238280 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 174: uri -> http://www.wikidata.org/entity/Q101243257 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 175: uri -> http://www.wikidata.org/entity/Q101247428 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 176: uri -> http://www.wikidata.org/entity/Q101247484 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 177: uri -> http://www.wikidata.org/entity/Q101247489 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 178: uri -> http://www.wikidata.org/entity/Q101247519 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 179: uri -> http://www.wikidata.org/entity/Q101247540 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 180: uri -> http://www.wikidata.org/entity/Q101247567 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 181: uri -> http://www.wikidata.org/entity/Q101248074 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 182: uri -> http://www.wikidata.org/entity/Q101267136 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 183: uri -> http://www.wikidata.org/entity/Q101324254 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 184: uri -> http://www.wikidata.org/entity/Q101333514 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 185: uri -> http://www.wikidata.org/entity/Q101334319 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 186: uri -> http://www.wikidata.org/entity/Q101343924 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 187: uri -> http://www.wikidata.org/entity/Q101349536 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 188: uri -> http://www.wikidata.org/entity/Q101349712 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 189: uri -> http://www.wikidata.org/entity/Q101356218 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 190: uri -> http://www.wikidata.org/entity/Q101402616 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 191: uri -> http://www.wikidata.org/entity/Q101418327 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 192: uri -> http://www.wikidata.org/entity/Q101418887 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 193: uri -> http://www.wikidata.org/entity/Q101419071 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 194: uri -> http://www.wikidata.org/entity/Q101419751 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 195: uri -> http://www.wikidata.org/entity/Q101422799 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 196: uri -> http://www.wikidata.org/entity/Q101423783 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 197: uri -> http://www.wikidata.org/entity/Q101427897 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 198: uri -> http://www.wikidata.org/entity/Q101427898 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 199: uri -> http://www.wikidata.org/entity/Q101428516 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 200: uri -> http://www.wikidata.org/entity/Q101429521 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 201: uri -> http://www.wikidata.org/entity/Q101436914 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 202: uri -> http://www.wikidata.org/entity/Q101438997 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 203: uri -> http://www.wikidata.org/entity/Q101441954 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 204: uri -> http://www.wikidata.org/entity/Q101444705 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 205: uri -> http://www.wikidata.org/entity/Q101445621 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 206: uri -> http://www.wikidata.org/entity/Q101445676 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 207: uri -> http://www.wikidata.org/entity/Q101445883 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 208: uri -> http://www.wikidata.org/entity/Q101445913 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 209: uri -> http://www.wikidata.org/entity/Q101453383 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 210: uri -> http://www.wikidata.org/entity/Q101459115 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 211: uri -> http://www.wikidata.org/entity/Q101484096 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 212: uri -> http://www.wikidata.org/entity/Q101486501 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 213: uri -> http://www.wikidata.org/entity/Q101495425 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 214: uri -> http://www.wikidata.org/entity/Q101497289 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 215: uri -> http://www.wikidata.org/entity/Q101497449 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 216: uri -> http://www.wikidata.org/entity/Q101497643 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 217: uri -> http://www.wikidata.org/entity/Q101497866 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 218: uri -> http://www.wikidata.org/entity/Q101498264 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 219: uri -> http://www.wikidata.org/entity/Q101498470 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 220: uri -> http://www.wikidata.org/entity/Q101498584 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 221: uri -> http://www.wikidata.org/entity/Q101500281 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 222: uri -> http://www.wikidata.org/entity/Q101500907 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 223: uri -> http://www.wikidata.org/entity/Q101504200 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 224: uri -> http://www.wikidata.org/entity/Q101522111 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 225: uri -> http://www.wikidata.org/entity/Q101524075 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 226: uri -> http://www.wikidata.org/entity/Q101528994 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 227: uri -> http://www.wikidata.org/entity/Q101535940 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 228: uri -> http://www.wikidata.org/entity/Q101538319 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 229: uri -> http://www.wikidata.org/entity/Q101538374 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 230: uri -> http://www.wikidata.org/entity/Q101538434 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 231: uri -> http://www.wikidata.org/entity/Q101538703 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 232: uri -> http://www.wikidata.org/entity/Q101538826 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 233: uri -> http://www.wikidata.org/entity/Q101539018 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 234: uri -> http://www.wikidata.org/entity/Q101539047 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 235: uri -> http://www.wikidata.org/entity/Q101541410 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 236: uri -> http://www.wikidata.org/entity/Q101542180 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 237: uri -> http://www.wikidata.org/entity/Q101542257 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 238: uri -> http://www.wikidata.org/entity/Q101552911 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 239: uri -> http://www.wikidata.org/entity/Q101554049 -2023-10-27 14:11:21.630  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 240: uri -> http://www.wikidata.org/entity/Q101566501 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 241: uri -> http://www.wikidata.org/entity/Q101566783 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 242: uri -> http://www.wikidata.org/entity/Q101579769 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 243: uri -> http://www.wikidata.org/entity/Q101583472 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 244: uri -> http://www.wikidata.org/entity/Q101627797 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 245: uri -> http://www.wikidata.org/entity/Q1016407 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 246: uri -> http://www.wikidata.org/entity/Q101668466 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 247: uri -> http://www.wikidata.org/entity/Q1016801 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 248: uri -> http://www.wikidata.org/entity/Q101695457 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 249: uri -> http://www.wikidata.org/entity/Q101697785 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 250: uri -> http://www.wikidata.org/entity/Q101702521 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 251: uri -> http://www.wikidata.org/entity/Q1017046 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 252: uri -> http://www.wikidata.org/entity/Q1017086 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 253: uri -> http://www.wikidata.org/entity/Q1017332 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 254: uri -> http://www.wikidata.org/entity/Q101753497 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 255: uri -> http://www.wikidata.org/entity/Q101754733 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 256: uri -> http://www.wikidata.org/entity/Q101754990 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 257: uri -> http://www.wikidata.org/entity/Q101758330 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 258: uri -> http://www.wikidata.org/entity/Q101788376 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 259: uri -> http://www.wikidata.org/entity/Q101795434 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 260: uri -> http://www.wikidata.org/entity/Q101797745 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 261: uri -> http://www.wikidata.org/entity/Q1018087 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 262: uri -> http://www.wikidata.org/entity/Q101833802 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 263: uri -> http://www.wikidata.org/entity/Q1018465 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 264: uri -> http://www.wikidata.org/entity/Q101913232 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 265: uri -> http://www.wikidata.org/entity/Q101953096 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 266: uri -> http://www.wikidata.org/entity/Q101971567 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 267: uri -> http://www.wikidata.org/entity/Q102039658 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 268: uri -> http://www.wikidata.org/entity/Q102045857 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 269: uri -> http://www.wikidata.org/entity/Q102045965 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 270: uri -> http://www.wikidata.org/entity/Q102046013 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 271: uri -> http://www.wikidata.org/entity/Q102047781 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 272: uri -> http://www.wikidata.org/entity/Q102048093 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 273: uri -> http://www.wikidata.org/entity/Q102048138 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 274: uri -> http://www.wikidata.org/entity/Q102048612 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 275: uri -> http://www.wikidata.org/entity/Q102048854 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 276: uri -> http://www.wikidata.org/entity/Q102049697 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 277: uri -> http://www.wikidata.org/entity/Q102049796 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 278: uri -> http://www.wikidata.org/entity/Q102049844 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 279: uri -> http://www.wikidata.org/entity/Q102049925 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 280: uri -> http://www.wikidata.org/entity/Q102050005 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 281: uri -> http://www.wikidata.org/entity/Q102050517 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 282: uri -> http://www.wikidata.org/entity/Q102050884 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 283: uri -> http://www.wikidata.org/entity/Q102076291 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 284: uri -> http://www.wikidata.org/entity/Q102083 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 285: uri -> http://www.wikidata.org/entity/Q102083439 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 286: uri -> http://www.wikidata.org/entity/Q102083767 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 287: uri -> http://www.wikidata.org/entity/Q102104632 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 288: uri -> http://www.wikidata.org/entity/Q102120106 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 289: uri -> http://www.wikidata.org/entity/Q102150752 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 290: uri -> http://www.wikidata.org/entity/Q102158574 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 291: uri -> http://www.wikidata.org/entity/Q102158749 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 292: uri -> http://www.wikidata.org/entity/Q102162072 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 293: uri -> http://www.wikidata.org/entity/Q102162094 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 294: uri -> http://www.wikidata.org/entity/Q102165489 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 295: uri -> http://www.wikidata.org/entity/Q102177201 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 296: uri -> http://www.wikidata.org/entity/Q102180882 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 297: uri -> http://www.wikidata.org/entity/Q102187356 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 298: uri -> http://www.wikidata.org/entity/Q102187912 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 299: uri -> http://www.wikidata.org/entity/Q102201050 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 300: uri -> http://www.wikidata.org/entity/Q102204875 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 301: uri -> http://www.wikidata.org/entity/Q102204893 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 302: uri -> http://www.wikidata.org/entity/Q102204905 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 303: uri -> http://www.wikidata.org/entity/Q102208413 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 304: uri -> http://www.wikidata.org/entity/Q102210482 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 305: uri -> http://www.wikidata.org/entity/Q102210838 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 306: uri -> http://www.wikidata.org/entity/Q102211352 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 307: uri -> http://www.wikidata.org/entity/Q102211649 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 308: uri -> http://www.wikidata.org/entity/Q102212673 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 309: uri -> http://www.wikidata.org/entity/Q102213098 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 310: uri -> http://www.wikidata.org/entity/Q102216056 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 311: uri -> http://www.wikidata.org/entity/Q102216237 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 312: uri -> http://www.wikidata.org/entity/Q102216486 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 313: uri -> http://www.wikidata.org/entity/Q102216808 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 314: uri -> http://www.wikidata.org/entity/Q102217141 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 315: uri -> http://www.wikidata.org/entity/Q102226106 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 316: uri -> http://www.wikidata.org/entity/Q102226212 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 317: uri -> http://www.wikidata.org/entity/Q102239874 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 318: uri -> http://www.wikidata.org/entity/Q1022483 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 319: uri -> http://www.wikidata.org/entity/Q102251036 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 320: uri -> http://www.wikidata.org/entity/Q102252101 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 321: uri -> http://www.wikidata.org/entity/Q102252119 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 322: uri -> http://www.wikidata.org/entity/Q102254530 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 323: uri -> http://www.wikidata.org/entity/Q102260583 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 324: uri -> http://www.wikidata.org/entity/Q102261737 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 325: uri -> http://www.wikidata.org/entity/Q102276173 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 326: uri -> http://www.wikidata.org/entity/Q102276807 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 327: uri -> http://www.wikidata.org/entity/Q102278041 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 328: uri -> http://www.wikidata.org/entity/Q102278043 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 329: uri -> http://www.wikidata.org/entity/Q102278045 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 330: uri -> http://www.wikidata.org/entity/Q102278048 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 331: uri -> http://www.wikidata.org/entity/Q102278424 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 332: uri -> http://www.wikidata.org/entity/Q1022791 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 333: uri -> http://www.wikidata.org/entity/Q102281601 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 334: uri -> http://www.wikidata.org/entity/Q102281677 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 335: uri -> http://www.wikidata.org/entity/Q102290356 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 336: uri -> http://www.wikidata.org/entity/Q102291484 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 337: uri -> http://www.wikidata.org/entity/Q102291875 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 338: uri -> http://www.wikidata.org/entity/Q102294569 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 339: uri -> http://www.wikidata.org/entity/Q102297519 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 340: uri -> http://www.wikidata.org/entity/Q102298581 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 341: uri -> http://www.wikidata.org/entity/Q102299711 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 342: uri -> http://www.wikidata.org/entity/Q102310627 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 343: uri -> http://www.wikidata.org/entity/Q102310701 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 344: uri -> http://www.wikidata.org/entity/Q102312294 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 345: uri -> http://www.wikidata.org/entity/Q102313297 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 346: uri -> http://www.wikidata.org/entity/Q102315377 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 347: uri -> http://www.wikidata.org/entity/Q1023161 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 348: uri -> http://www.wikidata.org/entity/Q102316221 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 349: uri -> http://www.wikidata.org/entity/Q102317157 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 350: uri -> http://www.wikidata.org/entity/Q102317554 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 351: uri -> http://www.wikidata.org/entity/Q102324008 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 352: uri -> http://www.wikidata.org/entity/Q102328716 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 353: uri -> http://www.wikidata.org/entity/Q102329273 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 354: uri -> http://www.wikidata.org/entity/Q102336299 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 355: uri -> http://www.wikidata.org/entity/Q102336787 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 356: uri -> http://www.wikidata.org/entity/Q102336810 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 357: uri -> http://www.wikidata.org/entity/Q102337773 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 358: uri -> http://www.wikidata.org/entity/Q102338301 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 359: uri -> http://www.wikidata.org/entity/Q102338310 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 360: uri -> http://www.wikidata.org/entity/Q102338312 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 361: uri -> http://www.wikidata.org/entity/Q102338315 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 362: uri -> http://www.wikidata.org/entity/Q102338318 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 363: uri -> http://www.wikidata.org/entity/Q102338436 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 364: uri -> http://www.wikidata.org/entity/Q102338439 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 365: uri -> http://www.wikidata.org/entity/Q102338694 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 366: uri -> http://www.wikidata.org/entity/Q102338699 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 367: uri -> http://www.wikidata.org/entity/Q102338704 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 368: uri -> http://www.wikidata.org/entity/Q102338706 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 369: uri -> http://www.wikidata.org/entity/Q102338801 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 370: uri -> http://www.wikidata.org/entity/Q102338805 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 371: uri -> http://www.wikidata.org/entity/Q102338807 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 372: uri -> http://www.wikidata.org/entity/Q102338810 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 373: uri -> http://www.wikidata.org/entity/Q102338811 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 374: uri -> http://www.wikidata.org/entity/Q102338813 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 375: uri -> http://www.wikidata.org/entity/Q102350347 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 376: uri -> http://www.wikidata.org/entity/Q102352778 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 377: uri -> http://www.wikidata.org/entity/Q102354463 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 378: uri -> http://www.wikidata.org/entity/Q102361119 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 379: uri -> http://www.wikidata.org/entity/Q102362004 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 380: uri -> http://www.wikidata.org/entity/Q102362324 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 381: uri -> http://www.wikidata.org/entity/Q1023727 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 382: uri -> http://www.wikidata.org/entity/Q102379157 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 383: uri -> http://www.wikidata.org/entity/Q102388622 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 384: uri -> http://www.wikidata.org/entity/Q102396650 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 385: uri -> http://www.wikidata.org/entity/Q102400530 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 386: uri -> http://www.wikidata.org/entity/Q102418503 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 387: uri -> http://www.wikidata.org/entity/Q102420543 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 388: uri -> http://www.wikidata.org/entity/Q102431966 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 389: uri -> http://www.wikidata.org/entity/Q102452206 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 390: uri -> http://www.wikidata.org/entity/Q102454460 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 391: uri -> http://www.wikidata.org/entity/Q102455933 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 392: uri -> http://www.wikidata.org/entity/Q102457871 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 393: uri -> http://www.wikidata.org/entity/Q1025106 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 394: uri -> http://www.wikidata.org/entity/Q1025118 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 395: uri -> http://www.wikidata.org/entity/Q1025121 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 396: uri -> http://www.wikidata.org/entity/Q102528897 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 397: uri -> http://www.wikidata.org/entity/Q1025919 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 398: uri -> http://www.wikidata.org/entity/Q10259887 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 399: uri -> http://www.wikidata.org/entity/Q10260424 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 400: uri -> http://www.wikidata.org/entity/Q10260577 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 401: uri -> http://www.wikidata.org/entity/Q102616336 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 402: uri -> http://www.wikidata.org/entity/Q10263636 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 403: uri -> http://www.wikidata.org/entity/Q10264107 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 404: uri -> http://www.wikidata.org/entity/Q10266053 -2023-10-27 14:11:21.631  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 405: uri -> http://www.wikidata.org/entity/Q1026612 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 406: uri -> http://www.wikidata.org/entity/Q10267059 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 407: uri -> http://www.wikidata.org/entity/Q10267060 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 408: uri -> http://www.wikidata.org/entity/Q10267766 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 409: uri -> http://www.wikidata.org/entity/Q10268756 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 410: uri -> http://www.wikidata.org/entity/Q10268937 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 411: uri -> http://www.wikidata.org/entity/Q10269109 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 412: uri -> http://www.wikidata.org/entity/Q10269524 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 413: uri -> http://www.wikidata.org/entity/Q10269526 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 414: uri -> http://www.wikidata.org/entity/Q10269529 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 415: uri -> http://www.wikidata.org/entity/Q10270319 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 416: uri -> http://www.wikidata.org/entity/Q10270984 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 417: uri -> http://www.wikidata.org/entity/Q10271017 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 418: uri -> http://www.wikidata.org/entity/Q10271175 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 419: uri -> http://www.wikidata.org/entity/Q10272701 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 420: uri -> http://www.wikidata.org/entity/Q1027366 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 421: uri -> http://www.wikidata.org/entity/Q10274024 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 422: uri -> http://www.wikidata.org/entity/Q10274868 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 423: uri -> http://www.wikidata.org/entity/Q102797423 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 424: uri -> http://www.wikidata.org/entity/Q10282109 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 425: uri -> http://www.wikidata.org/entity/Q10282783 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 426: uri -> http://www.wikidata.org/entity/Q102829543 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 427: uri -> http://www.wikidata.org/entity/Q1028297 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 428: uri -> http://www.wikidata.org/entity/Q10284285 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 429: uri -> http://www.wikidata.org/entity/Q102849713 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 430: uri -> http://www.wikidata.org/entity/Q10286148 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 431: uri -> http://www.wikidata.org/entity/Q10286251 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 432: uri -> http://www.wikidata.org/entity/Q10286510 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 433: uri -> http://www.wikidata.org/entity/Q10286661 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 434: uri -> http://www.wikidata.org/entity/Q10286972 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 435: uri -> http://www.wikidata.org/entity/Q102885027 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 436: uri -> http://www.wikidata.org/entity/Q10288525 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 437: uri -> http://www.wikidata.org/entity/Q10289329 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 438: uri -> http://www.wikidata.org/entity/Q10290705 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 439: uri -> http://www.wikidata.org/entity/Q10290892 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 440: uri -> http://www.wikidata.org/entity/Q1029135 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 441: uri -> http://www.wikidata.org/entity/Q10291411 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 442: uri -> http://www.wikidata.org/entity/Q10291443 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 443: uri -> http://www.wikidata.org/entity/Q10293585 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 444: uri -> http://www.wikidata.org/entity/Q10293927 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 445: uri -> http://www.wikidata.org/entity/Q10294040 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 446: uri -> http://www.wikidata.org/entity/Q10294484 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 447: uri -> http://www.wikidata.org/entity/Q10294550 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 448: uri -> http://www.wikidata.org/entity/Q10295954 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 449: uri -> http://www.wikidata.org/entity/Q10295993 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 450: uri -> http://www.wikidata.org/entity/Q10296131 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 451: uri -> http://www.wikidata.org/entity/Q10296770 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 452: uri -> http://www.wikidata.org/entity/Q10297919 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 453: uri -> http://www.wikidata.org/entity/Q10299026 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 454: uri -> http://www.wikidata.org/entity/Q10301351 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 455: uri -> http://www.wikidata.org/entity/Q10301981 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 456: uri -> http://www.wikidata.org/entity/Q10302268 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 457: uri -> http://www.wikidata.org/entity/Q10303514 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 458: uri -> http://www.wikidata.org/entity/Q10303515 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 459: uri -> http://www.wikidata.org/entity/Q10303537 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 460: uri -> http://www.wikidata.org/entity/Q10303540 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 461: uri -> http://www.wikidata.org/entity/Q10303978 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 462: uri -> http://www.wikidata.org/entity/Q103042012 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 463: uri -> http://www.wikidata.org/entity/Q103049401 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 464: uri -> http://www.wikidata.org/entity/Q10305017 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 465: uri -> http://www.wikidata.org/entity/Q10305246 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 466: uri -> http://www.wikidata.org/entity/Q10307972 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 467: uri -> http://www.wikidata.org/entity/Q10313048 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 468: uri -> http://www.wikidata.org/entity/Q10313385 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 469: uri -> http://www.wikidata.org/entity/Q10313613 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 470: uri -> http://www.wikidata.org/entity/Q10313703 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 471: uri -> http://www.wikidata.org/entity/Q10313889 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 472: uri -> http://www.wikidata.org/entity/Q10314198 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 473: uri -> http://www.wikidata.org/entity/Q10314768 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 474: uri -> http://www.wikidata.org/entity/Q10314975 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 475: uri -> http://www.wikidata.org/entity/Q10315455 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 476: uri -> http://www.wikidata.org/entity/Q103163 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 477: uri -> http://www.wikidata.org/entity/Q103179432 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 478: uri -> http://www.wikidata.org/entity/Q1031816 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 479: uri -> http://www.wikidata.org/entity/Q10318606 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 480: uri -> http://www.wikidata.org/entity/Q10319052 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 481: uri -> http://www.wikidata.org/entity/Q10320043 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 482: uri -> http://www.wikidata.org/entity/Q103222362 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 483: uri -> http://www.wikidata.org/entity/Q10322521 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 484: uri -> http://www.wikidata.org/entity/Q10323221 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 485: uri -> http://www.wikidata.org/entity/Q10325569 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 486: uri -> http://www.wikidata.org/entity/Q10326696 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 487: uri -> http://www.wikidata.org/entity/Q10326697 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 488: uri -> http://www.wikidata.org/entity/Q10326698 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 489: uri -> http://www.wikidata.org/entity/Q10326700 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 490: uri -> http://www.wikidata.org/entity/Q10326701 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 491: uri -> http://www.wikidata.org/entity/Q10326703 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 492: uri -> http://www.wikidata.org/entity/Q10326704 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 493: uri -> http://www.wikidata.org/entity/Q10326708 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 494: uri -> http://www.wikidata.org/entity/Q10326712 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 495: uri -> http://www.wikidata.org/entity/Q10326713 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 496: uri -> http://www.wikidata.org/entity/Q10326714 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 497: uri -> http://www.wikidata.org/entity/Q10326715 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 498: uri -> http://www.wikidata.org/entity/Q10326722 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 499: uri -> http://www.wikidata.org/entity/Q10326724 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 500: uri -> http://www.wikidata.org/entity/Q10326725 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 501: uri -> http://www.wikidata.org/entity/Q10326726 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 502: uri -> http://www.wikidata.org/entity/Q10326727 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 503: uri -> http://www.wikidata.org/entity/Q10326729 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 504: uri -> http://www.wikidata.org/entity/Q10326730 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 505: uri -> http://www.wikidata.org/entity/Q10326731 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 506: uri -> http://www.wikidata.org/entity/Q10326733 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 507: uri -> http://www.wikidata.org/entity/Q10326734 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 508: uri -> http://www.wikidata.org/entity/Q10326736 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 509: uri -> http://www.wikidata.org/entity/Q10326737 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 510: uri -> http://www.wikidata.org/entity/Q10326739 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 511: uri -> http://www.wikidata.org/entity/Q10326742 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 512: uri -> http://www.wikidata.org/entity/Q10326744 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 513: uri -> http://www.wikidata.org/entity/Q10326745 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 514: uri -> http://www.wikidata.org/entity/Q10326746 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 515: uri -> http://www.wikidata.org/entity/Q10326751 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 516: uri -> http://www.wikidata.org/entity/Q10326753 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 517: uri -> http://www.wikidata.org/entity/Q10326754 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 518: uri -> http://www.wikidata.org/entity/Q10326756 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 519: uri -> http://www.wikidata.org/entity/Q10329206 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 520: uri -> http://www.wikidata.org/entity/Q10329657 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 521: uri -> http://www.wikidata.org/entity/Q10329673 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 522: uri -> http://www.wikidata.org/entity/Q103304064 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 523: uri -> http://www.wikidata.org/entity/Q10330721 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 524: uri -> http://www.wikidata.org/entity/Q10331068 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 525: uri -> http://www.wikidata.org/entity/Q103318185 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 526: uri -> http://www.wikidata.org/entity/Q10331823 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 527: uri -> http://www.wikidata.org/entity/Q10333980 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 528: uri -> http://www.wikidata.org/entity/Q1033408 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 529: uri -> http://www.wikidata.org/entity/Q10334176 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 530: uri -> http://www.wikidata.org/entity/Q1033460 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 531: uri -> http://www.wikidata.org/entity/Q10335304 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 532: uri -> http://www.wikidata.org/entity/Q103375029 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 533: uri -> http://www.wikidata.org/entity/Q103375635 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 534: uri -> http://www.wikidata.org/entity/Q10337647 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 535: uri -> http://www.wikidata.org/entity/Q10337956 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 536: uri -> http://www.wikidata.org/entity/Q10338655 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 537: uri -> http://www.wikidata.org/entity/Q1033877 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 538: uri -> http://www.wikidata.org/entity/Q10340551 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 539: uri -> http://www.wikidata.org/entity/Q10340971 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 540: uri -> http://www.wikidata.org/entity/Q103409942 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 541: uri -> http://www.wikidata.org/entity/Q10341016 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 542: uri -> http://www.wikidata.org/entity/Q1034117 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 543: uri -> http://www.wikidata.org/entity/Q10341264 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 544: uri -> http://www.wikidata.org/entity/Q10341401 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 545: uri -> http://www.wikidata.org/entity/Q103432988 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 546: uri -> http://www.wikidata.org/entity/Q103449792 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 547: uri -> http://www.wikidata.org/entity/Q10346072 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 548: uri -> http://www.wikidata.org/entity/Q103479666 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 549: uri -> http://www.wikidata.org/entity/Q10348576 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 550: uri -> http://www.wikidata.org/entity/Q10349213 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 551: uri -> http://www.wikidata.org/entity/Q10349216 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 552: uri -> http://www.wikidata.org/entity/Q103492756 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 553: uri -> http://www.wikidata.org/entity/Q103498067 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 554: uri -> http://www.wikidata.org/entity/Q10349975 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 555: uri -> http://www.wikidata.org/entity/Q103501493 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 556: uri -> http://www.wikidata.org/entity/Q10350954 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 557: uri -> http://www.wikidata.org/entity/Q1035129 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 558: uri -> http://www.wikidata.org/entity/Q10351538 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 559: uri -> http://www.wikidata.org/entity/Q1035157 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 560: uri -> http://www.wikidata.org/entity/Q10351611 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 561: uri -> http://www.wikidata.org/entity/Q10354482 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 562: uri -> http://www.wikidata.org/entity/Q10355035 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 563: uri -> http://www.wikidata.org/entity/Q10355042 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 564: uri -> http://www.wikidata.org/entity/Q10355178 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 565: uri -> http://www.wikidata.org/entity/Q1035611 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 566: uri -> http://www.wikidata.org/entity/Q10356616 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 567: uri -> http://www.wikidata.org/entity/Q10356912 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 568: uri -> http://www.wikidata.org/entity/Q103582989 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 569: uri -> http://www.wikidata.org/entity/Q10359188 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 570: uri -> http://www.wikidata.org/entity/Q1036025 -2023-10-27 14:11:21.632  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 571: uri -> http://www.wikidata.org/entity/Q1036027 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 572: uri -> http://www.wikidata.org/entity/Q1036039 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 573: uri -> http://www.wikidata.org/entity/Q103619797 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 574: uri -> http://www.wikidata.org/entity/Q10364748 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 575: uri -> http://www.wikidata.org/entity/Q103649446 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 576: uri -> http://www.wikidata.org/entity/Q10366548 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 577: uri -> http://www.wikidata.org/entity/Q103676187 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 578: uri -> http://www.wikidata.org/entity/Q103684222 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 579: uri -> http://www.wikidata.org/entity/Q10368807 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 580: uri -> http://www.wikidata.org/entity/Q1036944 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 581: uri -> http://www.wikidata.org/entity/Q10369482 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 582: uri -> http://www.wikidata.org/entity/Q10370031 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 583: uri -> http://www.wikidata.org/entity/Q10370032 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 584: uri -> http://www.wikidata.org/entity/Q103705570 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 585: uri -> http://www.wikidata.org/entity/Q103715454 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 586: uri -> http://www.wikidata.org/entity/Q10371973 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 587: uri -> http://www.wikidata.org/entity/Q10372354 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 588: uri -> http://www.wikidata.org/entity/Q10372428 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 589: uri -> http://www.wikidata.org/entity/Q10372429 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 590: uri -> http://www.wikidata.org/entity/Q10372430 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 591: uri -> http://www.wikidata.org/entity/Q10373104 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 592: uri -> http://www.wikidata.org/entity/Q10373382 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 593: uri -> http://www.wikidata.org/entity/Q10373392 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 594: uri -> http://www.wikidata.org/entity/Q10373394 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 595: uri -> http://www.wikidata.org/entity/Q10373395 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 596: uri -> http://www.wikidata.org/entity/Q10373954 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 597: uri -> http://www.wikidata.org/entity/Q103754677 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 598: uri -> http://www.wikidata.org/entity/Q10375920 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 599: uri -> http://www.wikidata.org/entity/Q10377711 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 600: uri -> http://www.wikidata.org/entity/Q10377712 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 601: uri -> http://www.wikidata.org/entity/Q10377714 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 602: uri -> http://www.wikidata.org/entity/Q10377715 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 603: uri -> http://www.wikidata.org/entity/Q10377717 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 604: uri -> http://www.wikidata.org/entity/Q10378137 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 605: uri -> http://www.wikidata.org/entity/Q10379103 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 606: uri -> http://www.wikidata.org/entity/Q10379249 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 607: uri -> http://www.wikidata.org/entity/Q10379369 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 608: uri -> http://www.wikidata.org/entity/Q103798029 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 609: uri -> http://www.wikidata.org/entity/Q10380168 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 610: uri -> http://www.wikidata.org/entity/Q103819965 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 611: uri -> http://www.wikidata.org/entity/Q103820839 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 612: uri -> http://www.wikidata.org/entity/Q103821030 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 613: uri -> http://www.wikidata.org/entity/Q10382162 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 614: uri -> http://www.wikidata.org/entity/Q10382537 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 615: uri -> http://www.wikidata.org/entity/Q103826228 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 616: uri -> http://www.wikidata.org/entity/Q10383257 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 617: uri -> http://www.wikidata.org/entity/Q103837374 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 618: uri -> http://www.wikidata.org/entity/Q103837460 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 619: uri -> http://www.wikidata.org/entity/Q1038377 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 620: uri -> http://www.wikidata.org/entity/Q103838847 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 621: uri -> http://www.wikidata.org/entity/Q103847517 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 622: uri -> http://www.wikidata.org/entity/Q103848331 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 623: uri -> http://www.wikidata.org/entity/Q103848601 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 624: uri -> http://www.wikidata.org/entity/Q103850890 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 625: uri -> http://www.wikidata.org/entity/Q10385407 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 626: uri -> http://www.wikidata.org/entity/Q10385708 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 627: uri -> http://www.wikidata.org/entity/Q10386185 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 628: uri -> http://www.wikidata.org/entity/Q10387054 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 629: uri -> http://www.wikidata.org/entity/Q10387060 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 630: uri -> http://www.wikidata.org/entity/Q10387760 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 631: uri -> http://www.wikidata.org/entity/Q10387761 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 632: uri -> http://www.wikidata.org/entity/Q10388661 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 633: uri -> http://www.wikidata.org/entity/Q10388793 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 634: uri -> http://www.wikidata.org/entity/Q103888328 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 635: uri -> http://www.wikidata.org/entity/Q103888331 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 636: uri -> http://www.wikidata.org/entity/Q103888641 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 637: uri -> http://www.wikidata.org/entity/Q10389579 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 638: uri -> http://www.wikidata.org/entity/Q10389914 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 639: uri -> http://www.wikidata.org/entity/Q103911669 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 640: uri -> http://www.wikidata.org/entity/Q10391797 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 641: uri -> http://www.wikidata.org/entity/Q10391798 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 642: uri -> http://www.wikidata.org/entity/Q10391799 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 643: uri -> http://www.wikidata.org/entity/Q10391800 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 644: uri -> http://www.wikidata.org/entity/Q10391802 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 645: uri -> http://www.wikidata.org/entity/Q10391803 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 646: uri -> http://www.wikidata.org/entity/Q10391807 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 647: uri -> http://www.wikidata.org/entity/Q10391808 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 648: uri -> http://www.wikidata.org/entity/Q10391809 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 649: uri -> http://www.wikidata.org/entity/Q10391810 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 650: uri -> http://www.wikidata.org/entity/Q10391811 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 651: uri -> http://www.wikidata.org/entity/Q10391812 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 652: uri -> http://www.wikidata.org/entity/Q10391813 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 653: uri -> http://www.wikidata.org/entity/Q10391814 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 654: uri -> http://www.wikidata.org/entity/Q10391815 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 655: uri -> http://www.wikidata.org/entity/Q10391816 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 656: uri -> http://www.wikidata.org/entity/Q10391817 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 657: uri -> http://www.wikidata.org/entity/Q10391818 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 658: uri -> http://www.wikidata.org/entity/Q10391819 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 659: uri -> http://www.wikidata.org/entity/Q10391821 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 660: uri -> http://www.wikidata.org/entity/Q10391822 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 661: uri -> http://www.wikidata.org/entity/Q10391823 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 662: uri -> http://www.wikidata.org/entity/Q10391825 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 663: uri -> http://www.wikidata.org/entity/Q10391826 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 664: uri -> http://www.wikidata.org/entity/Q10391827 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 665: uri -> http://www.wikidata.org/entity/Q10391828 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 666: uri -> http://www.wikidata.org/entity/Q10391829 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 667: uri -> http://www.wikidata.org/entity/Q10391830 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 668: uri -> http://www.wikidata.org/entity/Q10391831 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 669: uri -> http://www.wikidata.org/entity/Q10391832 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 670: uri -> http://www.wikidata.org/entity/Q10391833 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 671: uri -> http://www.wikidata.org/entity/Q10391834 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 672: uri -> http://www.wikidata.org/entity/Q10391835 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 673: uri -> http://www.wikidata.org/entity/Q10391837 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 674: uri -> http://www.wikidata.org/entity/Q10391839 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 675: uri -> http://www.wikidata.org/entity/Q10391840 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 676: uri -> http://www.wikidata.org/entity/Q10391841 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 677: uri -> http://www.wikidata.org/entity/Q10391842 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 678: uri -> http://www.wikidata.org/entity/Q10391843 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 679: uri -> http://www.wikidata.org/entity/Q10391845 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 680: uri -> http://www.wikidata.org/entity/Q10391846 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 681: uri -> http://www.wikidata.org/entity/Q10391847 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 682: uri -> http://www.wikidata.org/entity/Q10391850 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 683: uri -> http://www.wikidata.org/entity/Q10391851 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 684: uri -> http://www.wikidata.org/entity/Q10391853 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 685: uri -> http://www.wikidata.org/entity/Q10391854 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 686: uri -> http://www.wikidata.org/entity/Q10391855 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 687: uri -> http://www.wikidata.org/entity/Q10391857 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 688: uri -> http://www.wikidata.org/entity/Q10391859 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 689: uri -> http://www.wikidata.org/entity/Q10391860 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 690: uri -> http://www.wikidata.org/entity/Q10391862 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 691: uri -> http://www.wikidata.org/entity/Q10391863 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 692: uri -> http://www.wikidata.org/entity/Q10391864 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 693: uri -> http://www.wikidata.org/entity/Q10391866 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 694: uri -> http://www.wikidata.org/entity/Q10391867 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 695: uri -> http://www.wikidata.org/entity/Q10391868 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 696: uri -> http://www.wikidata.org/entity/Q10391869 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 697: uri -> http://www.wikidata.org/entity/Q10391870 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 698: uri -> http://www.wikidata.org/entity/Q10391873 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 699: uri -> http://www.wikidata.org/entity/Q10391874 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 700: uri -> http://www.wikidata.org/entity/Q10391875 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 701: uri -> http://www.wikidata.org/entity/Q10391876 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 702: uri -> http://www.wikidata.org/entity/Q10391877 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 703: uri -> http://www.wikidata.org/entity/Q10391878 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 704: uri -> http://www.wikidata.org/entity/Q10391880 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 705: uri -> http://www.wikidata.org/entity/Q10391881 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 706: uri -> http://www.wikidata.org/entity/Q10391882 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 707: uri -> http://www.wikidata.org/entity/Q10391884 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 708: uri -> http://www.wikidata.org/entity/Q10391886 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 709: uri -> http://www.wikidata.org/entity/Q10391888 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 710: uri -> http://www.wikidata.org/entity/Q10391889 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 711: uri -> http://www.wikidata.org/entity/Q10391890 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 712: uri -> http://www.wikidata.org/entity/Q10391891 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 713: uri -> http://www.wikidata.org/entity/Q10391892 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 714: uri -> http://www.wikidata.org/entity/Q10391893 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 715: uri -> http://www.wikidata.org/entity/Q10391894 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 716: uri -> http://www.wikidata.org/entity/Q10391896 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 717: uri -> http://www.wikidata.org/entity/Q10391897 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 718: uri -> http://www.wikidata.org/entity/Q10391899 -2023-10-27 14:11:21.633  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 719: uri -> http://www.wikidata.org/entity/Q10391900 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 720: uri -> http://www.wikidata.org/entity/Q10391901 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 721: uri -> http://www.wikidata.org/entity/Q10391902 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 722: uri -> http://www.wikidata.org/entity/Q10391903 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 723: uri -> http://www.wikidata.org/entity/Q10391905 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 724: uri -> http://www.wikidata.org/entity/Q10391906 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 725: uri -> http://www.wikidata.org/entity/Q10391907 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 726: uri -> http://www.wikidata.org/entity/Q10391908 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 727: uri -> http://www.wikidata.org/entity/Q10391909 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 728: uri -> http://www.wikidata.org/entity/Q10391910 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 729: uri -> http://www.wikidata.org/entity/Q10391911 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 730: uri -> http://www.wikidata.org/entity/Q10391912 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 731: uri -> http://www.wikidata.org/entity/Q10391914 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 732: uri -> http://www.wikidata.org/entity/Q10391915 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 733: uri -> http://www.wikidata.org/entity/Q10391916 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 734: uri -> http://www.wikidata.org/entity/Q10391917 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 735: uri -> http://www.wikidata.org/entity/Q10391919 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 736: uri -> http://www.wikidata.org/entity/Q10391920 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 737: uri -> http://www.wikidata.org/entity/Q10391921 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 738: uri -> http://www.wikidata.org/entity/Q10391923 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 739: uri -> http://www.wikidata.org/entity/Q10391925 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 740: uri -> http://www.wikidata.org/entity/Q10391926 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 741: uri -> http://www.wikidata.org/entity/Q10391927 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 742: uri -> http://www.wikidata.org/entity/Q10391928 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 743: uri -> http://www.wikidata.org/entity/Q10391929 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 744: uri -> http://www.wikidata.org/entity/Q10391930 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 745: uri -> http://www.wikidata.org/entity/Q10391931 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 746: uri -> http://www.wikidata.org/entity/Q10391932 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 747: uri -> http://www.wikidata.org/entity/Q10391933 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 748: uri -> http://www.wikidata.org/entity/Q10391934 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 749: uri -> http://www.wikidata.org/entity/Q10391936 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 750: uri -> http://www.wikidata.org/entity/Q10391939 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 751: uri -> http://www.wikidata.org/entity/Q10391940 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 752: uri -> http://www.wikidata.org/entity/Q10391941 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 753: uri -> http://www.wikidata.org/entity/Q10391942 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 754: uri -> http://www.wikidata.org/entity/Q10391943 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 755: uri -> http://www.wikidata.org/entity/Q10391944 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 756: uri -> http://www.wikidata.org/entity/Q10391945 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 757: uri -> http://www.wikidata.org/entity/Q10391947 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 758: uri -> http://www.wikidata.org/entity/Q10391948 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 759: uri -> http://www.wikidata.org/entity/Q10391949 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 760: uri -> http://www.wikidata.org/entity/Q10391950 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 761: uri -> http://www.wikidata.org/entity/Q10391951 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 762: uri -> http://www.wikidata.org/entity/Q10391953 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 763: uri -> http://www.wikidata.org/entity/Q10391954 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 764: uri -> http://www.wikidata.org/entity/Q10391955 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 765: uri -> http://www.wikidata.org/entity/Q10391956 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 766: uri -> http://www.wikidata.org/entity/Q10391957 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 767: uri -> http://www.wikidata.org/entity/Q10391958 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 768: uri -> http://www.wikidata.org/entity/Q10391959 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 769: uri -> http://www.wikidata.org/entity/Q10391960 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 770: uri -> http://www.wikidata.org/entity/Q10391961 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 771: uri -> http://www.wikidata.org/entity/Q10391962 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 772: uri -> http://www.wikidata.org/entity/Q10391963 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 773: uri -> http://www.wikidata.org/entity/Q10391965 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 774: uri -> http://www.wikidata.org/entity/Q10391966 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 775: uri -> http://www.wikidata.org/entity/Q10391967 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 776: uri -> http://www.wikidata.org/entity/Q10391969 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 777: uri -> http://www.wikidata.org/entity/Q10391970 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 778: uri -> http://www.wikidata.org/entity/Q10391971 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 779: uri -> http://www.wikidata.org/entity/Q10391972 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 780: uri -> http://www.wikidata.org/entity/Q10391973 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 781: uri -> http://www.wikidata.org/entity/Q10391974 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 782: uri -> http://www.wikidata.org/entity/Q10391977 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 783: uri -> http://www.wikidata.org/entity/Q10391979 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 784: uri -> http://www.wikidata.org/entity/Q10391980 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 785: uri -> http://www.wikidata.org/entity/Q10391981 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 786: uri -> http://www.wikidata.org/entity/Q10391982 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 787: uri -> http://www.wikidata.org/entity/Q10391983 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 788: uri -> http://www.wikidata.org/entity/Q10391985 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 789: uri -> http://www.wikidata.org/entity/Q10391986 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 790: uri -> http://www.wikidata.org/entity/Q10391987 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 791: uri -> http://www.wikidata.org/entity/Q10392149 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 792: uri -> http://www.wikidata.org/entity/Q103924317 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 793: uri -> http://www.wikidata.org/entity/Q103924462 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 794: uri -> http://www.wikidata.org/entity/Q10392664 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 795: uri -> http://www.wikidata.org/entity/Q10392733 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 796: uri -> http://www.wikidata.org/entity/Q10392775 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 797: uri -> http://www.wikidata.org/entity/Q10393218 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 798: uri -> http://www.wikidata.org/entity/Q10393219 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 799: uri -> http://www.wikidata.org/entity/Q10393220 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 800: uri -> http://www.wikidata.org/entity/Q10393551 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 801: uri -> http://www.wikidata.org/entity/Q10394046 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 802: uri -> http://www.wikidata.org/entity/Q1039432 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 803: uri -> http://www.wikidata.org/entity/Q10394995 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 804: uri -> http://www.wikidata.org/entity/Q10394997 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 805: uri -> http://www.wikidata.org/entity/Q10395155 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 806: uri -> http://www.wikidata.org/entity/Q103958059 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 807: uri -> http://www.wikidata.org/entity/Q103958350 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 808: uri -> http://www.wikidata.org/entity/Q103959782 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 809: uri -> http://www.wikidata.org/entity/Q10396329 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 810: uri -> http://www.wikidata.org/entity/Q103980526 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 811: uri -> http://www.wikidata.org/entity/Q103982686 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 812: uri -> http://www.wikidata.org/entity/Q103985237 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 813: uri -> http://www.wikidata.org/entity/Q10398667 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 814: uri -> http://www.wikidata.org/entity/Q10398706 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 815: uri -> http://www.wikidata.org/entity/Q10398707 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 816: uri -> http://www.wikidata.org/entity/Q1039908 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 817: uri -> http://www.wikidata.org/entity/Q10399113 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 818: uri -> http://www.wikidata.org/entity/Q103991413 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 819: uri -> http://www.wikidata.org/entity/Q103993134 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 820: uri -> http://www.wikidata.org/entity/Q10400698 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 821: uri -> http://www.wikidata.org/entity/Q104007577 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 822: uri -> http://www.wikidata.org/entity/Q10400866 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 823: uri -> http://www.wikidata.org/entity/Q10401140 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 824: uri -> http://www.wikidata.org/entity/Q10401509 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 825: uri -> http://www.wikidata.org/entity/Q104022211 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 826: uri -> http://www.wikidata.org/entity/Q104022342 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 827: uri -> http://www.wikidata.org/entity/Q10402660 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 828: uri -> http://www.wikidata.org/entity/Q104028711 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 829: uri -> http://www.wikidata.org/entity/Q104029581 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 830: uri -> http://www.wikidata.org/entity/Q104029584 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 831: uri -> http://www.wikidata.org/entity/Q104033750 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 832: uri -> http://www.wikidata.org/entity/Q104034668 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 833: uri -> http://www.wikidata.org/entity/Q104042609 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 834: uri -> http://www.wikidata.org/entity/Q104043752 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 835: uri -> http://www.wikidata.org/entity/Q104047679 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 836: uri -> http://www.wikidata.org/entity/Q10404777 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 837: uri -> http://www.wikidata.org/entity/Q104049534 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 838: uri -> http://www.wikidata.org/entity/Q104051165 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 839: uri -> http://www.wikidata.org/entity/Q104051980 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 840: uri -> http://www.wikidata.org/entity/Q104054163 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 841: uri -> http://www.wikidata.org/entity/Q1040543 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 842: uri -> http://www.wikidata.org/entity/Q104054601 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 843: uri -> http://www.wikidata.org/entity/Q104057038 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 844: uri -> http://www.wikidata.org/entity/Q1040603 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 845: uri -> http://www.wikidata.org/entity/Q104062828 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 846: uri -> http://www.wikidata.org/entity/Q10406715 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 847: uri -> http://www.wikidata.org/entity/Q1040689 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 848: uri -> http://www.wikidata.org/entity/Q104072067 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 849: uri -> http://www.wikidata.org/entity/Q10407258 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 850: uri -> http://www.wikidata.org/entity/Q1040761 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 851: uri -> http://www.wikidata.org/entity/Q1040806 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 852: uri -> http://www.wikidata.org/entity/Q104082897 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 853: uri -> http://www.wikidata.org/entity/Q104084793 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 854: uri -> http://www.wikidata.org/entity/Q10408556 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 855: uri -> http://www.wikidata.org/entity/Q104086600 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 856: uri -> http://www.wikidata.org/entity/Q104088310 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 857: uri -> http://www.wikidata.org/entity/Q104092899 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 858: uri -> http://www.wikidata.org/entity/Q104093156 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 859: uri -> http://www.wikidata.org/entity/Q104093542 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 860: uri -> http://www.wikidata.org/entity/Q104097697 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 861: uri -> http://www.wikidata.org/entity/Q104097708 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 862: uri -> http://www.wikidata.org/entity/Q104097772 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 863: uri -> http://www.wikidata.org/entity/Q104097803 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 864: uri -> http://www.wikidata.org/entity/Q104098872 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 865: uri -> http://www.wikidata.org/entity/Q10410183 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 866: uri -> http://www.wikidata.org/entity/Q104107856 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 867: uri -> http://www.wikidata.org/entity/Q1041144 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 868: uri -> http://www.wikidata.org/entity/Q10411663 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 869: uri -> http://www.wikidata.org/entity/Q10411862 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 870: uri -> http://www.wikidata.org/entity/Q10411863 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 871: uri -> http://www.wikidata.org/entity/Q10411864 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 872: uri -> http://www.wikidata.org/entity/Q10411865 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 873: uri -> http://www.wikidata.org/entity/Q10411866 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 874: uri -> http://www.wikidata.org/entity/Q10411867 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 875: uri -> http://www.wikidata.org/entity/Q10411868 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 876: uri -> http://www.wikidata.org/entity/Q10411888 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 877: uri -> http://www.wikidata.org/entity/Q104119755 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 878: uri -> http://www.wikidata.org/entity/Q104119777 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 879: uri -> http://www.wikidata.org/entity/Q104127079 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 880: uri -> http://www.wikidata.org/entity/Q104128067 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 881: uri -> http://www.wikidata.org/entity/Q104128400 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 882: uri -> http://www.wikidata.org/entity/Q10413668 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 883: uri -> http://www.wikidata.org/entity/Q104145349 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 884: uri -> http://www.wikidata.org/entity/Q104151609 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 885: uri -> http://www.wikidata.org/entity/Q104151652 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 886: uri -> http://www.wikidata.org/entity/Q104151655 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 887: uri -> http://www.wikidata.org/entity/Q104152731 -2023-10-27 14:11:21.634  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 888: uri -> http://www.wikidata.org/entity/Q104153418 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 889: uri -> http://www.wikidata.org/entity/Q104154385 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 890: uri -> http://www.wikidata.org/entity/Q104154414 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 891: uri -> http://www.wikidata.org/entity/Q104156356 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 892: uri -> http://www.wikidata.org/entity/Q104156983 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 893: uri -> http://www.wikidata.org/entity/Q104157029 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 894: uri -> http://www.wikidata.org/entity/Q104157721 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 895: uri -> http://www.wikidata.org/entity/Q10415972 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 896: uri -> http://www.wikidata.org/entity/Q104160135 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 897: uri -> http://www.wikidata.org/entity/Q104161269 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 898: uri -> http://www.wikidata.org/entity/Q104163111 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 899: uri -> http://www.wikidata.org/entity/Q104165632 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 900: uri -> http://www.wikidata.org/entity/Q1041668 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 901: uri -> http://www.wikidata.org/entity/Q104170787 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 902: uri -> http://www.wikidata.org/entity/Q104170805 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 903: uri -> http://www.wikidata.org/entity/Q104170815 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 904: uri -> http://www.wikidata.org/entity/Q104170826 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 905: uri -> http://www.wikidata.org/entity/Q104170838 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 906: uri -> http://www.wikidata.org/entity/Q104170845 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 907: uri -> http://www.wikidata.org/entity/Q104176270 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 908: uri -> http://www.wikidata.org/entity/Q104176717 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 909: uri -> http://www.wikidata.org/entity/Q10417798 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 910: uri -> http://www.wikidata.org/entity/Q104179196 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 911: uri -> http://www.wikidata.org/entity/Q104179526 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 912: uri -> http://www.wikidata.org/entity/Q10418059 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 913: uri -> http://www.wikidata.org/entity/Q104182012 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 914: uri -> http://www.wikidata.org/entity/Q104187784 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 915: uri -> http://www.wikidata.org/entity/Q104188332 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 916: uri -> http://www.wikidata.org/entity/Q104188943 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 917: uri -> http://www.wikidata.org/entity/Q104189007 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 918: uri -> http://www.wikidata.org/entity/Q104190216 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 919: uri -> http://www.wikidata.org/entity/Q104192449 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 920: uri -> http://www.wikidata.org/entity/Q104192625 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 921: uri -> http://www.wikidata.org/entity/Q104205792 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 922: uri -> http://www.wikidata.org/entity/Q10420805 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 923: uri -> http://www.wikidata.org/entity/Q10420835 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 924: uri -> http://www.wikidata.org/entity/Q104211534 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 925: uri -> http://www.wikidata.org/entity/Q104211551 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 926: uri -> http://www.wikidata.org/entity/Q104211601 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 927: uri -> http://www.wikidata.org/entity/Q104212495 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 928: uri -> http://www.wikidata.org/entity/Q104213523 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 929: uri -> http://www.wikidata.org/entity/Q104213637 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 930: uri -> http://www.wikidata.org/entity/Q104213909 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 931: uri -> http://www.wikidata.org/entity/Q104214025 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 932: uri -> http://www.wikidata.org/entity/Q104214213 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 933: uri -> http://www.wikidata.org/entity/Q104217454 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 934: uri -> http://www.wikidata.org/entity/Q104223698 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 935: uri -> http://www.wikidata.org/entity/Q104223759 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 936: uri -> http://www.wikidata.org/entity/Q104223964 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 937: uri -> http://www.wikidata.org/entity/Q104234421 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 938: uri -> http://www.wikidata.org/entity/Q104234446 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 939: uri -> http://www.wikidata.org/entity/Q10423734 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 940: uri -> http://www.wikidata.org/entity/Q104241536 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 941: uri -> http://www.wikidata.org/entity/Q104243375 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 942: uri -> http://www.wikidata.org/entity/Q104246069 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 943: uri -> http://www.wikidata.org/entity/Q104247017 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 944: uri -> http://www.wikidata.org/entity/Q104247355 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 945: uri -> http://www.wikidata.org/entity/Q104250289 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 946: uri -> http://www.wikidata.org/entity/Q104251914 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 947: uri -> http://www.wikidata.org/entity/Q10425586 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 948: uri -> http://www.wikidata.org/entity/Q10426590 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 949: uri -> http://www.wikidata.org/entity/Q1042670 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 950: uri -> http://www.wikidata.org/entity/Q104269190 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 951: uri -> http://www.wikidata.org/entity/Q10428456 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 952: uri -> http://www.wikidata.org/entity/Q10428811 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 953: uri -> http://www.wikidata.org/entity/Q10429813 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 954: uri -> http://www.wikidata.org/entity/Q10430832 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 955: uri -> http://www.wikidata.org/entity/Q10430859 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 956: uri -> http://www.wikidata.org/entity/Q104315503 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 957: uri -> http://www.wikidata.org/entity/Q10432404 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 958: uri -> http://www.wikidata.org/entity/Q104329352 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 959: uri -> http://www.wikidata.org/entity/Q10433030 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 960: uri -> http://www.wikidata.org/entity/Q10433040 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 961: uri -> http://www.wikidata.org/entity/Q10433041 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 962: uri -> http://www.wikidata.org/entity/Q10433042 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 963: uri -> http://www.wikidata.org/entity/Q10433043 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 964: uri -> http://www.wikidata.org/entity/Q10433044 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 965: uri -> http://www.wikidata.org/entity/Q1043341 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 966: uri -> http://www.wikidata.org/entity/Q10433512 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 967: uri -> http://www.wikidata.org/entity/Q10433513 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 968: uri -> http://www.wikidata.org/entity/Q10433514 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 969: uri -> http://www.wikidata.org/entity/Q10433515 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 970: uri -> http://www.wikidata.org/entity/Q10433516 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 971: uri -> http://www.wikidata.org/entity/Q10433517 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 972: uri -> http://www.wikidata.org/entity/Q10433518 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 973: uri -> http://www.wikidata.org/entity/Q10433519 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 974: uri -> http://www.wikidata.org/entity/Q10433520 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 975: uri -> http://www.wikidata.org/entity/Q10433521 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 976: uri -> http://www.wikidata.org/entity/Q10433522 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 977: uri -> http://www.wikidata.org/entity/Q10433523 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 978: uri -> http://www.wikidata.org/entity/Q10433524 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 979: uri -> http://www.wikidata.org/entity/Q10433525 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 980: uri -> http://www.wikidata.org/entity/Q10433526 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 981: uri -> http://www.wikidata.org/entity/Q10433527 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 982: uri -> http://www.wikidata.org/entity/Q10433528 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 983: uri -> http://www.wikidata.org/entity/Q10433529 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 984: uri -> http://www.wikidata.org/entity/Q10433530 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 985: uri -> http://www.wikidata.org/entity/Q10433531 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 986: uri -> http://www.wikidata.org/entity/Q10433532 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 987: uri -> http://www.wikidata.org/entity/Q10433533 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 988: uri -> http://www.wikidata.org/entity/Q10433534 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 989: uri -> http://www.wikidata.org/entity/Q10433536 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 990: uri -> http://www.wikidata.org/entity/Q10433537 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 991: uri -> http://www.wikidata.org/entity/Q10433538 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 992: uri -> http://www.wikidata.org/entity/Q10433539 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 993: uri -> http://www.wikidata.org/entity/Q10433540 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 994: uri -> http://www.wikidata.org/entity/Q10433541 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 995: uri -> http://www.wikidata.org/entity/Q10434744 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 996: uri -> http://www.wikidata.org/entity/Q10435984 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 997: uri -> http://www.wikidata.org/entity/Q10436549 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 998: uri -> http://www.wikidata.org/entity/Q104368133 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 999: uri -> http://www.wikidata.org/entity/Q104372944 -2023-10-27 14:11:21.635  INFO 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : found 1000 resources -2023-10-27 14:11:21.635 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion: {"answers":"{\n \"head\" : {\n \"vars\" : [\n \"s1\"\n ]\n },\n \"results\" : {\n \"bindings\" : [\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/P97\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1000303\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100042862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100138547\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100144644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100146669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149091\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100149151\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100153085\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100154345\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100156282\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100158068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100166497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100200203\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100226840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100230981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100233550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100235719\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1002465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100247710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100251476\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255571\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100255673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256260\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256384\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100256441\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100268917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100270821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100271385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272277\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100272467\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100277657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100290884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100296954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100306163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100323660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10032888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100336041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1003491\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100350712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100363753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100368900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100369837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100375843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100377193\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100387742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100397017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1004124\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100416234\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100429444\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100437710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100476322\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100497722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100533874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100534096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100545431\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100567305\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100585173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100588445\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1005902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100600664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100605702\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100683537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100686728\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100690942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100701460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707450\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707560\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100707582\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708568\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100708828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100709508\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100722474\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100726808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100733133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100740654\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100742710\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744452\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100744910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100750442\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100752647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100766665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100767188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100768033\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100770629\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100771094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100777516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100789929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100791998\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100799377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100853469\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100869791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100872433\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100877419\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100880026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100890633\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100908749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100916130\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100927753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935224\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100935227\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100938271\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100939770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945066\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100945637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100978462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100979333\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982849\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100982861\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100983365\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997306\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100997397\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q100998590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101010922\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101013250\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101032352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101054473\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063207\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063233\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063240\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063248\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063295\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063323\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101063364\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101065644\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101071928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101075720\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101079308\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101094792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101096138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101113247\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101115774\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116447\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101116604\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101130750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101137443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1011446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101160132\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101173400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101199215\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205665\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205681\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205732\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101205779\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101209733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101223763\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101228463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101238280\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101243257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101247567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101248074\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101267136\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101324254\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101333514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101334319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101343924\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101349712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101356218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101402616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418327\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101418887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419071\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101419751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101422799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101423783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101427898\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101428516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101429521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101436914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101438997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101441954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101444705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445621\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445676\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445883\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101445913\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101453383\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101459115\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101484096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101486501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101495425\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497643\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101497866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498470\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101498584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500281\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101500907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101504200\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101522111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101524075\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101528994\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101535940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101538826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539018\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101539047\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101541410\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542180\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101542257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101552911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101554049\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566501\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101566783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101579769\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101583472\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101627797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101668466\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1016801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101695457\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101697785\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101702521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017086\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1017332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101753497\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101754990\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101758330\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101788376\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101795434\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101797745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018087\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101833802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1018465\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101913232\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101953096\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q101971567\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102039658\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102045965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102046013\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102047781\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048093\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048138\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102048854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049796\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049844\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102049925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050005\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102050884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102076291\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102083767\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102104632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102120106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102150752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158574\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102158749\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102162094\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102165489\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102177201\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102180882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102187912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102201050\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102204905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102208413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102210838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102211649\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102212673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102213098\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216056\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216486\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102216808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102217141\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102226212\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102239874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022483\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102251036\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252101\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102252119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102254530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102260583\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102261737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276173\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102276807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278045\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102278424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1022791\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102281677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102290356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102291875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102294569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102297519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102298581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102299711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310627\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102310701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102312294\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102313297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102315377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023161\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102316221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102317554\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102324008\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102328716\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102329273\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336299\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102336810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102337773\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338301\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338312\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338315\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338318\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338436\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338439\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338694\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338699\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338801\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102338813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102350347\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102352778\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102354463\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102361119\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362004\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102362324\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1023727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102379157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102388622\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102396650\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102400530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102418503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102420543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102431966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102452206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102454460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102455933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102457871\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025106\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025118\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025121\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102528897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1025919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10259887\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260424\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10260577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102616336\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10263636\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10264107\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10266053\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1026612\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10267766\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10268937\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10269529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270319\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10270984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10271175\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10272701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1027366\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274024\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10274868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102797423\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282109\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10282783\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102829543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1028297\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10284285\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102849713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286148\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286251\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286510\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10286972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q102885027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10288525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10289329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290705\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10290892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1029135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291411\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10291443\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293585\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10293927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294484\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10294550\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10295993\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296131\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10296770\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10297919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10299026\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301351\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10301981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10302268\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10303978\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103042012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103049401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10305246\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10307972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313048\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313613\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10313889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314198\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314768\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10314975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10315455\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103179432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1031816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10318606\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10319052\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10320043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103222362\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10322521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10323221\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10325569\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326696\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326700\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326701\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326703\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326704\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326713\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326722\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326724\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326725\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326726\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326727\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326729\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326730\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326736\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326737\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326739\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326742\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326745\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326746\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326751\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326753\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326754\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10326756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329206\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329657\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10329673\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103304064\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10330721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331068\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103318185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10331823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10333980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033408\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10334176\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10335304\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103375635\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337647\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10337956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10338655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1033877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10340971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103409942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341016\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1034117\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341264\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10341401\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103432988\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103449792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10346072\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103479666\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10348576\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103492756\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103498067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10349975\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103501493\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10350954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035129\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035157\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10351611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10354482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355035\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10355178\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1035611\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356616\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10356912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103582989\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10359188\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036027\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036039\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103619797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10364748\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103649446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10366548\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103676187\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103684222\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10368807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1036944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10369482\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370031\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10370032\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103705570\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103715454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10371973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372354\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372428\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372429\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10372430\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373104\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373382\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373392\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373394\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373395\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10373954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103754677\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10375920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377712\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377714\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10377717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10378137\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379103\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379249\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10379369\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103798029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10380168\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103819965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103820839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103821030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382162\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10382537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103826228\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10383257\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837374\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103837460\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1038377\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103838847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103847517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103848601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103850890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385407\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10385708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10386185\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387054\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387060\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387760\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10387761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388661\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10388793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888328\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888331\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103888641\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389579\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10389914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103911669\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391797\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391799\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391800\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391802\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391807\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391808\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391809\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391810\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391812\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391814\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391816\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391817\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391818\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391819\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391821\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391822\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391823\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391825\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391827\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391829\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391830\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391831\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391833\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391834\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391837\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391839\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391840\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391841\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391842\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391843\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391846\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391847\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391850\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391851\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391853\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391854\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391855\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391857\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391860\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391869\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391870\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391873\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391874\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391875\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391876\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391877\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391878\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391880\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391881\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391882\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391884\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391886\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391889\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391890\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391891\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391892\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391893\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391894\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391896\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391900\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391901\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391902\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391903\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391905\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391906\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391907\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391910\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391911\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391912\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391915\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391916\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391917\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391919\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391920\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391921\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391923\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391925\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391926\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391927\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391928\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391929\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391930\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391931\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391932\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391933\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391934\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391936\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391939\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391940\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391941\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391942\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391944\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391945\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391947\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391948\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391949\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391950\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391951\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391953\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391954\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391955\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391956\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391957\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391958\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391959\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391960\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391961\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391962\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391963\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391965\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391966\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391967\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391969\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391970\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391971\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391973\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391974\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391977\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391979\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391981\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391982\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391985\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391986\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10391987\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392149\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924317\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103924462\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392664\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392733\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10392775\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393218\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393219\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393220\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10393551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394046\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039432\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394995\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10394997\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10395155\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103958350\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103959782\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10396329\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103980526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103982686\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103985237\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398667\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398706\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10398707\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1039908\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10399113\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103991413\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q103993134\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104007577\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10400866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401140\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10401509\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022211\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104022342\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10402660\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104028711\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029581\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104029584\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104033750\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104034668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104042609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104043752\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104047679\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10404777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104049534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051165\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104051980\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054163\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040543\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104054601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104057038\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040603\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104062828\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10406715\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040689\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104072067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10407258\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040761\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1040806\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104082897\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104084793\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10408556\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104086600\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104088310\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104092899\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093156\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104093542\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097697\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097708\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097772\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104097803\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104098872\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10410183\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104107856\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041144\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411663\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411862\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411863\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411864\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411865\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411866\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411867\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411868\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10411888\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119755\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104119777\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104127079\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128067\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104128400\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10413668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104145349\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151609\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151652\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104151655\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104152731\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104153418\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154385\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104154414\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156356\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104156983\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157029\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104157721\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10415972\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104160135\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104161269\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104163111\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104165632\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1041668\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170787\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170815\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170826\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170838\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104170845\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176270\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104176717\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10417798\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179196\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104179526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10418059\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104182012\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104187784\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188332\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104188943\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104189007\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104190216\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192449\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104192625\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104205792\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420805\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10420835\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211551\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104211601\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104212495\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213637\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104213909\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214025\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104214213\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104217454\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223698\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223759\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104223964\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234421\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104234446\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10423734\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104241536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104243375\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104246069\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247017\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104247355\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104250289\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104251914\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10425586\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10426590\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1042670\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104269190\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428456\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10428811\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10429813\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430832\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10430859\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104315503\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10432404\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104329352\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433030\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433040\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433041\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433042\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433043\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433044\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q1043341\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433512\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433513\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433514\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433515\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433516\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433517\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433518\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433519\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433520\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433521\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433522\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433523\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433524\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433525\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433526\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433527\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433528\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433529\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433530\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433531\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433532\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433533\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433534\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433536\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433537\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433538\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433539\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433540\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10433541\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10434744\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10435984\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q10436549\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104368133\"\n }\n },\n {\n \"s1\" : {\n \"type\" : \"uri\",\n \"value\" : \"http://www.wikidata.org/entity/Q104372944\"\n }\n }\n ]\n }\n}","language":[{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}]} -2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : responseQuestion->language: [{"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08}] -2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. language: {"SPARQL":"SELECT DISTINCT ?s1 WHERE { \t ?s1 . } LIMIT 1000","confidence":0.08} -2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. sparql: SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000 -2023-10-27 14:11:21.636 DEBUG 9655 --- [io-11022-exec-5] e.w.q.c.q.qbe.messages.QAnswerResult  : 0. confidence: 0.08 -2023-10-27 14:11:21.648 DEBUG 9655 --- [io-11022-exec-5] eu.wdaqua.qanary.commons.QanaryQuestion  : 0/0: qa#Question = http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:21.650  INFO 9655 --- [io-11022-exec-5] w.q.c.q.q.QAnswerQueryBuilderAndExecutor : SPARQL INSERT for adding data to the Qanary triplestore: -2023-10-27 14:11:21.650 DEBUG 9655 --- [io-11022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: -PREFIX oa: -PREFIX xsd: -PREFIX rdf: -INSERT { -GRAPH { - ?annotationSPARQL a qa:AnnotationOfAnswerSPARQL ; - oa:hasTarget ?question ; - oa:hasBody ?sparql ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score ; - qa:overKnowledgeGraph ?knowledgeGraph . - ?sparql a qa:SparqlQuery ; - rdf:value ?sparqlQueryString . - ?annotationImprovedQuestion a qa:AnnotationOfImprovedQuestion ; - oa:hasTarget ?question ; - oa:hasBody ?improvedQuestion ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?improvedQuestion a qa:ImprovedQuestion ; - rdf:value ?improvedQuestionText . - ?annotationAnswer a qa:AnnotationAnswer ; - oa:hasTarget ?question ; - oa:hasBody ?answer ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answer a qa:Answer ; - rdf:value [ a rdf:Seq ; rdf:_1 ; rdf:_2 ; rdf:_3 ; rdf:_4 ; rdf:_5 ; rdf:_6 ; rdf:_7 ; rdf:_8 ; rdf:_9 ; rdf:_10 ; rdf:_11 ; rdf:_12 ; rdf:_13 ; rdf:_14 ; rdf:_15 ; rdf:_16 ; rdf:_17 ; rdf:_18 ; rdf:_19 ; rdf:_20 ; rdf:_21 ; rdf:_22 ; rdf:_23 ; rdf:_24 ; rdf:_25 ; rdf:_26 ; rdf:_27 ; rdf:_28 ; rdf:_29 ; rdf:_30 ; rdf:_31 ; rdf:_32 ; rdf:_33 ; rdf:_34 ; rdf:_35 ; rdf:_36 ; rdf:_37 ; rdf:_38 ; rdf:_39 ; rdf:_40 ; rdf:_41 ; rdf:_42 ; rdf:_43 ; rdf:_44 ; rdf:_45 ; rdf:_46 ; rdf:_47 ; rdf:_48 ; rdf:_49 ; rdf:_50 ; rdf:_51 ; rdf:_52 ; rdf:_53 ; rdf:_54 ; rdf:_55 ; rdf:_56 ; rdf:_57 ; rdf:_58 ; rdf:_59 ; rdf:_60 ; rdf:_61 ; rdf:_62 ; rdf:_63 ; rdf:_64 ; rdf:_65 ; rdf:_66 ; rdf:_67 ; rdf:_68 ; rdf:_69 ; rdf:_70 ; rdf:_71 ; rdf:_72 ; rdf:_73 ; rdf:_74 ; rdf:_75 ; rdf:_76 ; rdf:_77 ; rdf:_78 ; rdf:_79 ; rdf:_80 ; rdf:_81 ; rdf:_82 ; rdf:_83 ; rdf:_84 ; rdf:_85 ; rdf:_86 ; rdf:_87 ; rdf:_88 ; rdf:_89 ; rdf:_90 ; rdf:_91 ; rdf:_92 ; rdf:_93 ; rdf:_94 ; rdf:_95 ; rdf:_96 ; rdf:_97 ; rdf:_98 ; rdf:_99 ; rdf:_100 ; rdf:_101 ; rdf:_102 ; rdf:_103 ; rdf:_104 ; rdf:_105 ; rdf:_106 ; rdf:_107 ; rdf:_108 ; rdf:_109 ; rdf:_110 ; rdf:_111 ; rdf:_112 ; rdf:_113 ; rdf:_114 ; rdf:_115 ; rdf:_116 ; rdf:_117 ; rdf:_118 ; rdf:_119 ; rdf:_120 ; rdf:_121 ; rdf:_122 ; rdf:_123 ; rdf:_124 ; rdf:_125 ; rdf:_126 ; rdf:_127 ; rdf:_128 ; rdf:_129 ; rdf:_130 ; rdf:_131 ; rdf:_132 ; rdf:_133 ; rdf:_134 ; rdf:_135 ; rdf:_136 ; rdf:_137 ; rdf:_138 ; rdf:_139 ; rdf:_140 ; rdf:_141 ; rdf:_142 ; rdf:_143 ; rdf:_144 ; rdf:_145 ; rdf:_146 ; rdf:_147 ; rdf:_148 ; rdf:_149 ; rdf:_150 ; rdf:_151 ; rdf:_152 ; rdf:_153 ; rdf:_154 ; rdf:_155 ; rdf:_156 ; rdf:_157 ; rdf:_158 ; rdf:_159 ; rdf:_160 ; rdf:_161 ; rdf:_162 ; rdf:_163 ; rdf:_164 ; rdf:_165 ; rdf:_166 ; rdf:_167 ; rdf:_168 ; rdf:_169 ; rdf:_170 ; rdf:_171 ; rdf:_172 ; rdf:_173 ; rdf:_174 ; rdf:_175 ; rdf:_176 ; rdf:_177 ; rdf:_178 ; rdf:_179 ; rdf:_180 ; rdf:_181 ; rdf:_182 ; rdf:_183 ; rdf:_184 ; rdf:_185 ; rdf:_186 ; rdf:_187 ; rdf:_188 ; rdf:_189 ; rdf:_190 ; rdf:_191 ; rdf:_192 ; rdf:_193 ; rdf:_194 ; rdf:_195 ; rdf:_196 ; rdf:_197 ; rdf:_198 ; rdf:_199 ; rdf:_200 ; rdf:_201 ; rdf:_202 ; rdf:_203 ; rdf:_204 ; rdf:_205 ; rdf:_206 ; rdf:_207 ; rdf:_208 ; rdf:_209 ; rdf:_210 ; rdf:_211 ; rdf:_212 ; rdf:_213 ; rdf:_214 ; rdf:_215 ; rdf:_216 ; rdf:_217 ; rdf:_218 ; rdf:_219 ; rdf:_220 ; rdf:_221 ; rdf:_222 ; rdf:_223 ; rdf:_224 ; rdf:_225 ; rdf:_226 ; rdf:_227 ; rdf:_228 ; rdf:_229 ; rdf:_230 ; rdf:_231 ; rdf:_232 ; rdf:_233 ; rdf:_234 ; rdf:_235 ; rdf:_236 ; rdf:_237 ; rdf:_238 ; rdf:_239 ; rdf:_240 ; rdf:_241 ; rdf:_242 ; rdf:_243 ; rdf:_244 ; rdf:_245 ; rdf:_246 ; rdf:_247 ; rdf:_248 ; rdf:_249 ; rdf:_250 ; rdf:_251 ; rdf:_252 ; rdf:_253 ; rdf:_254 ; rdf:_255 ; rdf:_256 ; rdf:_257 ; rdf:_258 ; rdf:_259 ; rdf:_260 ; rdf:_261 ; rdf:_262 ; rdf:_263 ; rdf:_264 ; rdf:_265 ; rdf:_266 ; rdf:_267 ; rdf:_268 ; rdf:_269 ; rdf:_270 ; rdf:_271 ; rdf:_272 ; rdf:_273 ; rdf:_274 ; rdf:_275 ; rdf:_276 ; rdf:_277 ; rdf:_278 ; rdf:_279 ; rdf:_280 ; rdf:_281 ; rdf:_282 ; rdf:_283 ; rdf:_284 ; rdf:_285 ; rdf:_286 ; rdf:_287 ; rdf:_288 ; rdf:_289 ; rdf:_290 ; rdf:_291 ; rdf:_292 ; rdf:_293 ; rdf:_294 ; rdf:_295 ; rdf:_296 ; rdf:_297 ; rdf:_298 ; rdf:_299 ; rdf:_300 ; rdf:_301 ; rdf:_302 ; rdf:_303 ; rdf:_304 ; rdf:_305 ; rdf:_306 ; rdf:_307 ; rdf:_308 ; rdf:_309 ; rdf:_310 ; rdf:_311 ; rdf:_312 ; rdf:_313 ; rdf:_314 ; rdf:_315 ; rdf:_316 ; rdf:_317 ; rdf:_318 ; rdf:_319 ; rdf:_320 ; rdf:_321 ; rdf:_322 ; rdf:_323 ; rdf:_324 ; rdf:_325 ; rdf:_326 ; rdf:_327 ; rdf:_328 ; rdf:_329 ; rdf:_330 ; rdf:_331 ; rdf:_332 ; rdf:_333 ; rdf:_334 ; rdf:_335 ; rdf:_336 ; rdf:_337 ; rdf:_338 ; rdf:_339 ; rdf:_340 ; rdf:_341 ; rdf:_342 ; rdf:_343 ; rdf:_344 ; rdf:_345 ; rdf:_346 ; rdf:_347 ; rdf:_348 ; rdf:_349 ; rdf:_350 ; rdf:_351 ; rdf:_352 ; rdf:_353 ; rdf:_354 ; rdf:_355 ; rdf:_356 ; rdf:_357 ; rdf:_358 ; rdf:_359 ; rdf:_360 ; rdf:_361 ; rdf:_362 ; rdf:_363 ; rdf:_364 ; rdf:_365 ; rdf:_366 ; rdf:_367 ; rdf:_368 ; rdf:_369 ; rdf:_370 ; rdf:_371 ; rdf:_372 ; rdf:_373 ; rdf:_374 ; rdf:_375 ; rdf:_376 ; rdf:_377 ; rdf:_378 ; rdf:_379 ; rdf:_380 ; rdf:_381 ; rdf:_382 ; rdf:_383 ; rdf:_384 ; rdf:_385 ; rdf:_386 ; rdf:_387 ; rdf:_388 ; rdf:_389 ; rdf:_390 ; rdf:_391 ; rdf:_392 ; rdf:_393 ; rdf:_394 ; rdf:_395 ; rdf:_396 ; rdf:_397 ; rdf:_398 ; rdf:_399 ; rdf:_400 ; rdf:_401 ; rdf:_402 ; rdf:_403 ; rdf:_404 ; rdf:_405 ; rdf:_406 ; rdf:_407 ; rdf:_408 ; rdf:_409 ; rdf:_410 ; rdf:_411 ; rdf:_412 ; rdf:_413 ; rdf:_414 ; rdf:_415 ; rdf:_416 ; rdf:_417 ; rdf:_418 ; rdf:_419 ; rdf:_420 ; rdf:_421 ; rdf:_422 ; rdf:_423 ; rdf:_424 ; rdf:_425 ; rdf:_426 ; rdf:_427 ; rdf:_428 ; rdf:_429 ; rdf:_430 ; rdf:_431 ; rdf:_432 ; rdf:_433 ; rdf:_434 ; rdf:_435 ; rdf:_436 ; rdf:_437 ; rdf:_438 ; rdf:_439 ; rdf:_440 ; rdf:_441 ; rdf:_442 ; rdf:_443 ; rdf:_444 ; rdf:_445 ; rdf:_446 ; rdf:_447 ; rdf:_448 ; rdf:_449 ; rdf:_450 ; rdf:_451 ; rdf:_452 ; rdf:_453 ; rdf:_454 ; rdf:_455 ; rdf:_456 ; rdf:_457 ; rdf:_458 ; rdf:_459 ; rdf:_460 ; rdf:_461 ; rdf:_462 ; rdf:_463 ; rdf:_464 ; rdf:_465 ; rdf:_466 ; rdf:_467 ; rdf:_468 ; rdf:_469 ; rdf:_470 ; rdf:_471 ; rdf:_472 ; rdf:_473 ; rdf:_474 ; rdf:_475 ; rdf:_476 ; rdf:_477 ; rdf:_478 ; rdf:_479 ; rdf:_480 ; rdf:_481 ; rdf:_482 ; rdf:_483 ; rdf:_484 ; rdf:_485 ; rdf:_486 ; rdf:_487 ; rdf:_488 ; rdf:_489 ; rdf:_490 ; rdf:_491 ; rdf:_492 ; rdf:_493 ; rdf:_494 ; rdf:_495 ; rdf:_496 ; rdf:_497 ; rdf:_498 ; rdf:_499 ; rdf:_500 ; rdf:_501 ; rdf:_502 ; rdf:_503 ; rdf:_504 ; rdf:_505 ; rdf:_506 ; rdf:_507 ; rdf:_508 ; rdf:_509 ; rdf:_510 ; rdf:_511 ; rdf:_512 ; rdf:_513 ; rdf:_514 ; rdf:_515 ; rdf:_516 ; rdf:_517 ; rdf:_518 ; rdf:_519 ; rdf:_520 ; rdf:_521 ; rdf:_522 ; rdf:_523 ; rdf:_524 ; rdf:_525 ; rdf:_526 ; rdf:_527 ; rdf:_528 ; rdf:_529 ; rdf:_530 ; rdf:_531 ; rdf:_532 ; rdf:_533 ; rdf:_534 ; rdf:_535 ; rdf:_536 ; rdf:_537 ; rdf:_538 ; rdf:_539 ; rdf:_540 ; rdf:_541 ; rdf:_542 ; rdf:_543 ; rdf:_544 ; rdf:_545 ; rdf:_546 ; rdf:_547 ; rdf:_548 ; rdf:_549 ; rdf:_550 ; rdf:_551 ; rdf:_552 ; rdf:_553 ; rdf:_554 ; rdf:_555 ; rdf:_556 ; rdf:_557 ; rdf:_558 ; rdf:_559 ; rdf:_560 ; rdf:_561 ; rdf:_562 ; rdf:_563 ; rdf:_564 ; rdf:_565 ; rdf:_566 ; rdf:_567 ; rdf:_568 ; rdf:_569 ; rdf:_570 ; rdf:_571 ; rdf:_572 ; rdf:_573 ; rdf:_574 ; rdf:_575 ; rdf:_576 ; rdf:_577 ; rdf:_578 ; rdf:_579 ; rdf:_580 ; rdf:_581 ; rdf:_582 ; rdf:_583 ; rdf:_584 ; rdf:_585 ; rdf:_586 ; rdf:_587 ; rdf:_588 ; rdf:_589 ; rdf:_590 ; rdf:_591 ; rdf:_592 ; rdf:_593 ; rdf:_594 ; rdf:_595 ; rdf:_596 ; rdf:_597 ; rdf:_598 ; rdf:_599 ; rdf:_600 ; rdf:_601 ; rdf:_602 ; rdf:_603 ; rdf:_604 ; rdf:_605 ; rdf:_606 ; rdf:_607 ; rdf:_608 ; rdf:_609 ; rdf:_610 ; rdf:_611 ; rdf:_612 ; rdf:_613 ; rdf:_614 ; rdf:_615 ; rdf:_616 ; rdf:_617 ; rdf:_618 ; rdf:_619 ; rdf:_620 ; rdf:_621 ; rdf:_622 ; rdf:_623 ; rdf:_624 ; rdf:_625 ; rdf:_626 ; rdf:_627 ; rdf:_628 ; rdf:_629 ; rdf:_630 ; rdf:_631 ; rdf:_632 ; rdf:_633 ; rdf:_634 ; rdf:_635 ; rdf:_636 ; rdf:_637 ; rdf:_638 ; rdf:_639 ; rdf:_640 ; rdf:_641 ; rdf:_642 ; rdf:_643 ; rdf:_644 ; rdf:_645 ; rdf:_646 ; rdf:_647 ; rdf:_648 ; rdf:_649 ; rdf:_650 ; rdf:_651 ; rdf:_652 ; rdf:_653 ; rdf:_654 ; rdf:_655 ; rdf:_656 ; rdf:_657 ; rdf:_658 ; rdf:_659 ; rdf:_660 ; rdf:_661 ; rdf:_662 ; rdf:_663 ; rdf:_664 ; rdf:_665 ; rdf:_666 ; rdf:_667 ; rdf:_668 ; rdf:_669 ; rdf:_670 ; rdf:_671 ; rdf:_672 ; rdf:_673 ; rdf:_674 ; rdf:_675 ; rdf:_676 ; rdf:_677 ; rdf:_678 ; rdf:_679 ; rdf:_680 ; rdf:_681 ; rdf:_682 ; rdf:_683 ; rdf:_684 ; rdf:_685 ; rdf:_686 ; rdf:_687 ; rdf:_688 ; rdf:_689 ; rdf:_690 ; rdf:_691 ; rdf:_692 ; rdf:_693 ; rdf:_694 ; rdf:_695 ; rdf:_696 ; rdf:_697 ; rdf:_698 ; rdf:_699 ; rdf:_700 ; rdf:_701 ; rdf:_702 ; rdf:_703 ; rdf:_704 ; rdf:_705 ; rdf:_706 ; rdf:_707 ; rdf:_708 ; rdf:_709 ; rdf:_710 ; rdf:_711 ; rdf:_712 ; rdf:_713 ; rdf:_714 ; rdf:_715 ; rdf:_716 ; rdf:_717 ; rdf:_718 ; rdf:_719 ; rdf:_720 ; rdf:_721 ; rdf:_722 ; rdf:_723 ; rdf:_724 ; rdf:_725 ; rdf:_726 ; rdf:_727 ; rdf:_728 ; rdf:_729 ; rdf:_730 ; rdf:_731 ; rdf:_732 ; rdf:_733 ; rdf:_734 ; rdf:_735 ; rdf:_736 ; rdf:_737 ; rdf:_738 ; rdf:_739 ; rdf:_740 ; rdf:_741 ; rdf:_742 ; rdf:_743 ; rdf:_744 ; rdf:_745 ; rdf:_746 ; rdf:_747 ; rdf:_748 ; rdf:_749 ; rdf:_750 ; rdf:_751 ; rdf:_752 ; rdf:_753 ; rdf:_754 ; rdf:_755 ; rdf:_756 ; rdf:_757 ; rdf:_758 ; rdf:_759 ; rdf:_760 ; rdf:_761 ; rdf:_762 ; rdf:_763 ; rdf:_764 ; rdf:_765 ; rdf:_766 ; rdf:_767 ; rdf:_768 ; rdf:_769 ; rdf:_770 ; rdf:_771 ; rdf:_772 ; rdf:_773 ; rdf:_774 ; rdf:_775 ; rdf:_776 ; rdf:_777 ; rdf:_778 ; rdf:_779 ; rdf:_780 ; rdf:_781 ; rdf:_782 ; rdf:_783 ; rdf:_784 ; rdf:_785 ; rdf:_786 ; rdf:_787 ; rdf:_788 ; rdf:_789 ; rdf:_790 ; rdf:_791 ; rdf:_792 ; rdf:_793 ; rdf:_794 ; rdf:_795 ; rdf:_796 ; rdf:_797 ; rdf:_798 ; rdf:_799 ; rdf:_800 ; rdf:_801 ; rdf:_802 ; rdf:_803 ; rdf:_804 ; rdf:_805 ; rdf:_806 ; rdf:_807 ; rdf:_808 ; rdf:_809 ; rdf:_810 ; rdf:_811 ; rdf:_812 ; rdf:_813 ; rdf:_814 ; rdf:_815 ; rdf:_816 ; rdf:_817 ; rdf:_818 ; rdf:_819 ; rdf:_820 ; rdf:_821 ; rdf:_822 ; rdf:_823 ; rdf:_824 ; rdf:_825 ; rdf:_826 ; rdf:_827 ; rdf:_828 ; rdf:_829 ; rdf:_830 ; rdf:_831 ; rdf:_832 ; rdf:_833 ; rdf:_834 ; rdf:_835 ; rdf:_836 ; rdf:_837 ; rdf:_838 ; rdf:_839 ; rdf:_840 ; rdf:_841 ; rdf:_842 ; rdf:_843 ; rdf:_844 ; rdf:_845 ; rdf:_846 ; rdf:_847 ; rdf:_848 ; rdf:_849 ; rdf:_850 ; rdf:_851 ; rdf:_852 ; rdf:_853 ; rdf:_854 ; rdf:_855 ; rdf:_856 ; rdf:_857 ; rdf:_858 ; rdf:_859 ; rdf:_860 ; rdf:_861 ; rdf:_862 ; rdf:_863 ; rdf:_864 ; rdf:_865 ; rdf:_866 ; rdf:_867 ; rdf:_868 ; rdf:_869 ; rdf:_870 ; rdf:_871 ; rdf:_872 ; rdf:_873 ; rdf:_874 ; rdf:_875 ; rdf:_876 ; rdf:_877 ; rdf:_878 ; rdf:_879 ; rdf:_880 ; rdf:_881 ; rdf:_882 ; rdf:_883 ; rdf:_884 ; rdf:_885 ; rdf:_886 ; rdf:_887 ; rdf:_888 ; rdf:_889 ; rdf:_890 ; rdf:_891 ; rdf:_892 ; rdf:_893 ; rdf:_894 ; rdf:_895 ; rdf:_896 ; rdf:_897 ; rdf:_898 ; rdf:_899 ; rdf:_900 ; rdf:_901 ; rdf:_902 ; rdf:_903 ; rdf:_904 ; rdf:_905 ; rdf:_906 ; rdf:_907 ; rdf:_908 ; rdf:_909 ; rdf:_910 ; rdf:_911 ; rdf:_912 ; rdf:_913 ; rdf:_914 ; rdf:_915 ; rdf:_916 ; rdf:_917 ; rdf:_918 ; rdf:_919 ; rdf:_920 ; rdf:_921 ; rdf:_922 ; rdf:_923 ; rdf:_924 ; rdf:_925 ; rdf:_926 ; rdf:_927 ; rdf:_928 ; rdf:_929 ; rdf:_930 ; rdf:_931 ; rdf:_932 ; rdf:_933 ; rdf:_934 ; rdf:_935 ; rdf:_936 ; rdf:_937 ; rdf:_938 ; rdf:_939 ; rdf:_940 ; rdf:_941 ; rdf:_942 ; rdf:_943 ; rdf:_944 ; rdf:_945 ; rdf:_946 ; rdf:_947 ; rdf:_948 ; rdf:_949 ; rdf:_950 ; rdf:_951 ; rdf:_952 ; rdf:_953 ; rdf:_954 ; rdf:_955 ; rdf:_956 ; rdf:_957 ; rdf:_958 ; rdf:_959 ; rdf:_960 ; rdf:_961 ; rdf:_962 ; rdf:_963 ; rdf:_964 ; rdf:_965 ; rdf:_966 ; rdf:_967 ; rdf:_968 ; rdf:_969 ; rdf:_970 ; rdf:_971 ; rdf:_972 ; rdf:_973 ; rdf:_974 ; rdf:_975 ; rdf:_976 ; rdf:_977 ; rdf:_978 ; rdf:_979 ; rdf:_980 ; rdf:_981 ; rdf:_982 ; rdf:_983 ; rdf:_984 ; rdf:_985 ; rdf:_986 ; rdf:_987 ; rdf:_988 ; rdf:_989 ; rdf:_990 ; rdf:_991 ; rdf:_992 ; rdf:_993 ; rdf:_994 ; rdf:_995 ; rdf:_996 ; rdf:_997 ; rdf:_998 ; rdf:_999 ; rdf:_1000 ] . - ?annotationAnswerType a qa:AnnotationOfAnswerType ; - oa:hasTarget ?question ; - oa:hasBody ?annotationOfAnswerType ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerType a qa:AnswerType ; - rdf:value ?answerDataType . - ?annotationAnswerJson a qa:AnnotationOfAnswerJson ; - oa:hasTarget ?question ; - oa:hasBody ?answerJson ; - oa:annotatedBy ?service ; - oa:annotatedAt ?time ; - qa:score ?score . - ?answerJson rdf:value ?json . - } -} -WHERE { - BIND (IRI(str(RAND())) AS ?annotationSPARQL) . - BIND (IRI(str(RAND())) AS ?sparql) . - BIND (IRI(str(RAND())) AS ?annotationOfAnswerType) . - BIND (IRI(str(RAND())) AS ?answerType) . - BIND (IRI(str(RAND())) AS ?annotationAnswer) . - BIND (IRI(str(RAND())) AS ?answer) . - BIND (IRI(str(RAND())) AS ?annotationAnswerJson) . - BIND (IRI(str(RAND())) AS ?answerJson) . - BIND (IRI(str(RAND())) AS ?annotationImprovedQuestion) . - BIND (IRI(str(RAND())) AS ?improvedQuestion) . - BIND (now() AS ?time) . - BIND ( AS ?question) . - BIND ("0.08"^^xsd:double AS ?score) . - BIND ( AS ?service ) . - BIND ("SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000"^^xsd:string AS ?sparqlQueryString ) . - BIND ("http://dbpedia.org/resource/AfterMASH whom is the http://dbpedia.org/resource/Riemannian_geometry named?"^^xsd:string AS ?improvedQuestionText ) . - BIND ( AS ?answerDataType) . - BIND ( AS ?knowledgeGraph) . - BIND ("{\"questions\":[{\"question\":{\"answers\":\"{ \\\"head\\\" : { \\\"vars\\\" : [ \\\"s1\\\" ] }, \\\"results\\\" : { \\\"bindings\\\" : [ { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/P97\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1000303\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100042862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100138352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100138547\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100144644\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146345\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100146669\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100149091\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100149151\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100153085\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100154345\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100156282\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100158068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100166497\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100200203\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100226840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100230981\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100233550\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100235719\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1002465\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100247710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100251476\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255571\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100255673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256033\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256260\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256336\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256365\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256384\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100256441\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268330\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100268917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100270821\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100271385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100272277\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100272467\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100277657\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100290884\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100296857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100296919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100296954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100306163\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100323660\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10032888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100336041\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1003491\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100350712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100363472\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100363753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100368900\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100369837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100375843\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100377193\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100387742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100397017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1004124\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100416234\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100429444\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100437710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100476322\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100497722\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100533874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100534096\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100545431\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100567305\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100585173\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100588445\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1005902\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100600664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100605702\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100683537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100686728\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100690942\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100701460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707410\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707432\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707450\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707560\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707579\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100707582\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708568\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708814\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100708828\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100709508\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100722474\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100726808\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100733133\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100740654\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100742710\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100744452\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100744910\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100750442\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100752647\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100766665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100767188\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100768033\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100770629\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100771043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100771094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100777516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100789929\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100791998\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100799377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100853469\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100869791\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100872433\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100877419\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100880026\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100890188\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100890633\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100908749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100916130\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100927753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100935224\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100935227\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100938271\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100939770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100945066\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100945285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100945637\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100978462\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100979333\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100982849\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100982861\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100983365\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100997212\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100997306\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100997397\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q100998590\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101010922\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101013250\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101032352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101054473\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063207\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063233\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063240\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063248\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063295\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063323\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063350\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063362\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101063364\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101065644\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101071928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101075720\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101079308\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101094792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101096138\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101113247\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101115774\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101116447\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101116604\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101130750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101137443\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1011446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101160132\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101173400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101199215\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205665\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205681\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205732\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101205779\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101209733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101223763\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101228463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101238280\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101243257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247428\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247489\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247519\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247540\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101247567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101248074\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101267136\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101324254\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101333514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101334319\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101343924\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101349536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101349712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101356218\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101402616\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101418327\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101418887\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101419071\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101419751\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101422799\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101423783\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101427897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101427898\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101428516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101429521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101436914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101438997\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101441954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101444705\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445621\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445676\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445883\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101445913\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101453383\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101459115\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101484096\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101486501\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101495425\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497289\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497643\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101497866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101498264\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101498470\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101498584\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101500281\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101500907\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101504200\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101522111\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101524075\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101528994\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101535940\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538319\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538434\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538703\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101538826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101539018\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101539047\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101541410\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101542180\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101542257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101552911\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101554049\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101566501\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101566783\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101579769\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101583472\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101627797\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1016407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101668466\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1016801\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101695457\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101697785\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101702521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1017046\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1017086\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1017332\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101753497\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101754733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101754990\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101758330\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101788376\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101795434\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101797745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1018087\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101833802\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1018465\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101913232\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101953096\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q101971567\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102039658\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102045857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102045965\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102046013\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102047781\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048093\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048138\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048612\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102048854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049796\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049844\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102049925\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102050005\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102050517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102050884\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102076291\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102083\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102083439\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102083767\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102104632\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102120106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102150752\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102158574\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102158749\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102162072\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102162094\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102165489\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102177201\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102180882\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102187356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102187912\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102201050\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102204875\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102204893\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102204905\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102208413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102210482\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102210838\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102211352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102211649\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102212673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102213098\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216056\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216237\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216486\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102216808\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102217141\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102226106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102226212\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102239874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1022483\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102251036\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102252101\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102252119\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102254530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102260583\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102261737\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102276173\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102276807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278041\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278045\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278048\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102278424\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1022791\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102281601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102281677\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102290356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102291484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102291875\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102294569\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102297519\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102298581\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102299711\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102310627\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102310701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102312294\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102313297\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102315377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1023161\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102316221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102317157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102317554\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102324008\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102328716\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102329273\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102336299\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102336787\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102336810\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102337773\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338301\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338310\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338312\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338315\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338318\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338436\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338439\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338694\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338699\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338704\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338706\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338801\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338810\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102338813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102350347\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102352778\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102354463\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102361119\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102362004\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102362324\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1023727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102379157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102388622\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102396650\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102400530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102418503\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102420543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102431966\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102452206\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102454460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102455933\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102457871\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025106\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025118\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025121\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102528897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1025919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10259887\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10260424\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10260577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102616336\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10263636\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10264107\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10266053\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1026612\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10267059\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10267060\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10267766\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10268756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10268937\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10269529\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10270319\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10270984\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10271017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10271175\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10272701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1027366\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10274024\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10274868\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102797423\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10282109\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10282783\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102829543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1028297\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10284285\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102849713\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286148\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286251\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286510\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286661\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10286972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q102885027\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10288525\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10289329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10290705\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10290892\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1029135\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10291411\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10291443\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10293585\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10293927\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10294040\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10294484\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10294550\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10295954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10295993\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10296131\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10296770\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10297919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10299026\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10301351\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10301981\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10302268\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303515\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303540\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10303978\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103042012\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103049401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10305017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10305246\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10307972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313048\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313613\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313703\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10313889\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10314198\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10314768\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10314975\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10315455\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103163\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103179432\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1031816\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10318606\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10319052\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10320043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103222362\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10322521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10323221\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10325569\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326696\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326700\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326701\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326703\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326704\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326713\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326714\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326715\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326722\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326724\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326725\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326726\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326727\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326729\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326730\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326731\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326736\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326737\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326739\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326742\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326744\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326745\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326746\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326751\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326753\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326754\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10326756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10329206\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10329657\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10329673\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103304064\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10330721\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10331068\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103318185\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10331823\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10333980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1033408\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10334176\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1033460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10335304\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103375029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103375635\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10337647\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10337956\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10338655\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1033877\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10340551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10340971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103409942\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10341016\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1034117\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10341264\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10341401\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103432988\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103449792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10346072\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103479666\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10348576\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10349213\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10349216\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103492756\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103498067\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10349975\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103501493\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10350954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1035129\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10351538\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1035157\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10351611\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10354482\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10355035\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10355042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10355178\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1035611\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10356616\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10356912\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103582989\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10359188\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036025\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036027\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036039\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103619797\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10364748\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103649446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10366548\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103676187\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103684222\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10368807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1036944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10369482\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10370031\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10370032\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103705570\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103715454\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10371973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372354\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372428\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372429\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10372430\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373104\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373382\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373392\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373394\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373395\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10373954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103754677\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10375920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377711\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377712\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377714\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377715\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10377717\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10378137\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10379103\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10379249\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10379369\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103798029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10380168\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103819965\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103820839\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103821030\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10382162\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10382537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103826228\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10383257\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103837374\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103837460\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1038377\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103838847\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103847517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103848331\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103848601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103850890\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10385407\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10385708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10386185\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387054\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387060\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387760\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10387761\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10388661\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10388793\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103888328\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103888331\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103888641\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10389579\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10389914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103911669\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391797\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391798\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391799\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391800\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391802\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391803\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391807\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391808\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391809\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391810\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391812\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391814\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391815\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391816\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391817\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391818\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391819\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391821\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391822\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391823\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391825\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391827\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391828\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391829\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391830\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391831\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391832\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391833\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391834\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391835\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391837\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391839\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391840\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391841\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391842\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391843\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391845\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391846\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391847\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391850\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391851\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391853\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391854\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391855\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391857\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391859\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391860\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391863\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391864\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391867\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391868\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391869\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391870\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391873\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391874\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391875\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391876\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391877\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391878\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391880\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391881\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391882\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391884\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391886\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391889\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391890\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391891\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391892\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391893\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391894\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391896\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391899\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391900\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391901\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391902\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391903\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391905\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391906\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391907\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391908\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391909\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391910\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391911\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391912\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391915\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391916\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391917\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391919\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391920\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391921\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391923\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391925\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391926\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391927\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391928\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391929\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391930\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391931\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391932\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391933\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391934\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391936\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391939\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391940\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391941\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391942\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391943\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391944\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391945\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391947\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391948\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391949\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391950\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391951\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391953\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391954\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391955\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391956\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391957\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391958\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391959\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391960\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391961\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391962\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391963\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391965\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391966\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391967\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391969\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391970\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391971\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391973\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391974\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391977\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391979\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391981\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391982\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391983\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391985\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391986\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10391987\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392149\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103924317\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103924462\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392664\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392733\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10392775\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393218\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393219\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393220\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10393551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10394046\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1039432\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10394995\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10394997\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10395155\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103958059\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103958350\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103959782\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10396329\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103980526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103982686\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103985237\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10398667\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10398706\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10398707\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1039908\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10399113\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103991413\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q103993134\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10400698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104007577\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10400866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10401140\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10401509\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104022211\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104022342\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10402660\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104028711\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104029581\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104029584\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104033750\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104034668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104042609\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104043752\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104047679\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10404777\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104049534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104051165\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104051980\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104054163\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040543\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104054601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104057038\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040603\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104062828\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10406715\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040689\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104072067\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10407258\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040761\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1040806\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104082897\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104084793\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10408556\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104086600\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104088310\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104092899\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104093156\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104093542\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097697\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097708\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097772\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104097803\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104098872\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10410183\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104107856\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1041144\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411663\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411862\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411863\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411864\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411865\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411866\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411867\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411868\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10411888\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104119755\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104119777\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104127079\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104128067\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104128400\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10413668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104145349\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104151609\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104151652\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104151655\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104152731\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104153418\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104154385\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104154414\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104156356\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104156983\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104157029\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104157721\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10415972\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104160135\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104161269\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104163111\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104165632\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1041668\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170787\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170815\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170826\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170838\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104170845\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104176270\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104176717\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10417798\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104179196\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104179526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10418059\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104182012\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104187784\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104188332\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104188943\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104189007\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104190216\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104192449\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104192625\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104205792\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10420805\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10420835\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104211534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104211551\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104211601\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104212495\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104213523\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104213637\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104213909\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104214025\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104214213\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104217454\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104223698\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104223759\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104223964\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104234421\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104234446\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10423734\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104241536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104243375\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104246069\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104247017\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104247355\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104250289\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104251914\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10425586\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10426590\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1042670\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104269190\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10428456\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10428811\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10429813\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10430832\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10430859\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104315503\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10432404\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104329352\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433030\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433040\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433041\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433042\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433043\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433044\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q1043341\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433512\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433513\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433514\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433515\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433516\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433517\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433518\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433519\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433520\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433521\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433522\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433523\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433524\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433525\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433526\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433527\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433528\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433529\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433530\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433531\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433532\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433533\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433534\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433536\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433537\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433538\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433539\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433540\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10433541\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10434744\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10435984\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q10436549\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104368133\\\" } }, { \\\"s1\\\" : { \\\"type\\\" : \\\"uri\\\", \\\"value\\\" : \\\"http://www.wikidata.org/entity/Q104372944\\\" } } ] }}\",\"language\":[{\"SPARQL\":\"SELECT DISTINCT ?s1 WHERE { ?s1 . } LIMIT 1000\",\"confidence\":0.08}]}}]}"^^xsd:string AS ?json ). - } - -2023-10-27 14:11:22.176 DEBUG 9655 --- [io-11022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 3119 ms diff --git a/qanary-component-QBE-QAnswer/pom.xml b/qanary-component-QBE-QAnswer/pom.xml index ebd06ffcb..49ca09431 100644 --- a/qanary-component-QBE-QAnswer/pom.xml +++ b/qanary-component-QBE-QAnswer/pom.xml @@ -46,11 +46,6 @@ - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.springframework.boot spring-boot-starter-web diff --git a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml index 616fef219..adad8181c 100644 --- a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml +++ b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml @@ -27,11 +27,6 @@ qa.component ${qanary.version} - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons diff --git a/qanary-component-QE-SparqlExecuter/pom.xml b/qanary-component-QE-SparqlExecuter/pom.xml index 0e483b1e6..04032601d 100644 --- a/qanary-component-QE-SparqlExecuter/pom.xml +++ b/qanary-component-QE-SparqlExecuter/pom.xml @@ -32,11 +32,6 @@ - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.apache.logging.log4j log4j-to-slf4j diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out b/qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out deleted file mode 100644 index 32dce506b..000000000 --- a/qanary-component-RD-DiambiguationProperty-OKBQA/nohup.out +++ /dev/null @@ -1,2461 +0,0 @@ - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: DiambiguationProperty  -Application Description: DiambiguationProperty is a Qanary component  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.1.2  -Spring Boot Version: 2.6.7  -Java Version: 21  - -2023-10-27 12:09:22.644  INFO 9657 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 9657 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) -2023-10-27 12:09:22.664 DEBUG 9657 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:09:22.680  INFO 9657 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:09:46.284  INFO 9657 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@741b3bc3 -2023-10-27 12:09:46.504  INFO 9657 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2a1edad4 -2023-10-27 12:09:46.506  INFO 9657 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@44c79f32 -2023-10-27 12:09:46.550  INFO 9657 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8022 -spring.application.name = DiambiguationProperty -spring.application.description = DiambiguationProperty is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:09:46.648  INFO 9657 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl -2023-10-27 12:09:50.583  WARN 9657 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:09:50.750  WARN 9657 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:09:51.327  WARN 9657 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:09:51.492  INFO 9657 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:09:59.718  INFO 9657 --- [ main] e.w.q.c.d.rd.Application  : Started Application in 41.737 seconds (JVM running for 48.823) -2023-10-27 12:10:00.100  WARN 9657 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DiambiguationProperty, managementUrl=http://0.0.0.0:8022/actuator, healthUrl=http://0.0.0.0:8022/actuator/health, serviceUrl=http://0.0.0.0:8022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level -2023-10-27 12:10:09.807  INFO 9657 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Application registered itself as ccbd3db57005 - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: DiambiguationProperty  -Application Description: DiambiguationProperty is a Qanary component  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.1.2  -Spring Boot Version: 2.6.7  -Java Version: 21  - -2023-10-27 12:15:52.223  INFO 11770 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 11770 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) -2023-10-27 12:15:52.254 DEBUG 11770 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 12:15:52.290  INFO 11770 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 12:16:23.145  INFO 11770 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ed3b1f5 -2023-10-27 12:16:23.708  INFO 11770 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6256ac4f -2023-10-27 12:16:23.718  INFO 11770 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@7fcbe147 -2023-10-27 12:16:23.771  INFO 11770 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8022 -spring.application.name = DiambiguationProperty -spring.application.description = DiambiguationProperty is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 12:16:23.933  INFO 11770 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl -2023-10-27 12:16:29.714  WARN 11770 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 12:16:30.137  WARN 11770 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 12:16:30.732  WARN 11770 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 12:16:30.960  INFO 11770 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 12:16:40.783  WARN 11770 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8022 is already in use -2023-10-27 12:16:41.577 ERROR 11770 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8022 was already in use. - -Action: - -Identify and stop the process that's listening on port 8022 or configure this application to listen on another port. - -2023-10-27 13:37:19.776  WARN 9657 --- [gistrationTask1] d.c.b.a.c.r.ApplicationRegistrator  : Failed to register application as Application(name=DiambiguationProperty, managementUrl=http://0.0.0.0:8022/actuator, healthUrl=http://0.0.0.0:8022/actuator/health, serviceUrl=http://0.0.0.0:8022/) at spring-boot-admin ([http://localhost:8080/instances]): I/O error on POST request for "http://localhost:8080/instances": Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused; nested exception is org.apache.http.conn.HttpHostConnectException: Connect to localhost:8080 [localhost/127.0.0.1, localhost/0:0:0:0:0:0:0:1] failed: Connection refused. Further attempts are logged on DEBUG level - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: DiambiguationProperty  -Application Description: DiambiguationProperty is a Qanary component  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.1.2  -Spring Boot Version: 2.6.7  -Java Version: 21  - -2023-10-27 13:37:49.617  INFO 28737 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 28737 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) -2023-10-27 13:37:49.699 DEBUG 28737 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:37:49.700  INFO 28737 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:38:18.778  INFO 28737 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2ed3b1f5 -2023-10-27 13:38:19.209  INFO 28737 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6256ac4f -2023-10-27 13:38:19.227  INFO 28737 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@7fcbe147 -2023-10-27 13:38:19.310  INFO 28737 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8022 -spring.application.name = DiambiguationProperty -spring.application.description = DiambiguationProperty is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:38:19.508  INFO 28737 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl -2023-10-27 13:38:24.495  WARN 28737 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:38:24.720  WARN 28737 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:38:25.273  WARN 28737 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:38:25.398  INFO 28737 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:38:34.055  WARN 28737 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8022 is already in use -2023-10-27 13:38:34.287 ERROR 28737 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8022 was already in use. - -Action: - -Identify and stop the process that's listening on port 8022 or configure this application to listen on another port. - - - :]KBQQ@QB9z: - rN@@D;`,-:Z@@@K, - k@@@k `]: |Q@@Q, - E@@@o `?Q@@D - r@@Q; #@@@@@` - #Q| :> Q@@@@@` ;jDQ@@QHvQQQQQ> iQQQQQ*FgQ@@Qm' :2&Q@@QKvQBB##: `RRDdOv.?2EEF,;e] `uuuff| - ,d-rNQ' a@@@@Q ^B@@@@kr;c@@@@@@` Q@@@@@@QQ@@@@@@` ;B@@@@e^:J@@@@@# |QBB#Nd9odDHdZ X; ;wmmeZ, - .:R@@* F@@@@e m@@@@Q: ,@@@@@S ^@@@@@B~ 6@@@@@' e@@@@Q, :@@@@QL `RQB#N$' ;dde:;E` jmmZZF - ^@@@$ D@@@@, k@@@@Q: a@@@@@' R@@@@@. K@@@@Q X@@@@@' k@@@QQ` ?BB#NNr -\*|j$\ ~meeZZ; -r@@@@: ;@@@@j |@@@@@\ `@@@@@d ,@@@@@S -@@@@@v >@@@@@i .@@@QQ2 dB#NND \OK9$6. 7mZZaS` -g@@@@` ,Q@@@O Q@@@@@ i@@@@@; Z@@@@@' F@@@@Q` B@@@@@` t@@QQQ, :B#NNgi 6K9$6J .meZaa? -Q@@@@: `.` ^Q@@@$ .@@@@@R Q@@@@Q `@@@@@d `@@@@@f -@@@@@& `Q@QQQK e#NNg&. ;K9$$k_ |eZaaa' -k@@@@QKe9QQEK@@@@L `@@@@@Q` 'K@@@@@w S@@@@@; ;@@@@@r ,@@@@@Q` ,O@QQQQv z#NNggj z9$$kX- ^eZaaa7 -.R@@@@Buz$@@@@QF` m@@@@@@NQ@&N@@@@@HKQ@@@@@Q ,@@@@@@#B@Q@@@@@QgB@$NQQQQQma&#NNggR: ?$$kEXotaeZaaaa_ - *KQ@@@@@Q@@@Q* /N@@@@Q$; 'K@@@@@Kw@@@@@c ;&@@@@@D? \N@@@@Qe: ,9QQQQ&j;&NggRE ?ZEXwev^uaaaau - `'''` J@@@@Qac/` ''` .'` .'. .'` ..` `:|L|7Zaoaa^ - LQ@@@@Q* 'fj: /aoaao` - '::, ]w; :aaaaa^ - \meJFaaaaor - :LuoSfc;- - -Application Title: DiambiguationProperty  -Application Description: DiambiguationProperty is a Qanary component  -Framework@GitHub: https://github.com/WDAqua/Qanary  -Component Version: 3.1.2  -Spring Boot Version: 2.6.7  -Java Version: 21  - -2023-10-27 13:38:54.710  INFO 30129 --- [ main] e.w.q.c.d.rd.Application  : Starting Application v3.1.2 using Java 21 on fedora with PID 30129 (/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/target/qanary-component-RD-DiambiguationProperty-OKBQA-3.1.2.jar started by dennisschiese in /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA) -2023-10-27 13:38:54.726 DEBUG 30129 --- [ main] e.w.q.c.d.rd.Application  : Running with Spring Boot v2.6.7, Spring v5.3.19 -2023-10-27 13:38:54.737  INFO 30129 --- [ main] e.w.q.c.d.rd.Application  : No active profile set, falling back to 1 default profile: "default" -2023-10-27 13:39:17.346  INFO 30129 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@68d6972f -2023-10-27 13:39:17.583  INFO 30129 --- [ main] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7fcbe147 -2023-10-27 13:39:17.626  INFO 30129 --- [ main] e.w.q.component.QanaryServiceController  : qanaryComponent: eu.wdaqua.qanary.component.diambiguationproperty.rd.DiambiguationProperty@743cb8e0 -2023-10-27 13:39:17.724  INFO 30129 --- [ main] e.w.q.c.QanaryComponentConfiguration  : Current Component Configuration: -server.host = null -server.port = 8022 -spring.application.name = DiambiguationProperty -spring.application.description = DiambiguationProperty is a Qanary component -spring.boot.admin.url = http://localhost:8080 -spring.boot.admin.client.url = http://localhost:8080 - -2023-10-27 13:39:17.936  INFO 30129 --- [ main] q.c.QanaryComponentDescriptionController : location of component-description.ttl: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl -2023-10-27 13:39:23.734  WARN 30129 --- [ main] q.c.QanaryComponentDescriptionController : could not find a Turtle service description at '/home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl': org.apache.jena.riot.RiotNotFoundException: Not found: /home/dennisschiese/wseresearch/forked_repos/Qanary-question-answering-components/qanary-component-RD-DiambiguationProperty-OKBQA/src/main/resources/component-description.ttl. Please consider to store a component description file to enable automatic pipeline compositions. -2023-10-27 13:39:23.973  WARN 30129 --- [ main] e.w.q.c.CacheOfRestTemplateResponse  : CacheResponse: initialized -2023-10-27 13:39:24.315  WARN 30129 --- [ main] e.w.q.c.RestTemplateWithCaching  : eu.wdaqua.qanary.communications.RestTemplateWithCaching was initialized -2023-10-27 13:39:24.506  INFO 30129 --- [ main] e.w.qanary.commons.config.CacheConfig  : cacheManager configuration: -2023-10-27 13:39:34.854  WARN 30129 --- [ main] ConfigServletWebServerApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8022 is already in use -2023-10-27 13:39:35.357 ERROR 30129 --- [ main] o.s.b.d.LoggingFailureAnalysisReporter  : - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Web server failed to start. Port 8022 was already in use. - -Action: - -Identify and stop the process that's listening on port 8022 or configure this application to listen on another port. - -2023-10-27 13:53:08.097  INFO 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:08.110  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:08.180  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"},"inGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d","outGraph":"urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d"} -2023-10-27 13:53:08.270  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@545da884 -2023-10-27 13:53:08.271  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d -2023-10-27 13:53:08.271  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:53:08.271  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:8c23f9c9-2e33-4332-ae5d-8141009bbe5d -2023-10-27 13:53:08.274  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:53:08.274  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:53:08.588  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_2d9c014e-b923-4999-899f-de2b3a0fa903 -2023-10-27 13:53:08.666  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Question: What did the suffragettes stand for? -2023-10-27 13:53:08.667  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@12c50bf5 -2023-10-27 13:53:08.673 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:53:08.727  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:53:08.737  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:53:08.738  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What did the suffragettes stand for?","language":"en"} -Curl Response: -[{"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"}] -2023-10-27 13:53:10.153  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"}] -2023-10-27 13:53:10.154  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"}] -2023-10-27 13:53:10.154  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v3 WHERE { ?v5 ?v7 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"suffragettes"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"stand"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/callsignMeaning"},{"score":0.5333333333333333,"var":"v7","value":"http:\/\/dbpedia.org\/property\/stands"}]}]} -2023-10-27 13:53:11.459  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.6153846153846154,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/callsignMeaning"},{"score":0.5333333333333333,"var":"v7","value":"http:\/\/dbpedia.org\/property\/stands"}]}]} -2023-10-27 13:53:11.462  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v7, urls: http://dbpedia.org/ontology/elevation, score: 0.6153846153846154 -2023-10-27 13:53:11.462  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/elevation -2023-10-27 13:53:11.463  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:53:11.463  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:53:11.463 DEBUG 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:53:11.463 DEBUG 9657 --- [nio-8022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:53:11.497  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:53:11.498 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 3392 ms -2023-10-27 13:53:38.017  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"},"inGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2","outGraph":"urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2"} -2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@48b70950 -2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 -2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:53:38.018  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ebe2e010-199f-4d9b-89c6-20a67c105ca2 -2023-10-27 13:53:38.019  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:53:38.019  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:53:38.027  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_d23bfbf0-a419-4086-beff-fd6fd0fb4e11 -2023-10-27 13:53:38.097  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which universities have more than 200000 students? -2023-10-27 13:53:38.097  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4670ee36 -2023-10-27 13:53:38.098 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:53:38.101  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:53:38.110  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:53:38.111  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which universities have more than 200000 students?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"}] -2023-10-27 13:53:38.755  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"}] -2023-10-27 13:53:38.755  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"}] -2023-10-27 13:53:38.755  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v12 ?v8 ; ?v11 ?v10 . } ","slots":[{"s":"v11","p":"is","o":""},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"students"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"universities"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.8"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6923076923076923,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/University"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/seniorStudents"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/bestStudent"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsCalled"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studenttrustees"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsBody"},{"score":0.8235294117647058,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/numberOfStudents"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentCount"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentcouncil"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsection"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentTrustee"},{"score":0.5833333333333334,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPop."},{"score":0.7368421052631579,"var":"v12","value":"http:\/\/dbpedia.org\/property\/student"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentBudget"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentRatio"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPaper"}]}]} -2023-10-27 13:53:40.398  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6923076923076923,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/University"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/seniorStudents"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/bestStudent"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsCalled"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studenttrustees"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsBody"},{"score":0.8235294117647058,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/numberOfStudents"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentCount"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentcouncil"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentsection"},{"score":0.5185185185185185,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentTrustee"},{"score":0.5833333333333334,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPop."},{"score":0.7368421052631579,"var":"v12","value":"http:\/\/dbpedia.org\/property\/student"},{"score":0.5384615384615384,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentBudget"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentRatio"},{"score":0.56,"var":"v12","value":"http:\/\/dbpedia.org\/property\/studentPaper"}]}]} -2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/seniorStudents, score: 0.5185185185185185 -2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/studentsBody, score: 0.56 -2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/ontology/numberOfStudents, score: 0.8235294117647058 -2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/numberOfStudents -2023-10-27 13:53:40.399  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:53:40.399  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:53:40.399 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:53:40.400 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:53:40.408  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:53:40.408 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 2390 ms -2023-10-27 13:53:59.986  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:53:59.986  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"},"inGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e","outGraph":"urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e"} -2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@312d2dc5 -2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e -2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:53:59.987  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ffd220e8-d94b-448a-bdcf-83aab11c669e -2023-10-27 13:53:59.987  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:53:59.987  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:53:59.996  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_fffc5753-ce6c-407c-9780-bb6bbe074f61 -2023-10-27 13:54:00.066  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many casualties were a result of the Troubles? -2023-10-27 13:54:00.066  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3512bf38 -2023-10-27 13:54:00.067 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:54:00.069  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:54:00.079  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:54:00.080  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many casualties were a result of the Troubles?","language":"en"} -Curl Response: -[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"}] -2023-10-27 13:54:00.772  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"}] -2023-10-27 13:54:00.772  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"}] -2023-10-27 13:54:00.772  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v10 ?v8 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"BE"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"result"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Troubles"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.625,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/result"},{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/resume"}]}]} -2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.625,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/result"},{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/resume"}]}]} -2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : var: v10, urls: http://dbpedia.org/ontology/result, score: 0.625 -2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/result -2023-10-27 13:54:02.019  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:02.019  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:54:02.019 DEBUG 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:02.019 DEBUG 9657 --- [nio-8022-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:02.029  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:54:02.029 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 2043 ms -2023-10-27 13:54:17.825  INFO 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:17.826  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"},"inGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc","outGraph":"urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc"} -2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1661c473 -2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc -2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:54:17.827  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:86432fd6-eada-44da-8637-fd3539bcc4cc -2023-10-27 13:54:17.828  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:54:17.828  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:54:17.841  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_3c9bfd97-e166-426d-b320-890e99c0453d -2023-10-27 13:54:17.898  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many countries have never been members of the UN? -2023-10-27 13:54:17.898  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2dbc5f8c -2023-10-27 13:54:17.899 DEBUG 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:54:17.900  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:54:17.911  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:54:17.911  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many countries have never been members of the UN?","language":"en"} -Curl Response: -[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] -2023-10-27 13:54:18.643  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] -2023-10-27 13:54:18.643  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] -2023-10-27 13:54:18.643  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} -2023-10-27 13:54:22.789  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} -2023-10-27 13:54:22.789  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : var: v11, urls: http://dbpedia.org/ontology/class, score: 0.75 -2023-10-27 13:54:22.790  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/class -2023-10-27 13:54:22.790  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:22.790  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:54:22.790 DEBUG 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:22.790 DEBUG 9657 --- [io-8022-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:22.798  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:54:22.798 DEBUG 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 4973 ms -2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  :[0;39m construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"},"inGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408","outGraph":"urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408"} -2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@5e6fd208 -2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 -2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:54:24.005  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:5f8ff7de-8849-416a-b9be-2630ad85a408 -2023-10-27 13:54:24.005  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:54:24.005  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:54:24.022  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_222568c9-c204-4d2d-a210-dc32334614da -2023-10-27 13:54:24.041  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: What are the German names of academic disciplines containing “linguistik”? -2023-10-27 13:54:24.041  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66615308 -2023-10-27 13:54:24.042 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:54:24.045  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:54:24.088  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:54:24.088  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What are the German names of academic disciplines containing “linguistik”?","language":"en"} -Curl Response: -[{"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"}] -2023-10-27 13:54:24.700  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"}] -2023-10-27 13:54:24.700  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"}] -2023-10-27 13:54:24.700  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v12 ?v7 . ?v9 ?v13 ?v10 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"academic disciplines"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v12","p":"verbalization","o":"names"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"containing"},{"s":"v10","p":"is","o":"rdf:Class"},{"s":"v10","p":"verbalization","o":"linguistik"}],"score":"0.8333333333333334"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5806451612903226,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/AcademicJournal"},{"score":0.7272727272727273,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/Linguist"}],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} -2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5806451612903226,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/AcademicJournal"},{"score":0.7272727272727273,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/Linguist"}],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v12","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v12","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} -2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/name6a, score: 0.5333333333333333 -2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/property/name., score: 0.5714285714285714 -2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v12, urls: http://dbpedia.org/ontology/name, score: 0.6153846153846154 -2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/name -2023-10-27 13:54:28.546  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:28.546  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:54:28.546 DEBUG 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:28.547 DEBUG 9657 --- [nio-8022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:54:28.553  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:54:28.553 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 4548 ms -2023-10-27 13:55:16.920  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"},"inGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea","outGraph":"urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea"} -2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@5d334ed3 -2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea -2023-10-27 13:55:16.921  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:55:16.922  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:9bf73a95-c662-4c19-b6b0-e2104bfbb1ea -2023-10-27 13:55:16.922  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:55:16.922  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:55:16.929  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_28a93891-96ac-4313-aed2-eaf44d9e782f -2023-10-27 13:55:16.943  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: which forest is bigger, Amazon Rainforest or Congo Basin? -2023-10-27 13:55:16.943  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5f50bcdd -2023-10-27 13:55:16.944 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:55:16.945  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:55:16.952  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:55:16.952  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"which forest is bigger, Amazon Rainforest or Congo Basin?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"}] -2023-10-27 13:55:17.656  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"}] -2023-10-27 13:55:17.656  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"}] -2023-10-27 13:55:17.656  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v4 ?v2 .} ","slots":[{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"bigger"},{"s":"v4","p":"is","o":"rdf:Property"},{"s":"v4","p":"verbalization","o":"forest"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:55:19.308  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:55:19.308 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 2387 ms -2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"},"inGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0","outGraph":"urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0"} -2023-10-27 13:55:32.329  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@424f6220 -2023-10-27 13:55:32.330  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 -2023-10-27 13:55:32.330  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:55:32.330  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:66f0cd3f-5979-42eb-abef-c6574ce7afe0 -2023-10-27 13:55:32.330  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:55:32.330  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:55:32.335  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_b16f469c-6297-4e1b-9bda-d2f390f9f6f1 -2023-10-27 13:55:32.345  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many public holidays does the state Bavaria have in a year? -2023-10-27 13:55:32.345  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@74de40d -2023-10-27 13:55:32.345 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:55:32.347  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:55:32.355  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:55:32.355  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many public holidays does the state Bavaria have in a year?","language":"en"} -Curl Response: -[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"}] -2023-10-27 13:55:32.993  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"}] -2023-10-27 13:55:32.994  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"}] -2023-10-27 13:55:32.994  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v15 ?v11 . ?v4 ?v16 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"year"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"HAVE"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":"rdf:Property"},{"s":"v16","p":"verbalization","o":"state Bavaria"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/Year"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v16","value":"http:\/\/dbpedia.org\/property\/stateBird"},{"score":0.5,"var":"v16","value":"http:\/\/dbpedia.org\/ontology\/stateOfOrigin"}]}]} -2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/Year"}],"literals":[],"properties":[{"score":0.5185185185185185,"var":"v16","value":"http:\/\/dbpedia.org\/property\/stateBird"},{"score":0.5,"var":"v16","value":"http:\/\/dbpedia.org\/ontology\/stateOfOrigin"}]}]} -2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v16, urls: http://dbpedia.org/property/stateBird, score: 0.5185185185185185 -2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/stateBird -2023-10-27 13:55:37.169  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:55:37.169  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:55:37.169 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:55:37.169 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:55:37.175  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:55:37.175 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 4846 ms -2023-10-27 13:56:01.654  INFO 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"},"inGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee","outGraph":"urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee"} -2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@6f804974 -2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee -2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:56:01.656  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:5ab5620c-b538-4ad1-9c31-6bd2329c98ee -2023-10-27 13:56:01.656  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:56:01.656  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:56:01.663  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_ca4ce382-1d7b-4055-81ce-e08153cd3649 -2023-10-27 13:56:01.680  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which American presidents followed in their father‘s step and also became the president? -2023-10-27 13:56:01.681  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4984a09d -2023-10-27 13:56:01.681 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:56:01.682  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:56:01.690  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:56:01.690  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which American presidents followed in their father‘s step and also became the president?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"}] -2023-10-27 13:56:02.418  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"}] -2023-10-27 13:56:02.418  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"}] -2023-10-27 13:56:02.418  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v16 ?v15 ; ?v17 ?v6 . ?v11 ?v18 ?v13 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"also became"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"father"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"president"},{"s":"v16","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"American presidents"},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v17","p":"verbalization","o":"followed"}],"score":"0.875"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7272727272727273,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/President"},{"score":0.5185185185185185,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/VicePresident"},{"score":0.5,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/President"}],"literals":[],"properties":[{"score":0.6086956521739131,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedBy"},{"score":0.6363636363636364,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedby"},{"score":0.7,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followed"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/following"},{"score":0.6666666666666666,"var":"v17","value":"http:\/\/dbpedia.org\/ontology\/subsequentWork"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followUp"}]}]} -2023-10-27 13:56:04.782  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7272727272727273,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/President"},{"score":0.5185185185185185,"var":"v13","value":"http:\/\/dbpedia.org\/ontology\/VicePresident"},{"score":0.5,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/President"}],"literals":[],"properties":[{"score":0.6086956521739131,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedBy"},{"score":0.6363636363636364,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followedby"},{"score":0.7,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followed"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/following"},{"score":0.6666666666666666,"var":"v17","value":"http:\/\/dbpedia.org\/ontology\/subsequentWork"},{"score":0.5714285714285714,"var":"v17","value":"http:\/\/dbpedia.org\/property\/followUp"}]}]} -2023-10-27 13:56:04.782  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : var: v17, urls: http://dbpedia.org/property/followedBy, score: 0.6086956521739131 -2023-10-27 13:56:04.782  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : var: v17, urls: http://dbpedia.org/property/followedby, score: 0.6363636363636364 -2023-10-27 13:56:04.783  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : var: v17, urls: http://dbpedia.org/property/followed, score: 0.7 -2023-10-27 13:56:04.783  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/followed -2023-10-27 13:56:04.783  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:56:04.783  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:56:04.783 DEBUG 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:56:04.783 DEBUG 9657 --- [nio-8022-exec-1] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:56:04.789  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:56:04.790 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 3136 ms -2023-10-27 13:56:30.484  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:30.484  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"},"inGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2","outGraph":"urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2"} -2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1d4805d5 -2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 -2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:56:30.485  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:d1c365c0-6cff-4dcd-a3f4-17cd8a5171a2 -2023-10-27 13:56:30.485  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:56:30.485  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:56:30.491  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_4ebf8934-0976-41e9-9cb9-eabef0a5d76d -2023-10-27 13:56:30.503  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: Where was Goethe’s unmarried partner born ? -2023-10-27 13:56:30.503  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6b5c65f5 -2023-10-27 13:56:30.503 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:56:30.505  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:56:30.515  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:56:30.515  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Where was Goethe’s unmarried partner born ?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] -2023-10-27 13:56:31.312  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] -2023-10-27 13:56:31.313  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] -2023-10-27 13:56:31.313  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"Goethe s"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"LOCATION born"},{"s":"v6","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:56:35.594  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:56:35.595 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 5111 ms -2023-10-27 13:57:01.452  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"},"inGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c","outGraph":"urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c"} -2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@2cf53d99 -2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c -2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:57:01.453  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:9bb28f59-c484-4c37-b078-84eae39fbc7c -2023-10-27 13:57:01.453  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:57:01.453  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:57:01.458  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_5da116ef-6bdf-4e63-af36-eb59f3bbff25 -2023-10-27 13:57:01.468  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: When was the University of Hamburg founded? -2023-10-27 13:57:01.468  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@2232c677 -2023-10-27 13:57:01.469 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:57:01.470  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:57:01.478  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:57:01.478  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"When was the University of Hamburg founded?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"}] -2023-10-27 13:57:02.128  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"}] -2023-10-27 13:57:02.129  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"}] -2023-10-27 13:57:02.129  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"University"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Hamburg"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"DATETIME founded"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5294117647058824,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityLibrarian"},{"score":0.5517241379310345,"var":"v9","value":"http:\/\/dbpedia.org\/property\/workUniversity"},{"score":0.5454545454545454,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityColleges"},{"score":0.8181818181818182,"var":"v9","value":"http:\/\/dbpedia.org\/ontology\/university"},{"score":0.6428571428571429,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityteam"}]}]} -2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5294117647058824,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityLibrarian"},{"score":0.5517241379310345,"var":"v9","value":"http:\/\/dbpedia.org\/property\/workUniversity"},{"score":0.5454545454545454,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityColleges"},{"score":0.8181818181818182,"var":"v9","value":"http:\/\/dbpedia.org\/ontology\/university"},{"score":0.6428571428571429,"var":"v9","value":"http:\/\/dbpedia.org\/property\/universityteam"}]}]} -2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/universityLibrarian, score: 0.5294117647058824 -2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/workUniversity, score: 0.5517241379310345 -2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/ontology/university, score: 0.8181818181818182 -2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/university -2023-10-27 13:57:06.303  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:57:06.303  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:57:06.303 DEBUG 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:57:06.303 DEBUG 9657 --- [nio-8022-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:57:06.309  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:57:06.309 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4856 ms -2023-10-27 13:57:22.495  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"},"inGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681","outGraph":"urn:graph:e77820f2-c070-4be9-8278-3399cf0da681"} -2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@77c0903d -2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 -2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:57:22.497  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:e77820f2-c070-4be9-8278-3399cf0da681 -2023-10-27 13:57:22.497  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:57:22.497  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:57:22.517  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_038d7036-1f4a-49c6-adea-9156f30ea3cb -2023-10-27 13:57:22.554  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: What is the twitter name of Running Wild? -2023-10-27 13:57:22.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3600c1ad -2023-10-27 13:57:22.555 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:57:22.563  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:57:22.580  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:57:22.581  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What is the twitter name of Running Wild?","language":"en"} -Curl Response: -[{"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"}] -2023-10-27 13:57:23.886  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"}] -2023-10-27 13:57:23.886  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"}] -2023-10-27 13:57:23.886  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v10 ?v3 . ?v7 ?v11 ?v8 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"twitter name"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Running"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Wild"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:57:28.034  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:57:28.035 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 5538 ms -2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"},"inGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b","outGraph":"urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b"} -2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1ad19817 -2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b -2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:57:36.921  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:56a55ca9-16ad-4b7a-bde3-8b440c5fed8b -2023-10-27 13:57:36.921  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:57:36.921  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:57:36.930  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_7dbf1239-13c3-4e64-b519-7d035728e915 -2023-10-27 13:57:36.942  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many people died due to the Great Leap Forward according to the highest estimate? -2023-10-27 13:57:36.942  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1416653d -2023-10-27 13:57:36.942 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:57:36.944  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:57:36.952  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:57:36.952  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many people died due to the Great Leap Forward according to the highest estimate?","language":"en"} -Curl Response: -[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"}] -2023-10-27 13:57:42.790  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"}] -2023-10-27 13:57:42.790  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"}] -2023-10-27 13:57:42.790  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v1 ?v19 ?v4 . ?v13 ?v20 ?v16 . ?v1 ?v18 ?v7 . } ORDER BY DESC(?v16) OFFSET 0 LIMIT 1 ","slots":[{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"estimate"},{"s":"v19","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Great Leap"},{"s":"v20","p":"is","o":"owl:DatatypeProperty"},{"s":"v20","p":"verbalization","o":"highest"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"Forward died"}],"score":"0.625"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestPrev"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestAge"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestMount"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestBreak"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestState"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatM"},{"score":0.5714285714285714,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestFt"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestStart"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestName"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatD"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestWinds"},{"score":0.6666666666666666,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highest"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestgrade"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/property\/high"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highesthonor"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestBreak"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestEnd"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatS"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestRank"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestScore"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestElev"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/height"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestPlace"}]}]} -2023-10-27 13:57:45.684  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestPrev"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestAge"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestMount"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestBreak"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/elevation"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestState"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatM"},{"score":0.5714285714285714,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestFt"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestStart"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestName"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatD"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestWinds"},{"score":0.6666666666666666,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highest"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestgrade"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/property\/high"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highesthonor"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestBreak"},{"score":0.5454545454545454,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestEnd"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestLatS"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestRank"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestScore"},{"score":0.5217391304347826,"var":"v20","value":"http:\/\/dbpedia.org\/property\/highestElev"},{"score":0.5333333333333333,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/height"},{"score":0.5,"var":"v20","value":"http:\/\/dbpedia.org\/ontology\/highestPlace"}]}]} -2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highestPrev, score: 0.5217391304347826 -2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highestAge, score: 0.5454545454545454 -2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highestFt, score: 0.5714285714285714 -2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v20, urls: http://dbpedia.org/property/highest, score: 0.6666666666666666 -2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/highest -2023-10-27 13:57:45.685  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:57:45.685  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:57:45.685 DEBUG 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:57:45.685 DEBUG 9657 --- [nio-8022-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:57:45.692  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:57:45.692 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 8771 ms -2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"},"inGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0","outGraph":"urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0"} -2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@191bec44 -2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 -2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:57:50.225  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:b1d0eb8b-2049-42b0-b290-a0f7a22af3e0 -2023-10-27 13:57:50.225  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:57:50.225  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:57:50.234  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_b0c94db6-4934-4ae1-a41f-90d07d6c7b57 -2023-10-27 13:57:50.243  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many movies does the Scream franchise have? -2023-10-27 13:57:50.243  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@65e2e97b -2023-10-27 13:57:50.244 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:57:50.246  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:57:50.253  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:57:50.253  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many movies does the Scream franchise have?","language":"en"} -Curl Response: -[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"}] -2023-10-27 13:57:50.895  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"}] -2023-10-27 13:57:50.895  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"}] -2023-10-27 13:57:50.895  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v10 ?v8 .} ","slots":[{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"Scream franchise"},{"s":"v8","p":"is","o":"rdf:Resource|rdf:Literal"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:57:54.976  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 13:57:54.976 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 4751 ms -2023-10-27 13:58:00.015  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:00.015  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"},"inGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9","outGraph":"urn:graph:812639f4-ccf5-4456-8867-8046e13770c9"} -2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@567784ca -2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 -2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:58:00.016  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:812639f4-ccf5-4456-8867-8046e13770c9 -2023-10-27 13:58:00.016  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:58:00.016  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:58:00.021  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_58738599-b40a-4333-a9d2-e2e9bf221d61 -2023-10-27 13:58:00.030  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold? -2023-10-27 13:58:00.030  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@255486bc -2023-10-27 13:58:00.030 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:58:00.046  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:58:00.053  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:58:00.053  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"among the characters in the witcher, who has two unmarried partners, Yennefer of Vengerberg and Triss Merigold?","language":"en"} -Curl Response: -[{"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] -2023-10-27 13:58:00.806  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] -2023-10-27 13:58:00.808  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"}] -2023-10-27 13:58:00.808  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v8 WHERE { ?v12 ?v21 ?v14 . ?v2 ?v20 ?v5 . ?v8 ?v22 ?v18 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"witcher"},{"s":"v20","p":"is","o":"rdf:Property"},{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"Yennefer"},{"s":"v18","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v2","p":"is","o":"rdf:Class"},{"s":"v2","p":"verbalization","o":"characters"},{"s":"v22","p":"is","o":"rdf:Property"},{"s":"v22","p":"verbalization","o":"unmarried partners"},{"s":"v14","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v14","p":"verbalization","o":"Vengerberg Merigold"},{"s":"v21","p":"is","o":"rdf:Property"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/NarutoCharacter"},{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/DisneyCharacter"},{"score":0.6,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/ComicsCharacter"},{"score":0.5,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/AnimangaCharacter"},{"score":0.782608695652174,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/FictionalCharacter"},{"score":0.5714285714285714,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/SoapCharacter"}],"literals":[],"properties":[]}]} -2023-10-27 13:58:02.269  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/NarutoCharacter"},{"score":0.5333333333333333,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/DisneyCharacter"},{"score":0.6,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/ComicsCharacter"},{"score":0.5,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/AnimangaCharacter"},{"score":0.782608695652174,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/FictionalCharacter"},{"score":0.5714285714285714,"var":"v2","value":"http:\/\/dbpedia.org\/ontology\/SoapCharacter"}],"literals":[],"properties":[]}]} -2023-10-27 13:58:02.270 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 2255 ms -2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"},"inGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f","outGraph":"urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f"} -2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@260d56e9 -2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f -2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:58:44.299  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ec44e0d9-ed20-43f0-b203-9e066b87411f -2023-10-27 13:58:44.299  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:58:44.299  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:58:44.306  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_1d38dc87-3f4b-4869-9539-c582e471a089 -2023-10-27 13:58:44.317  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which actor starring in Free Guy also starred in Deadpool? -2023-10-27 13:58:44.318  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@630fcc4c -2023-10-27 13:58:44.318 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:58:44.319  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:58:44.325  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:58:44.325  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which actor starring in Free Guy also starred in Deadpool?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"}] -2023-10-27 13:58:45.008  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"}] -2023-10-27 13:58:45.008  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"}] -2023-10-27 13:58:45.008  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v13 ?v12 . ?v4 ?v15 ?v6 ; ?v14 ?v10 . } ","slots":[{"s":"v12","p":"is","o":"rdf:Class"},{"s":"v12","p":"verbalization","o":"actor"},{"s":"v10","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v10","p":"verbalization","o":"Deadpool"},{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Free Guy"},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v13","p":"is","o":""},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"also starred"}],"score":"0.75"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/Actor"}],"literals":[],"properties":[]}]} -2023-10-27 13:58:49.080  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v12","value":"http:\/\/dbpedia.org\/ontology\/Actor"}],"literals":[],"properties":[]}]} -2023-10-27 13:58:49.080 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4781 ms -2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"},"inGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6","outGraph":"urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6"} -2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@f67eb2f -2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 -2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 13:58:58.552  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:632dfce3-e440-4e18-9e41-72d87f951eb6 -2023-10-27 13:58:58.552  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 13:58:58.552  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 13:58:58.559  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_4dd80ea2-7e69-4620-8cd4-b33d479c5090 -2023-10-27 13:58:58.570  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: What notes does a C major chord consist of? -2023-10-27 13:58:58.571  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@67621b42 -2023-10-27 13:58:58.571 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 13:58:58.573  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 13:58:58.582  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 13:58:58.582  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What notes does a C major chord consist of?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"}] -2023-10-27 13:58:59.214  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"}] -2023-10-27 13:58:59.214  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"}] -2023-10-27 13:58:59.214  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v2 . ?v8 ?v11 ?v4 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"major C chord"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"consist"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v10","p":"verbalization","o":"notes"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"}],"score":"0.8333333333333334"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/not"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/property\/note"},{"score":0.5714285714285714,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/notes"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/note"}]}]} -2023-10-27 13:59:03.240  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v10","value":"http:\/\/dbpedia.org\/property\/not"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/property\/note"},{"score":0.5714285714285714,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/notes"},{"score":0.6153846153846154,"var":"v10","value":"http:\/\/dbpedia.org\/ontology\/note"}]}]} -2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v10, urls: http://dbpedia.org/property/not, score: 0.5 -2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v10, urls: http://dbpedia.org/property/note, score: 0.6153846153846154 -2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/note -2023-10-27 13:59:03.241  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:59:03.241  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 13:59:03.241 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:59:03.241 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 13:59:03.252  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 13:59:03.253 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 4701 ms -2023-10-27 14:00:02.956  INFO 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:02.956  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:02.956  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"},"inGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b","outGraph":"urn:graph:f48704a2-e326-4237-b784-257818c7ed9b"} -2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@3ab26e69 -2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:f48704a2-e326-4237-b784-257818c7ed9b -2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:00:02.957  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:f48704a2-e326-4237-b784-257818c7ed9b -2023-10-27 14:00:02.957  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:00:02.957  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:00:02.965  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_aa88f5eb-5d1f-4212-a918-d9f9ddd1b26c -2023-10-27 14:00:02.977  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Question: What is the second game developed by Piranha Bytes? -2023-10-27 14:00:02.979  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@ad923b7 -2023-10-27 14:00:02.979 DEBUG 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:00:02.981  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:00:02.988  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:00:02.988  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What is the second game developed by Piranha Bytes?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"}] -2023-10-27 14:00:03.867  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"}] -2023-10-27 14:00:03.867  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"}] -2023-10-27 14:00:03.867  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v10 ?v8 . ?v2 ?v11 ?v4 . } ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"second game"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"developed"},{"s":"v8","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v8","p":"verbalization","o":"Piranha Bytes"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"developed"}],"score":"0.8333333333333334"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v4","value":"http:\/\/dbpedia.org\/ontology\/second"}],"literals":[],"properties":[{"score":0.8,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/developer"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/dateDeveloped"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.7,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/precursor"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5384615384615384,"var":"v11","value":"http:\/\/dbpedia.org\/property\/webDeveloper"},{"score":0.6956521739130435,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developers"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/codeveloper"},{"score":0.64,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedAt"},{"score":0.7272727272727273,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/computingPlatform"},{"score":0.56,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developments"},{"score":0.6153846153846154,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedFor"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedInto"}]}]} -2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5714285714285714,"var":"v4","value":"http:\/\/dbpedia.org\/ontology\/second"}],"literals":[],"properties":[{"score":0.8,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/developer"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/dateDeveloped"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.7,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/precursor"},{"score":0.7368421052631579,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5384615384615384,"var":"v11","value":"http:\/\/dbpedia.org\/property\/webDeveloper"},{"score":0.6956521739130435,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developers"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/codeveloper"},{"score":0.64,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedAt"},{"score":0.7272727272727273,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/computingPlatform"},{"score":0.56,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developments"},{"score":0.6153846153846154,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedFor"},{"score":0.5925925925925926,"var":"v11","value":"http:\/\/dbpedia.org\/property\/developedInto"}]}]} -2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : var: v11, urls: http://dbpedia.org/ontology/developer, score: 0.8 -2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/developer -2023-10-27 14:00:06.164  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:06.164  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:00:06.164 DEBUG 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:06.164 DEBUG 9657 --- [io-8022-exec-10] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:06.171  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:00:06.171 DEBUG 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 3215 ms -2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"},"inGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6","outGraph":"urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6"} -2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1a2f6357 -2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 -2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:00:08.035  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c11cf415-20ff-462e-ac4f-79fe04072bd6 -2023-10-27 14:00:08.035  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:00:08.035  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:00:08.040  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_551f8cd6-c0de-45f0-8fe7-acb5bc58a521 -2023-10-27 14:00:08.051  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which egyptian pyramid is the tallest? -2023-10-27 14:00:08.061  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1bcf67c8 -2023-10-27 14:00:08.061 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:00:08.062  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:00:08.070  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:00:08.071  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which egyptian pyramid is the tallest?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"}] -2023-10-27 14:00:08.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"}] -2023-10-27 14:00:08.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"}] -2023-10-27 14:00:08.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v4 . ?v1 ?v6 ?v2 . } ","slots":[{"s":"v5","p":"is","o":""},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"tallest"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"pyramid"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"egyptian THING"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v6","value":"http:\/\/dbpedia.org\/property\/pyramidDate"}]}]} -2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v6","value":"http:\/\/dbpedia.org\/property\/pyramidDate"}]}]} -2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v6, urls: http://dbpedia.org/property/pyramidDate, score: 0.5217391304347826 -2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/pyramidDate -2023-10-27 14:00:10.397  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:10.397  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:00:10.397 DEBUG 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:10.397 DEBUG 9657 --- [nio-8022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:10.405  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:00:10.405 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 2370 ms -2023-10-27 14:00:14.044  INFO 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"},"inGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a","outGraph":"urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a"} -2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@3be5c33d -2023-10-27 14:00:14.046  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a -2023-10-27 14:00:14.047  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:00:14.047  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:7a2c2d18-e5ce-4ee6-adae-ecaf6100915a -2023-10-27 14:00:14.047  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:00:14.047  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:00:14.057  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_2b029a22-5437-45fe-bc61-395a4f11a44d -2023-10-27 14:00:14.075  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Question: Who was the fellow Hobbit who was an enemy of Frodo? -2023-10-27 14:00:14.075  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@66f76df2 -2023-10-27 14:00:14.075 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:00:14.076  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:00:14.087  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:00:14.087  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Who was the fellow Hobbit who was an enemy of Frodo?","language":"en"} -Curl Response: -[{"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"}] -2023-10-27 14:00:14.731  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"}] -2023-10-27 14:00:14.732  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"}] -2023-10-27 14:00:14.732  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v6 ?v1 WHERE { ?v1 ?v15 ?v3 . ?v6 ?v16 ?v11 ; ?v14 ?v13 . } ","slots":[{"s":"v13","p":"is","o":"rdf:Class"},{"s":"v13","p":"verbalization","o":"enemy"},{"s":"v14","p":"is","o":""},{"s":"v15","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"fellow Hobbit"},{"s":"v11","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v11","p":"verbalization","o":"Frodo"},{"s":"v16","p":"is","o":"rdf:Property"}],"score":"0.75"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:00:18.437  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:00:18.437 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : processing took: 4391 ms -2023-10-27 14:00:31.403  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"},"inGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf","outGraph":"urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf"} -2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@66933c41 -2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf -2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:00:31.404  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:2e48f36b-da5a-4a14-acd0-9d3025c730cf -2023-10-27 14:00:31.404  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:00:31.404  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:00:31.409  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_01f786d5-3736-4ffd-b8f4-b0e4f195df61 -2023-10-27 14:00:31.419  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which of the dragons in Game of Thrones died? -2023-10-27 14:00:31.419  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@52a64f9a -2023-10-27 14:00:31.419 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:00:31.420  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:00:31.426  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:00:31.426  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which of the dragons in Game of Thrones died?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"}] -2023-10-27 14:00:32.073  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"}] -2023-10-27 14:00:32.073  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"}] -2023-10-27 14:00:32.073  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v4 ?v11 ?v7 . ?v7 ?v12 ?v9 . } ","slots":[{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"Thrones"},{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"dragons"},{"s":"v12","p":"is","o":"rdf:Property"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"Game"}],"score":"0.6"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Game"}],"literals":[],"properties":[]}]} -2023-10-27 14:00:35.409  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Game"}],"literals":[],"properties":[]}]} -2023-10-27 14:00:35.410 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4006 ms -2023-10-27 14:00:40.943  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.943  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"},"inGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394","outGraph":"urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394"} -2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@14503eeb -2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 -2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:00:40.944  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:ac13c8ee-18c0-4a71-b2b5-13d66a8e3394 -2023-10-27 14:00:40.944  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:00:40.944  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:00:40.951  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_7054a174-a4b3-42e7-9ca1-c4c14d1b0838 -2023-10-27 14:00:40.962  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many movies were directed by Akira Kurosawa ? -2023-10-27 14:00:40.962  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@632c8081 -2023-10-27 14:00:40.962 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:00:40.964  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:00:40.971  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:00:40.971  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many movies were directed by Akira Kurosawa ?","language":"en"} -Curl Response: -[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"}] -2023-10-27 14:00:41.688  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"}] -2023-10-27 14:00:41.688  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"}] -2023-10-27 14:00:41.688  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v9 ?v7 .} ","slots":[{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"directed"},{"s":"v7","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v7","p":"verbalization","o":"Akira Kurosawa"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v9","value":"http:\/\/dbpedia.org\/property\/director(s)"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/direction"},{"score":0.6,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directoy"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directionsB"},{"score":0.7,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directed"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directorr"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/artDirecter"}]}]} -2023-10-27 14:00:45.968  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5217391304347826,"var":"v9","value":"http:\/\/dbpedia.org\/property\/director(s)"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/direction"},{"score":0.6,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directoy"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directionsB"},{"score":0.7,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directed"},{"score":0.5714285714285714,"var":"v9","value":"http:\/\/dbpedia.org\/property\/directorr"},{"score":0.5,"var":"v9","value":"http:\/\/dbpedia.org\/property\/artDirecter"}]}]} -2023-10-27 14:00:45.968  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/director(s), score: 0.5217391304347826 -2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/direction, score: 0.5714285714285714 -2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/directoy, score: 0.6 -2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : var: v9, urls: http://dbpedia.org/property/directed, score: 0.7 -2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/directed -2023-10-27 14:00:45.969  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:45.969  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:00:45.969 DEBUG 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:45.969 DEBUG 9657 --- [nio-8022-exec-7] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:00:45.974  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:00:45.974 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 5031 ms -2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"},"inGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b","outGraph":"urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b"} -2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f49d1d1 -2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b -2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:02:30.541  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:b74d53fb-81b5-4acc-a6d8-ec56b2b7814b -2023-10-27 14:02:30.541  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:02:30.541  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:02:30.548  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_6b9532e8-531d-4486-88e9-279968583cd4 -2023-10-27 14:02:30.560  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Question: Who founded the Worpswede artist colony ? -2023-10-27 14:02:30.560  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1e3f0989 -2023-10-27 14:02:30.561 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:02:30.561  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:02:30.569  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:02:30.569  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Who founded the Worpswede artist colony ?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"}] -2023-10-27 14:02:31.453  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"}] -2023-10-27 14:02:31.453  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"}] -2023-10-27 14:02:31.453  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v5 ?v3 .} ","slots":[{"s":"v3","p":"is","o":"rdf:Class"},{"s":"v3","p":"verbalization","o":"Worpswede artist colony"},{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v5","p":"verbalization","o":"founded"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedesf"},{"score":0.631578947368421,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founders"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founding"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingDate"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderPl"},{"score":0.5555555555555556,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundry"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/founder"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded%60%60%60"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderName"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingYear"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedName"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedTitle"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingPerson"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedArea"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderDates"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundationPlace"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedBy"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundedBy"},{"score":0.6,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedby"},{"score":0.625,"var":"v5","value":"http:\/\/dbpedia.org\/property\/found"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundress"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedPlace"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderTitle"}]}]} -2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedesf"},{"score":0.631578947368421,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founders"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founding"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingDate"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderPl"},{"score":0.5555555555555556,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundry"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/founder"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded%60%60%60"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderName"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingYear"},{"score":0.6666666666666666,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founded"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedName"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedTitle"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundingPerson"},{"score":0.5217391304347826,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedArea"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderDates"},{"score":0.5263157894736842,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundationPlace"},{"score":0.5714285714285714,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedBy"},{"score":0.75,"var":"v5","value":"http:\/\/dbpedia.org\/ontology\/foundedBy"},{"score":0.6,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedby"},{"score":0.625,"var":"v5","value":"http:\/\/dbpedia.org\/property\/found"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundress"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/foundedPlace"},{"score":0.5,"var":"v5","value":"http:\/\/dbpedia.org\/property\/founderTitle"}]}]} -2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/property/foundedesf, score: 0.5714285714285714 -2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/property/founders, score: 0.631578947368421 -2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/ontology/founder, score: 0.6666666666666666 -2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : var: v5, urls: http://dbpedia.org/ontology/foundingPerson, score: 0.75 -2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/foundingPerson -2023-10-27 14:02:35.528  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:02:35.528  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:02:35.528 DEBUG 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:02:35.529 DEBUG 9657 --- [nio-8022-exec-3] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:02:35.536  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:02:35.536 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : processing took: 4995 ms -2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"},"inGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579","outGraph":"urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579"} -2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@769e4d69 -2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 -2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:03:01.806  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:13262209-56f6-4cf5-8bb4-f2d9d43ac579 -2023-10-27 14:03:01.806  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:03:01.806  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:03:01.818  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_a44148f5-b312-49f7-a22d-54a9a9f1e968 -2023-10-27 14:03:01.828  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: who has won more NBA awards, Michael Jordan or Kobe Bean Bryant? -2023-10-27 14:03:01.828  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3e784d7f -2023-10-27 14:03:01.829 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:03:01.830  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:03:01.840  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:03:01.840  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"who has won more NBA awards, Michael Jordan or Kobe Bean Bryant?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"}] -2023-10-27 14:03:02.474  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"}] -2023-10-27 14:03:02.475  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"}] -2023-10-27 14:03:02.475  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v4","p":"is","o":"rdf:Class"},{"s":"v4","p":"verbalization","o":"more NBA awards"},{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"won"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:03:06.965  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:03:06.965 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 5159 ms -2023-10-27 14:03:30.638  INFO 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:30.638  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:30.638  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"},"inGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d","outGraph":"urn:graph:5e9e4088-e440-456c-8d87-417261ce841d"} -2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1029f367 -2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:5e9e4088-e440-456c-8d87-417261ce841d -2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:03:30.639  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:5e9e4088-e440-456c-8d87-417261ce841d -2023-10-27 14:03:30.639  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:03:30.639  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:03:30.645  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_87fadb29-225c-4d54-a45a-40236972ce7e -2023-10-27 14:03:30.655  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Question: Whom did Clara Westhoff marry? -2023-10-27 14:03:30.655  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@552b6f06 -2023-10-27 14:03:30.655 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:03:30.656  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:03:30.662  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:03:30.662  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Whom did Clara Westhoff marry?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"}] -2023-10-27 14:03:31.312  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"}] -2023-10-27 14:03:31.312  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"}] -2023-10-27 14:03:31.312  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v2 ?v6 ?v4 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Property"},{"s":"v6","p":"verbalization","o":"marry"},{"s":"v2","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v2","p":"verbalization","o":"Whom"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"Clara Westhoff"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v6","value":"http:\/\/dbpedia.org\/ontology\/spouse"},{"score":0.5,"var":"v6","value":"http:\/\/dbpedia.org\/property\/mar"}]}]} -2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6153846153846154,"var":"v6","value":"http:\/\/dbpedia.org\/ontology\/spouse"},{"score":0.5,"var":"v6","value":"http:\/\/dbpedia.org\/property\/mar"}]}]} -2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : var: v6, urls: http://dbpedia.org/ontology/spouse, score: 0.6153846153846154 -2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/spouse -2023-10-27 14:03:32.451  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:03:32.451  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:03:32.451 DEBUG 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:03:32.451 DEBUG 9657 --- [nio-8022-exec-8] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:03:32.457  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:03:32.457 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 1819 ms -2023-10-27 14:04:57.507  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"},"inGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2","outGraph":"urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2"} -2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@1ed0e139 -2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 -2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:04:57.508  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:d5b6bca6-7417-420e-ae01-0b8e51573da2 -2023-10-27 14:04:57.508  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:04:57.508  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:04:57.520  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_bccd6d73-2a0f-442d-b9b6-ad14c11f791f -2023-10-27 14:04:57.540  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: What is the capital of the prefecture Tokyo ? -2023-10-27 14:04:57.541  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@3203303 -2023-10-27 14:04:57.541 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:04:57.542  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:04:57.549  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:04:57.549  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What is the capital of the prefecture Tokyo ?","language":"en"} -Curl Response: -[{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"}] -2023-10-27 14:04:58.177  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"}] -2023-10-27 14:04:58.177  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"}] -2023-10-27 14:04:58.177  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"prefecture Tokyo"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"capital"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capital"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalType"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatM"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capitalPlace"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatD"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatS"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalExile"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalCity"}]}]} -2023-10-27 14:05:00.083  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capital"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalType"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatM"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/capitalPlace"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatD"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalLatS"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalExile"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/capitalCity"}]}]} -2023-10-27 14:05:00.084  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/capital, score: 0.6666666666666666 -2023-10-27 14:05:00.084  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/capital -2023-10-27 14:05:00.084  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:05:00.084  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:05:00.084 DEBUG 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:05:00.084 DEBUG 9657 --- [nio-8022-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:05:00.089  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:05:00.089 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 2581 ms -2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"},"inGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53","outGraph":"urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53"} -2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@701027fe -2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 -2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:05:31.149  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:f2cafde0-5da9-4f42-8eab-96663eb58a53 -2023-10-27 14:05:31.149  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:05:31.149  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:05:31.156  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_bb79bd06-9acb-4946-ae91-7fa614276bba -2023-10-27 14:05:31.166  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: in which language does the united stated have the shortest short name? -2023-10-27 14:05:31.167  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1931e520 -2023-10-27 14:05:31.167 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:05:31.168  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:05:31.175  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:05:31.176  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"in which language does the united stated have the shortest short name?","language":"en"} -Curl Response: -[{"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"}] -2023-10-27 14:05:31.866  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"}] -2023-10-27 14:05:31.866  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"}] -2023-10-27 14:05:31.866  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v3 WHERE { ?v3 ?v16 ?v15 . ?v1 ?v17 ?v3 . ?v5 ?v18 ?v13 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"united"},{"s":"v13","p":"is","o":"rdf:Resource|rdf:Literal"},{"s":"v16","p":"is","o":""},{"s":"v17","p":"is","o":"rdf:Property"},{"s":"v15","p":"is","o":"rdf:Class"},{"s":"v15","p":"verbalization","o":"language"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"does"},{"s":"v18","p":"is","o":"rdf:Property"},{"s":"v18","p":"verbalization","o":"short name"}],"score":"0.75"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/Language"}],"literals":[],"properties":[{"score":0.72,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortNames"},{"score":0.5263157894736842,"var":"v18","value":"http:\/\/dbpedia.org\/property\/short"},{"score":0.75,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortName"}]}]} -2023-10-27 14:05:33.924  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7,"var":"v15","value":"http:\/\/dbpedia.org\/ontology\/Language"}],"literals":[],"properties":[{"score":0.72,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortNames"},{"score":0.5263157894736842,"var":"v18","value":"http:\/\/dbpedia.org\/property\/short"},{"score":0.75,"var":"v18","value":"http:\/\/dbpedia.org\/property\/shortName"}]}]} -2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : var: v18, urls: http://dbpedia.org/property/shortNames, score: 0.72 -2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : var: v18, urls: http://dbpedia.org/property/shortName, score: 0.75 -2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/shortName -2023-10-27 14:05:33.925  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:05:33.925  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:05:33.925 DEBUG 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:05:33.925 DEBUG 9657 --- [nio-8022-exec-9] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:05:33.931  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:05:33.931 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 2782 ms -2023-10-27 14:06:02.137  INFO 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:02.137  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"},"inGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0","outGraph":"urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0"} -2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@12033cc3 -2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 -2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:06:02.138  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c39055db-3411-4c58-b014-324f3ddc7ff0 -2023-10-27 14:06:02.138  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:06:02.138  WARN 9657 --- [io-8022-exec-10] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:06:02.144  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_ce36f50d-e6bd-42fa-a26b-060651e080dc -2023-10-27 14:06:02.156  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many poems did Allen Ginsberg published? -2023-10-27 14:06:02.156  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5d0c5130 -2023-10-27 14:06:02.156 DEBUG 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:06:02.158  INFO 9657 --- [io-8022-exec-10] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:06:02.171  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:06:02.171  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many poems did Allen Ginsberg published?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"}] -2023-10-27 14:06:02.835  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"}] -2023-10-27 14:06:02.835  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"}] -2023-10-27 14:06:02.835  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v6","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v6","p":"verbalization","o":"Allen Ginsberg"},{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"How published"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:06:07.205  INFO 9657 --- [io-8022-exec-10] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:06:07.205 DEBUG 9657 --- [io-8022-exec-10] e.w.q.component.QanaryServiceController  : processing took: 5068 ms -2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"},"inGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716","outGraph":"urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716"} -2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@51c6da47 -2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 -2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:06:31.244  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:37c59fa9-ccf9-41c2-bdbe-6612853a9716 -2023-10-27 14:06:31.244  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:06:31.244  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:06:31.249  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_3a36a061-6862-4afb-b84e-e28819bdda58 -2023-10-27 14:06:31.260  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Question: Is Dr. Pepper named after its inventor? -2023-10-27 14:06:31.260  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@463f869a -2023-10-27 14:06:31.260 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:06:31.261  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:06:31.269  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:06:31.269  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Is Dr. Pepper named after its inventor?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"}] -2023-10-27 14:06:31.960  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"}] -2023-10-27 14:06:31.960  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"}] -2023-10-27 14:06:31.960  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v3 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"named"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"inventor"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"Dr. Pepper"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} -2023-10-27 14:06:34.157  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name6b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namefr"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name7a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namedby"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameeng"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namenl"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name."},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameJa"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/name"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name2a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3c"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name1a"},{"score":0.6153846153846154,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/binomialAuthority"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name4a"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name5b"},{"score":0.5333333333333333,"var":"v8","value":"http:\/\/dbpedia.org\/property\/name3a"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameEs"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/namerom"},{"score":0.5714285714285714,"var":"v8","value":"http:\/\/dbpedia.org\/property\/nameb"}]}]} -2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/property/name6a, score: 0.5333333333333333 -2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/property/name., score: 0.5714285714285714 -2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/name, score: 0.6153846153846154 -2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/name -2023-10-27 14:06:34.158  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:06:34.158  WARN 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:06:34.158 DEBUG 9657 --- [nio-8022-exec-4] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:06:34.158 DEBUG 9657 --- [nio-8022-exec-4] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:06:34.167  INFO 9657 --- [nio-8022-exec-4] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:06:34.167 DEBUG 9657 --- [nio-8022-exec-4] e.w.q.component.QanaryServiceController  : processing took: 2923 ms -2023-10-27 14:06:42.999  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"},"inGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f","outGraph":"urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f"} -2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@cdf67b2 -2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f -2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:06:43.000  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:972f3a4a-4f84-4085-845b-b14452f8f01f -2023-10-27 14:06:43.000  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:06:43.000  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:06:43.008  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_82df9498-9450-487e-a27c-42fda301a4a6 -2023-10-27 14:06:43.016  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: Who is the creator of the Dinosaurs tv show ? -2023-10-27 14:06:43.017  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@15e2b1f8 -2023-10-27 14:06:43.017 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:06:43.017  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:06:43.023  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:06:43.023  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Who is the creator of the Dinosaurs tv show ?","language":"en"} -Curl Response: -[{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"}] -2023-10-27 14:06:43.702  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"}] -2023-10-27 14:06:43.703  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"}] -2023-10-27 14:06:43.704  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v1 WHERE { ?v1 ?v8 ?v6 .} ","slots":[{"s":"v8","p":"is","o":"rdf:Property"},{"s":"v8","p":"verbalization","o":"creator"},{"s":"v6","p":"is","o":"rdf:Class"},{"s":"v6","p":"verbalization","o":"tv Dinosaurs show"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} -2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v8","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} -2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/product, score: 0.5882352941176471 -2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/property/creator, score: 0.6666666666666666 -2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v8, urls: http://dbpedia.org/ontology/creator, score: 0.7058823529411765 -2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/creator -2023-10-27 14:06:47.833  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:06:47.833  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:06:47.833 DEBUG 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:06:47.833 DEBUG 9657 --- [nio-8022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:06:47.839  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:06:47.839 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 4839 ms -2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"},"inGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f","outGraph":"urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f"} -2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@339c22f5 -2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f -2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:07:12.809  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:e8036fd9-b30d-474f-aea4-299185d7735f -2023-10-27 14:07:12.809  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:07:12.809  WARN 9657 --- [nio-8022-exec-7] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:07:12.817  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_43fb8d32-7519-4947-8e23-405b58541c5c -2023-10-27 14:07:12.830  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Question: can i play don't starve on play station 4? -2023-10-27 14:07:12.830  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@34b3948f -2023-10-27 14:07:12.830 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:07:12.831  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:07:12.842  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:07:12.842  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"can i play don't starve on play station 4?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"}] -2023-10-27 14:07:13.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"}] -2023-10-27 14:07:13.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"}] -2023-10-27 14:07:13.555  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v4 ?v10 ?v8 . ?v1 ?v11 ?v3 . } ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"i"},{"s":"v10","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"play"},{"s":"v4","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v4","p":"verbalization","o":"starve"},{"s":"v8","p":"is","o":"rdf:Class"},{"s":"v8","p":"verbalization","o":"play station"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/PowerStation"}],"literals":[],"properties":[]}]} -2023-10-27 14:07:14.889  INFO 9657 --- [nio-8022-exec-7] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.6666666666666666,"var":"v8","value":"http:\/\/dbpedia.org\/ontology\/PowerStation"}],"literals":[],"properties":[]}]} -2023-10-27 14:07:14.889 DEBUG 9657 --- [nio-8022-exec-7] e.w.q.component.QanaryServiceController  : processing took: 2080 ms -2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"},"inGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9","outGraph":"urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9"} -2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@41aab0c6 -2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 -2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:07:16.133  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:8679a0fd-2ffc-4b57-ba3b-e0133ecf91a9 -2023-10-27 14:07:16.133  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:07:16.133  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:07:16.138  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_2fa14be7-57ce-48c1-bb8e-170cacd4502f -2023-10-27 14:07:16.146  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:07:16.147  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@61612cb4 -2023-10-27 14:07:16.147 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:07:16.147  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:07:16.153  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:07:16.153  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which started first: impressionism or expressionism (art movements)?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] -2023-10-27 14:07:16.665  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] -2023-10-27 14:07:16.665  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] -2023-10-27 14:07:16.665  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:07:20.007  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:07:20.007 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 3874 ms -2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"},"inGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c","outGraph":"urn:graph:9804c557-d25c-4f21-bbac-274526304a1c"} -2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@19e969e6 -2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:9804c557-d25c-4f21-bbac-274526304a1c -2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:08:06.440  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:9804c557-d25c-4f21-bbac-274526304a1c -2023-10-27 14:08:06.440  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:08:06.440  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:08:06.446  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_e3a81823-519d-4636-b548-20c5e7589787 -2023-10-27 14:08:06.474  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: What caused Kobe Bryant's Death? -2023-10-27 14:08:06.476  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4ee80ca0 -2023-10-27 14:08:06.476 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:08:06.478  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:08:06.487  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:08:06.487  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"What caused Kobe Bryant's Death?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"}] -2023-10-27 14:08:07.113  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"}] -2023-10-27 14:08:07.113  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"}] -2023-10-27 14:08:07.113  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v2 ?v7 ?v5 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Death"},{"s":"v7","p":"is","o":"rdf:Property"},{"s":"v7","p":"verbalization","o":"caused"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeNote"},{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causus"},{"score":0.625,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causee"},{"score":0.5555555555555556,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeIs"}]}]} -2023-10-27 14:08:10.043  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeNote"},{"score":0.5,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causus"},{"score":0.625,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causee"},{"score":0.5555555555555556,"var":"v7","value":"http:\/\/dbpedia.org\/property\/causeIs"}]}]} -2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v7, urls: http://dbpedia.org/property/causeNote, score: 0.5 -2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : var: v7, urls: http://dbpedia.org/property/causee, score: 0.625 -2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/property/causee -2023-10-27 14:08:10.044  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:08:10.044  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:08:10.044 DEBUG 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:08:10.044 DEBUG 9657 --- [nio-8022-exec-2] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:08:10.051  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:08:10.051 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 3611 ms -2023-10-27 14:08:24.499  INFO 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:24.499  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:24.499  INFO 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"},"inGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09","outGraph":"urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09"} -2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@bd6dd58 -2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 -2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:08:24.500  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c78c3946-7254-4070-8c76-cd74989f9f09 -2023-10-27 14:08:24.500  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:08:24.500  WARN 9657 --- [nio-8022-exec-3] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:08:24.511  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_20b032bf-ebbd-4c6a-8d53-8276e5b84d0b -2023-10-27 14:08:24.530  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which started first: impressionism or expressionism (art movements)? -2023-10-27 14:08:24.530  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@5693b92d -2023-10-27 14:08:24.530 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:08:24.532  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:08:24.544  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:08:24.544  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which started first: impressionism or expressionism (art movements)?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] -2023-10-27 14:08:25.201  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] -2023-10-27 14:08:25.201  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"}] -2023-10-27 14:08:25.201  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { } ","slots":[],"score":"0.0"} -2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"},"inGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455","outGraph":"urn:graph:574d4beb-a408-4433-9b71-c6a184d92455"} -2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@52e02041 -2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 -2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:08:26.222  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:574d4beb-a408-4433-9b71-c6a184d92455 -2023-10-27 14:08:26.222  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:08:26.222  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:08:26.227  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_11e60d2f-402c-446e-822f-c087afc858cc -2023-10-27 14:08:26.236  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: How many countries have never been members of the UN? -2023-10-27 14:08:26.236  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@88cc894 -2023-10-27 14:08:26.236 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:08:26.238  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:08:26.244  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:08:26.244  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"How many countries have never been members of the UN?","language":"en"} -Curl Response: -[{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] -2023-10-27 14:08:26.645  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] -2023-10-27 14:08:26.645  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"}] -2023-10-27 14:08:26.645  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT (count(?v4) AS ?v4_count) WHERE { ?v4 ?v11 ?v9 .} ","slots":[{"s":"v11","p":"is","o":"rdf:Property"},{"s":"v11","p":"verbalization","o":"members"},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"UN"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} -2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/class"},{"score":0.5714285714285714,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/membership"},{"score":0.625,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/board"},{"score":0.5217391304347826,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberBadge"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberships"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberNo"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberstate"},{"score":0.5,"var":"v11","value":"http:\/\/dbpedia.org\/property\/membersLabel"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberName"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberOf"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/phylum"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/order"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/kingdom"},{"score":0.631578947368421,"var":"v11","value":"http:\/\/dbpedia.org\/property\/Members"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/family"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/bandMember"},{"score":0.6,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member(s)"},{"score":0.5454545454545454,"var":"v11","value":"http:\/\/dbpedia.org\/property\/memberType"},{"score":0.7058823529411765,"var":"v11","value":"http:\/\/dbpedia.org\/property\/member"},{"score":0.75,"var":"v11","value":"http:\/\/dbpedia.org\/ontology\/genus"}]}]} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : var: v11, urls: http://dbpedia.org/ontology/class, score: 0.75 -2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-3] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/class -2023-10-27 14:08:29.370 DEBUG 9657 --- [nio-8022-exec-3] e.w.q.component.QanaryServiceController  : processing took: 4871 ms -2023-10-27 14:08:29.370  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:08:29.370  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:08:29.370 DEBUG 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:08:29.370 DEBUG 9657 --- [nio-8022-exec-5] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:08:29.377  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:08:29.377 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 3155 ms -2023-10-27 14:09:02.946  INFO 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"},"inGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878","outGraph":"urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878"} -2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@43ac4494 -2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 -2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:09:02.947  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:c68b703d-0468-4e5d-9d25-92c964e13878 -2023-10-27 14:09:02.947  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:09:02.947  WARN 9657 --- [nio-8022-exec-8] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:09:02.953  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_ed428eb9-cd84-44f9-9a76-1f1dbd3fc7be -2023-10-27 14:09:02.963  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Question: In which country is Oberirrach ? -2023-10-27 14:09:02.963  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64b4fe51 -2023-10-27 14:09:02.964 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:09:02.964  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:09:02.971  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:09:02.972  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"In which country is Oberirrach ?","language":"en"} -Curl Response: -[{"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"}] -2023-10-27 14:09:03.578  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"}] -2023-10-27 14:09:03.579  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"}] -2023-10-27 14:09:03.579  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v3 WHERE { ?v3 ?v8 ?v7 . ?v5 ?v9 ?v3 . } ","slots":[{"s":"v8","p":"is","o":""},{"s":"v5","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v5","p":"verbalization","o":"Oberirrach"},{"s":"v9","p":"is","o":"rdf:Property"},{"s":"v9","p":"verbalization","o":"BE"},{"s":"v7","p":"is","o":"rdf:Class"},{"s":"v7","p":"verbalization","o":"country"}],"score":"1.0"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7058823529411765,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Country"}],"literals":[],"properties":[]}]} -2023-10-27 14:09:07.682  INFO 9657 --- [nio-8022-exec-8] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[{"score":0.7058823529411765,"var":"v7","value":"http:\/\/dbpedia.org\/ontology\/Country"}],"literals":[],"properties":[]}]} -2023-10-27 14:09:07.682 DEBUG 9657 --- [nio-8022-exec-8] e.w.q.component.QanaryServiceController  : processing took: 4735 ms -2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"},"inGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162","outGraph":"urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162"} -2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@2fbcfbf1 -2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 -2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:09:43.152  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:817bd630-fe5a-42e8-ab01-8e2a1364d162 -2023-10-27 14:09:43.152  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:09:43.152  WARN 9657 --- [nio-8022-exec-2] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:09:43.159  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_1c07cf40-5dd4-4854-a029-125bde67fabf -2023-10-27 14:09:43.170  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:09:43.170  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@4fad38e9 -2023-10-27 14:09:43.170 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:09:43.171  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:09:43.178  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:09:43.178  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:09:43.979  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:09:43.980  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:09:43.980  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:09:45.961  INFO 9657 --- [nio-8022-exec-2] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:09:45.961 DEBUG 9657 --- [nio-8022-exec-2] e.w.q.component.QanaryServiceController  : processing took: 2809 ms -2023-10-27 14:10:26.028  INFO 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:26.028  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"},"inGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999","outGraph":"urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999"} -2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@7f99ccc0 -2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 -2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:10:26.029  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:e57849b1-ba7b-4112-9d43-625ec4e4e999 -2023-10-27 14:10:26.029  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:10:26.029  WARN 9657 --- [nio-8022-exec-5] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:10:26.044  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_30d0f0e7-f12b-4801-9220-05b4b5778cd9 -2023-10-27 14:10:26.097  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:10:26.097  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@7ff4dfba -2023-10-27 14:10:26.097 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:10:26.099  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:10:26.110  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:10:26.110  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:10:26.728  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:10:26.728  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:10:26.728  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} -2023-10-27 14:10:27.291  INFO 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:27.291  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"},"inGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab","outGraph":"urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab"} -2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@7cae7612 -2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab -2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:10:27.292  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:cfa85e4b-413b-4a6d-9e4e-a5f2a94b8fab -2023-10-27 14:10:27.292  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:10:27.292  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:10:27.296  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_43db0f97-6a1d-4960-b987-2657be5f72bb -2023-10-27 14:10:27.319  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Question: Which creator of The OA also acted in it? -2023-10-27 14:10:27.320  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@1c142c82 -2023-10-27 14:10:27.320 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:10:27.321  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:10:27.328  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:10:27.328  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"Which creator of The OA also acted in it?","language":"en"} -Curl Response: -[{"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"}] -2023-10-27 14:10:27.654  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"}] -2023-10-27 14:10:27.654  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"}] -2023-10-27 14:10:27.654  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"SELECT ?v2 WHERE { ?v1 ?v14 ?v5 . ?v2 ?v12 ?v11 . ?v1 ?v13 ?v9 . } ","slots":[{"s":"v5","p":"is","o":"rdf:Class"},{"s":"v5","p":"verbalization","o":"OA"},{"s":"v14","p":"is","o":"rdf:Property"},{"s":"v14","p":"verbalization","o":"creator"},{"s":"v1","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v1","p":"verbalization","o":"also acted"},{"s":"v13","p":"is","o":"rdf:Property"},{"s":"v11","p":"is","o":"rdf:Class"},{"s":"v11","p":"verbalization","o":"creator"},{"s":"v12","p":"is","o":""},{"s":"v9","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v9","p":"verbalization","o":"it"}],"score":"0.875"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:10:27.845  INFO 9657 --- [nio-8022-exec-5] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:10:27.845 DEBUG 9657 --- [nio-8022-exec-5] e.w.q.component.QanaryServiceController  : processing took: 1817 ms -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} -2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/product"},{"score":0.5555555555555556,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creater"},{"score":0.5,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorcomics"},{"score":0.5882352941176471,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/designer"},{"score":0.5263157894736842,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creation"},{"score":0.5454545454545454,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatorname"},{"score":0.6666666666666666,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creator"},{"score":0.7058823529411765,"var":"v14","value":"http:\/\/dbpedia.org\/ontology\/creator"},{"score":0.5217391304347826,"var":"v14","value":"http:\/\/dbpedia.org\/property\/creatortitle"}]}]} -2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v14, urls: http://dbpedia.org/ontology/product, score: 0.5882352941176471 -2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v14, urls: http://dbpedia.org/property/creator, score: 0.6666666666666666 -2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : var: v14, urls: http://dbpedia.org/ontology/creator, score: 0.7058823529411765 -2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Inside : Literal: http://dbpedia.org/ontology/creator -2023-10-27 14:10:31.710  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Sparql query: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:10:31.710  WARN 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.update(String sparqlQuery) instead. -2023-10-27 14:10:31.710 DEBUG 9657 --- [nio-8022-exec-6] eu.wdaqua.qanary.commons.QanaryUtils  : updateTripleStore on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:10:31.710 DEBUG 9657 --- [nio-8022-exec-6] QanaryTripleStoreConnectorQanaryInternal : UPDATE on http://localhost:8080/sparql: PREFIX qa: PREFIX oa: PREFIX xsd: INSERT { GRAPH { ?a a qa:AnnotationOfRelation . ?a oa:hasTarget [ a oa:SpecificResource; oa:hasSource ; ] . ?a oa:hasBody ; oa:annotatedBy ; oa:annotatedAt ?time }} WHERE { BIND (IRI(str(RAND())) AS ?a) .BIND (now() as ?time) } -2023-10-27 14:10:31.715  INFO 9657 --- [nio-8022-exec-6] e.w.q.c.d.rd.DiambiguationProperty  : Count is: 1 -2023-10-27 14:10:31.715 DEBUG 9657 --- [nio-8022-exec-6] e.w.q.component.QanaryServiceController  : processing took: 4424 ms -2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"},"inGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf","outGraph":"urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf"} -2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@103fd8b1 -2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf -2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:11:05.746  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:1305e59c-f7eb-48d6-84ea-ab140be753cf -2023-10-27 14:11:05.747  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:11:05.747  WARN 9657 --- [nio-8022-exec-9] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:11:05.752  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_3d25c9ef-4b2a-4c85-ab14-b2a7725b1a5e -2023-10-27 14:11:05.762  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:11:05.762  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@6312773 -2023-10-27 14:11:05.762 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:11:05.763  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:11:05.771  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:11:05.771  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:11:06.393  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:11:06.393  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:11:06.393  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:11:10.460  INFO 9657 --- [nio-8022-exec-9] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:11:10.460 DEBUG 9657 --- [nio-8022-exec-9] e.w.q.component.QanaryServiceController  : processing took: 4714 ms -2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : annotatequestion: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : construct QanaryMessage: {"values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"endpoint":"http://localhost:8080/sparql","inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryMessage  : constructed json: {"endpoint":"http://localhost:8080/sparql","values":{"urn:qanary#outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","urn:qanary#endpoint":"http://localhost:8080/sparql","urn:qanary#inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"},"inGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704","outGraph":"urn:graph:7a130498-786b-4597-afe4-76939bf2d704"} -2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : process: eu.wdaqua.qanary.commons.QanaryMessage@844c75a -2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Graph: urn:graph:7a130498-786b-4597-afe4-76939bf2d704 -2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Endpoint: http://localhost:8080/sparql -2023-10-27 14:11:16.619  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : InGraph: urn:graph:7a130498-786b-4597-afe4-76939bf2d704 -2023-10-27 14:11:16.619  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : This method is deprecated and will be removed in future versions. Please use the method QanaryTripleStoreConnector.select(String sparqlQuery) instead. -2023-10-27 14:11:16.619  WARN 9657 --- [nio-8022-exec-1] eu.wdaqua.qanary.commons.QanaryUtils  : The parameter 'endpoint' is not longer used in this method !!! -2023-10-27 14:11:16.625  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Uri of the question: http://localhost:8080/question/stored-question__text_5c5d5b5c-0284-4626-9198-f3ecbc51d205 -2023-10-27 14:11:16.633  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Question: After whom is the Riemannian geometry named? -2023-10-27 14:11:16.634  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : filenameWithRelativePath: /queries/select_all_AnnotationOfQuestionLanguage.rq, org.springframework.boot.loader.jar.ZipInflaterInputStream@64a80e87 -2023-10-27 14:11:16.634 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : readFileFromResourcesWithMap sparqlQueryString: PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT * -FROM ?graph -WHERE { -?annotationId a qa:AnnotationOfQuestionLanguage . -?annotationId oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt . - } -2023-10-27 14:11:16.635  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.t.QanaryTripleStoreConnector  : generated SELECT query: -PREFIX qa: -PREFIX xsd: -PREFIX oa: - -SELECT * -FROM -WHERE - { ?annotationId - a qa:AnnotationOfQuestionLanguage ; - oa:hasTarget ?hasTarget ; - oa:hasBody ?hasBody ; - oa:annotatedBy ?annotatedBy ; - oa:annotatedAt ?annotatedAt - } - -2023-10-27 14:11:16.642  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Language of the Question: en -2023-10-27 14:11:16.642  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 21; data: { "string":"After whom is the Riemannian geometry named?","language":"en"} -Curl Response: -[{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:11:17.255  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Response [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:11:17.255  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: [{"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"}] -2023-10-27 14:11:17.255  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : Component: 7; data: {"query":"ASK WHERE { ?v1 ?v5 ?v3 .} ","slots":[{"s":"v5","p":"is","o":"rdf:Property"},{"s":"v1","p":"is","o":"rdf:Class"},{"s":"v1","p":"verbalization","o":"Riemannian geometry"},{"s":"v3","p":"is","o":"rdf:Class|rdf:Resource"},{"s":"v3","p":"verbalization","o":"whom"}],"score":"0.6666666666666666"} -the curl Get output : {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:11:19.027  INFO 9657 --- [nio-8022-exec-1] e.w.q.c.d.rd.DiambiguationProperty  : The output template is: {"ned":[{"score":1,"entities":[],"classes":[],"literals":[],"properties":[]}]} -2023-10-27 14:11:19.027 DEBUG 9657 --- [nio-8022-exec-1] e.w.q.component.QanaryServiceController  : processing took: 2408 ms diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml b/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml index 48dad4aff..241fbc111 100644 --- a/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml +++ b/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml @@ -27,11 +27,6 @@ qa.component ${qanary.version} - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - org.springframework.boot spring-boot-starter-web diff --git a/qanary-component-REL-Python-Falcon/component/rel_falcon.py b/qanary-component-REL-Python-Falcon/component/rel_falcon.py index 7048b295d..7431716b5 100644 --- a/qanary-component-REL-Python-Falcon/component/rel_falcon.py +++ b/qanary-component-REL-Python-Falcon/component/rel_falcon.py @@ -70,7 +70,7 @@ async def qanary_service(request: Request): """.format( uuid=triplestore_ingraph_uuid, question_uri=question_uri, - component="qanary:" + SERVICE_NAME_COMPONENT.replace(" ", "-"), + component="urn:qanary:" + SERVICE_NAME_COMPONENT.replace(" ", "-"), relation=relation["URI"]) insert_into_triplestore(triplestore_endpoint_url, From 8973f2151efb8b416792443229b1a6c413d68762 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 28 Nov 2023 14:19:35 +0100 Subject: [PATCH 42/55] Refactored select queries by using the queries from qanary commons --- .../wdaqua/qanary/component/sina/qb/SINA.java | 14 +++++++------- .../src/main/resources/queries/get_classes.rq | 16 ---------------- .../main/resources/queries/get_entities.rq | 19 ------------------- .../main/resources/queries/get_relations.rq | 16 ---------------- 4 files changed, 7 insertions(+), 58 deletions(-) delete mode 100644 qanary-component-QB-Sina/src/main/resources/queries/get_classes.rq delete mode 100644 qanary-component-QB-Sina/src/main/resources/queries/get_entities.rq delete mode 100644 qanary-component-QB-Sina/src/main/resources/queries/get_relations.rq diff --git a/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java b/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java index 4c003a61e..1ba5c2c8d 100644 --- a/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java +++ b/qanary-component-QB-Sina/src/main/java/eu/wdaqua/qanary/component/sina/qb/SINA.java @@ -45,8 +45,8 @@ public class SINA extends QanaryComponent { private String applicationName; private String FILENAME_GET_ENTITIES = "/queries/select_all_AnnotationOfInstance.rq"; - private String FILENAME_GET_RELATIONS = "/queries/get_relations.rq"; - private String FILENAME_GET_CLASSES = "/queries/get_classes.rq"; + private String FILENAME_GET_RELATIONS = "/queries/select_all_AnnotationOfRelation.rq"; + private String FILENAME_GET_CLASSES = "/queries/select_all_AnnotationOfClass.rq"; private String FILENAME_INSERT_ANNOTATION = "/queries/insert_one_annotation.rq"; public SINA(@Value("${sina.jarfilelocation}") String sinaJarFileLocation) throws IOException, InterruptedException { @@ -132,7 +132,7 @@ private StringBuilder fetchEntities(final QanaryQuestion qanaryQuestion, private StringBuilder fetchRelations(final QanaryQuestion qanaryQuestion, final QanaryUtils qanaryUtils) throws SparqlQueryFailed, QanaryExceptionNoOrMultipleQuestions, URISyntaxException, IOException { QuerySolutionMap bindingsForGetRelations = new QuerySolutionMap(); bindingsForGetRelations.add("graph", ResourceFactory.createResource(qanaryQuestion.getInGraph().toASCIIString())); - bindingsForGetRelations.add("targetQuestion", ResourceFactory.createResource(qanaryQuestion.getUri().toASCIIString())); + bindingsForGetRelations.add("hasSource", ResourceFactory.createResource(qanaryQuestion.getUri().toASCIIString())); String sparqlGetRelations = this.loadQueryFromFile(FILENAME_GET_RELATIONS, bindingsForGetRelations); logger.info("fetchRelations for given question with query {}", sparqlGetRelations); @@ -142,7 +142,7 @@ private StringBuilder fetchRelations(final QanaryQuestion qanaryQuestion while (relationResultSet.hasNext()) { QuerySolution s = relationResultSet.next(); - final Entity entity = new Entity(s.getResource("relationurl").getURI()); + final Entity entity = new Entity(s.getResource("hasBody").getURI()); // entityTemp2.begin = s.getLiteral("start").getInt(); // entityTemp2.end = s.getLiteral("end").getInt(); @@ -156,7 +156,7 @@ private StringBuilder fetchRelations(final QanaryQuestion qanaryQuestion private StringBuilder fetchClasses(final QanaryQuestion qanaryQuestion, final QanaryUtils qanaryUtils) throws SparqlQueryFailed, QanaryExceptionNoOrMultipleQuestions, URISyntaxException, IOException { QuerySolutionMap bindingsForGetClasses = new QuerySolutionMap(); bindingsForGetClasses.add("graph", ResourceFactory.createResource(qanaryQuestion.getInGraph().toASCIIString())); - bindingsForGetClasses.add("targetQuestion", ResourceFactory.createResource(qanaryQuestion.getUri().toASCIIString())); + bindingsForGetClasses.add("hasSource", ResourceFactory.createResource(qanaryQuestion.getUri().toASCIIString())); String sparqlGetClasses = this.loadQueryFromFile(FILENAME_GET_CLASSES, bindingsForGetClasses); logger.info("fetchClasses for given question with query {}", sparqlGetClasses); @@ -164,9 +164,9 @@ private StringBuilder fetchClasses(final QanaryQuestion qanaryQuestion, final StringBuilder argument = new StringBuilder(); while (classResultSet.hasNext()) { QuerySolution s = classResultSet.next(); - Entity entityTemp3 = new Entity(s.getResource("uri").getURI()); + Entity entityTemp3 = new Entity(s.getResource("hasBody").getURI()); argument.append(entityTemp3.uri + ", "); - logger.info("uri info {}", s.getResource("uri").getURI()); + logger.info("uri info {}", s.getResource("hasBody").getURI()); } return argument; } diff --git a/qanary-component-QB-Sina/src/main/resources/queries/get_classes.rq b/qanary-component-QB-Sina/src/main/resources/queries/get_classes.rq deleted file mode 100644 index adcf854d9..000000000 --- a/qanary-component-QB-Sina/src/main/resources/queries/get_classes.rq +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfClass . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?uri ; - oa:annotatedAt ?time -} -ORDER BY ?start \ No newline at end of file diff --git a/qanary-component-QB-Sina/src/main/resources/queries/get_entities.rq b/qanary-component-QB-Sina/src/main/resources/queries/get_entities.rq deleted file mode 100644 index a0b073e00..000000000 --- a/qanary-component-QB-Sina/src/main/resources/queries/get_entities.rq +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?start ?end ?uri -FROM ?graph -WHERE { - ?a a qa:AnnotationOfInstance . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?q; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?a oa:hasBody ?uri ; -} \ No newline at end of file diff --git a/qanary-component-QB-Sina/src/main/resources/queries/get_relations.rq b/qanary-component-QB-Sina/src/main/resources/queries/get_relations.rq deleted file mode 100644 index 996a1f49e..000000000 --- a/qanary-component-QB-Sina/src/main/resources/queries/get_relations.rq +++ /dev/null @@ -1,16 +0,0 @@ -PREFIX qa: -PREFIX oa: -PREFIX xsd: - -SELECT ?relationurl -FROM ?graph -WHERE { - ?a a qa:AnnotationOfRelation . - ?a oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - ] ; - oa:hasBody ?relationurl ; - oa:annotatedAt ?time -} -ORDER BY ?start \ No newline at end of file From e4f057fe0b0ca54d4ae6786024fff762ab2e83cd Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 28 Nov 2023 14:36:32 +0100 Subject: [PATCH 43/55] Refactored Select queries to use the queries from qanary-commons --- .../KG2KGTranslateAnnotationsOfInstance.java | 8 ++++---- .../annotationsOfInstanceResourceQuery.rq | 19 ------------------- 2 files changed, 4 insertions(+), 23 deletions(-) delete mode 100644 qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/resources/queries/annotationsOfInstanceResourceQuery.rq diff --git a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/java/eu/wdaqua/qanary/component/KG2KGTranslateAnnotationsOfInstance.java b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/java/eu/wdaqua/qanary/component/KG2KGTranslateAnnotationsOfInstance.java index 2062aee63..d832f0c8c 100644 --- a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/java/eu/wdaqua/qanary/component/KG2KGTranslateAnnotationsOfInstance.java +++ b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/java/eu/wdaqua/qanary/component/KG2KGTranslateAnnotationsOfInstance.java @@ -33,7 +33,7 @@ public class KG2KGTranslateAnnotationsOfInstance extends QanaryComponent { - depending on what is given the other resource is returned */ - private static final String ANNOTATION_OF_INSTANCE_RESOURCES_QUERY = "/queries/annotationsOfInstanceResourceQuery.rq"; + private static final String ANNOTATION_OF_INSTANCE_RESOURCES_QUERY = "/queries/select_all_AnnotationOfInstance.rq"; private static final String DBPEDIA_TO_WIKIDATA_QUERY = "/queries/dbpediaToWikidata.rq"; private static final String WIKIDATA_TO_DBPEDIA_QUERY = "/queries/wikidataToDbpedia.rq"; private static final String INSERT_ANNOTATION_QUERY = "/queries/insert_one_annotation.rq"; @@ -97,7 +97,7 @@ public ResultSet fetchAnnotations(String graphID, final QanaryUtils qanaryUtils) */ public String getRequestQuery(String graphID) throws IOException { QuerySolutionMap bindingsForQuery = new QuerySolutionMap(); - bindingsForQuery.add("graphID", ResourceFactory.createResource(graphID)); + bindingsForQuery.add("graph", ResourceFactory.createResource(graphID)); return QanaryTripleStoreConnector.readFileFromResourcesWithMap(ANNOTATION_OF_INSTANCE_RESOURCES_QUERY, bindingsForQuery); } @@ -107,9 +107,9 @@ public List createAnnotationObjets(ResultSet resultSet while (resultSet.hasNext()) { QuerySolution entry = resultSet.next(); - String entryResource = entry.get("resource").toString(); + String entryResource = entry.get("hasBody").toString(); double score = entry.get("score").asLiteral().getDouble(); - String targetQuestion = entry.get("targetQuestion").toString(); + String targetQuestion = entry.get("hasSource").toString(); int start = entry.get("start").asLiteral().getInt(); int end = entry.get("end").asLiteral().getInt(); String annotationId = entry.get("annotationId").toString(); diff --git a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/resources/queries/annotationsOfInstanceResourceQuery.rq b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/resources/queries/annotationsOfInstanceResourceQuery.rq deleted file mode 100644 index 4c37bfd32..000000000 --- a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/src/main/resources/queries/annotationsOfInstanceResourceQuery.rq +++ /dev/null @@ -1,19 +0,0 @@ -PREFIX qa: -PREFIX oa: - -SELECT * -FROM ?graphID -WHERE { - ?annotationId a qa:AnnotationOfInstance . - ?annotationId oa:hasTarget [ - a oa:SpecificResource; - oa:hasSource ?targetQuestion; - oa:hasSelector [ - a oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - ] - ] . - ?annotationId oa:hasBody ?resource ; - qa:score ?score . -} From 447ddbea829b5cfa253932623632d56725a020f0 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 28 Nov 2023 14:40:32 +0100 Subject: [PATCH 44/55] Removed dependency --- .../pom.xml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml index c45f55888..019dfba29 100644 --- a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml +++ b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml @@ -29,11 +29,6 @@ qa.component ${qanary.component.version} - - de.codecentric - spring-boot-admin-starter-client - 2.4.1 - eu.wdaqua.qanary qa.commons From f81fefb43537546411380f7faa991b422526b51b Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 28 Nov 2023 14:56:55 +0100 Subject: [PATCH 45/55] Adjustments --- .../resources/config/application.properties | 2 +- qanary-component-QB-QAnswer/pom.xml | 47 +++++++------------ 2 files changed, 18 insertions(+), 31 deletions(-) diff --git a/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties b/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties index eff27953c..43a433d26 100644 --- a/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties +++ b/qanary-component-QB-PlatypusWrapper/src/main/resources/config/application.properties @@ -1,5 +1,5 @@ # Update the port number -server.port=5982 +server.port=5555 spring.application.name=PlatypusQueryBuilder spring.application.description=${spring.application.name} is a Qanary component # Update the URL of the Qanary pipeline diff --git a/qanary-component-QB-QAnswer/pom.xml b/qanary-component-QB-QAnswer/pom.xml index c524a6294..987d62448 100644 --- a/qanary-component-QB-QAnswer/pom.xml +++ b/qanary-component-QB-QAnswer/pom.xml @@ -9,7 +9,7 @@ org.springframework.boot spring-boot-starter-parent - 2.7.0 + 2.6.7 @@ -27,23 +27,6 @@ eu.wdaqua.qanary qa.component ${qanary.version} - - - org.apache.logging.log4j - log4j-to-slf4j - - - - - org.apache.logging.log4j - log4j-to-slf4j - [2.15.0,3.) - - - org.apache.logging.log4j - log4j-api - - org.springframework.boot @@ -81,24 +64,28 @@ spring-boot-starter-test test - - - com.google.code.gson - gson - - org.springdoc - springdoc-openapi-data-rest + springdoc-openapi-ui ${springdoc.version} - - org.springdoc - springdoc-openapi-ui - ${springdoc.version} + com.jayway.jsonpath + json-path + test + + + com.jayway.jsonpath + json-path-assert + test + + + + com.google.code.gson + gson - + + org.springframework.boot From cf276982fc11e228d54f3b6e82aae78752680b4e Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 28 Nov 2023 18:45:14 +0100 Subject: [PATCH 46/55] Adjusted component to use query from qanary commons --- qanary-component-QB-QAnswer/pom.xml | 6 ++++++ ...swerQueryBuilderAndSparqlResultFetcher.java | 12 ++++++------ .../queries/get_annotated_entities.rq | 18 ------------------ 3 files changed, 12 insertions(+), 24 deletions(-) delete mode 100644 qanary-component-QB-QAnswer/src/main/resources/queries/get_annotated_entities.rq diff --git a/qanary-component-QB-QAnswer/pom.xml b/qanary-component-QB-QAnswer/pom.xml index 987d62448..84a07f34f 100644 --- a/qanary-component-QB-QAnswer/pom.xml +++ b/qanary-component-QB-QAnswer/pom.xml @@ -20,6 +20,7 @@ qanary-component-qb-qanswer 1.4.13 1.7.0 + [3.8.0,4.0.0) @@ -28,6 +29,11 @@ qa.component ${qanary.version} + + eu.wdaqua.qanary + qa.commons + ${qanary.commons.version} + org.springframework.boot spring-boot-starter-web diff --git a/qanary-component-QB-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qb/QAnswerQueryBuilderAndSparqlResultFetcher.java b/qanary-component-QB-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qb/QAnswerQueryBuilderAndSparqlResultFetcher.java index 9bac1f425..585ecd8f8 100644 --- a/qanary-component-QB-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qb/QAnswerQueryBuilderAndSparqlResultFetcher.java +++ b/qanary-component-QB-QAnswer/src/main/java/eu/wdaqua/qanary/component/qanswer/qb/QAnswerQueryBuilderAndSparqlResultFetcher.java @@ -56,7 +56,7 @@ public class QAnswerQueryBuilderAndSparqlResultFetcher extends QanaryComponent { private String langDefault; private String knowledgeBaseDefault; private String userDefault; - private final String FILENAME_GET_ANNOTATED_ENTITIES = "/queries/get_annotated_entities.rq"; + private final String FILENAME_GET_ANNOTATED_ENTITIES = "/queries/select_all_annotationsWithSelectorAndPosition.rq"; public QAnswerQueryBuilderAndSparqlResultFetcher( // float threshold, // @@ -205,8 +205,8 @@ protected List getNamedEntitiesOfQuestion(QanaryQuestion my LinkedList namedEntities = new LinkedList<>(); QuerySolutionMap bindingsForSelectAnnotations = new QuerySolutionMap(); - bindingsForSelectAnnotations.add("GRAPH", ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); - bindingsForSelectAnnotations.add("QUESTION_URI", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); + bindingsForSelectAnnotations.add("graph", ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); + bindingsForSelectAnnotations.add("hasSource", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); // get the template of the SELECT query String sparqlGetAnnotations = this.loadQueryFromFile(FILENAME_GET_ANNOTATED_ENTITIES, bindingsForSelectAnnotations); @@ -226,10 +226,10 @@ protected List getNamedEntitiesOfQuestion(QanaryQuestion my end = tupel.get("end").asLiteral().getInt(); score = null; - if (tupel.contains("annotationScore")) { - score = tupel.get("annotationScore").asLiteral().getFloat(); + if (tupel.contains("score")) { + score = tupel.get("score").asLiteral().getFloat(); } - URI entityResource = new URI(tupel.get("entityResource").asResource().getURI()); + URI entityResource = new URI(tupel.get("hasBody").asResource().getURI()); if (score == null || score >= threshold) { namedEntities.add(new NamedEntity(entityResource, start, end, score)); diff --git a/qanary-component-QB-QAnswer/src/main/resources/queries/get_annotated_entities.rq b/qanary-component-QB-QAnswer/src/main/resources/queries/get_annotated_entities.rq deleted file mode 100644 index b00a27a95..000000000 --- a/qanary-component-QB-QAnswer/src/main/resources/queries/get_annotated_entities.rq +++ /dev/null @@ -1,18 +0,0 @@ -PREFIX dbr: -PREFIX oa: -PREFIX qa: -PREFIX rdf: -SELECT ?entityResource ?annotationScore ?start ?end -FROM ?GRAPH -WHERE { - ?annotation oa:hasBody ?entityResource . - ?annotation oa:hasTarget ?target . - ?target oa:hasSource ?QUESTION_URI . - ?target oa:hasSelector ?textSelector . - ?textSelector rdf:type oa:TextPositionSelector . - ?textSelector oa:start ?start . - ?textSelector oa:end ?end . - OPTIONAL { - ?annotation qa:score ?annotationScore . # we cannot be sure that a score is provided - } -} \ No newline at end of file From e7f39a95e5362984803ef3fa8624a7e7d3efff01 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 28 Nov 2023 21:27:51 +0100 Subject: [PATCH 47/55] Incremented versions for adjusted components --- qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml | 2 +- qanary-component-NED-AGDISTIS/pom.xml | 3 +-- qanary-component-NED-DiambiguationClass-OKBQA/pom.xml | 2 +- qanary-component-NED-Tagme/pom.xml | 2 +- qanary-component-QB-BirthDataWikidata/pom.xml | 2 +- .../pom.xml | 2 +- qanary-component-QB-DateOfDeathDBpedia/pom.xml | 2 +- qanary-component-QB-QAnswer/pom.xml | 3 +-- qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml | 2 +- qanary-component-QB-Sina/pom.xml | 2 +- qanary-component-QBE-QAnswer/pom.xml | 3 +-- qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml | 3 +-- qanary-component-QE-Wikidata/pom.xml | 2 +- qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml | 3 +-- 14 files changed, 14 insertions(+), 19 deletions(-) diff --git a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml index 019dfba29..71128bb4d 100644 --- a/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml +++ b/qanary-component-KG2KG-TranslateAnnotationsOfInstance/pom.xml @@ -6,7 +6,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-KG2KG-TranslateAnnotationsOfInstance - 0.1.0 + 0.2.0 Qanary component KG2KG Translation of AnnotationOfInstance org.springframework.boot diff --git a/qanary-component-NED-AGDISTIS/pom.xml b/qanary-component-NED-AGDISTIS/pom.xml index f5bffbb80..f69aaf553 100644 --- a/qanary-component-NED-AGDISTIS/pom.xml +++ b/qanary-component-NED-AGDISTIS/pom.xml @@ -4,8 +4,7 @@ 4.0.0 qanary-component-NED-AGDISTIS eu.wdaqua.qanary.component - 4.4.0 - + 4.5.0 org.springframework.boot spring-boot-starter-parent diff --git a/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml b/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml index 2b3c9b235..d41c4142e 100644 --- a/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml +++ b/qanary-component-NED-DiambiguationClass-OKBQA/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-NED-DiambiguationClass-OKBQA - 3.1.4 + 3.2.0 org.springframework.boot diff --git a/qanary-component-NED-Tagme/pom.xml b/qanary-component-NED-Tagme/pom.xml index e463fc63b..456723192 100644 --- a/qanary-component-NED-Tagme/pom.xml +++ b/qanary-component-NED-Tagme/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-NED-Tagme - 3.2.0 + 3.3.0 org.springframework.boot spring-boot-starter-parent diff --git a/qanary-component-QB-BirthDataWikidata/pom.xml b/qanary-component-QB-BirthDataWikidata/pom.xml index a6bba5e3c..0a6a3ccb1 100644 --- a/qanary-component-QB-BirthDataWikidata/pom.xml +++ b/qanary-component-QB-BirthDataWikidata/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-BirthDataWikidata - 3.3.2 + 3.4.0 org.springframework.boot diff --git a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/pom.xml b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/pom.xml index 3633d4b82..80dbd3f19 100644 --- a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/pom.xml +++ b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia - 3.2.2 + 3.3.0 org.springframework.boot diff --git a/qanary-component-QB-DateOfDeathDBpedia/pom.xml b/qanary-component-QB-DateOfDeathDBpedia/pom.xml index 93892d438..7b7dd5995 100644 --- a/qanary-component-QB-DateOfDeathDBpedia/pom.xml +++ b/qanary-component-QB-DateOfDeathDBpedia/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-DateOfDeathDBpedia - 0.1.1 + 0.2.0 org.springframework.boot spring-boot-starter-parent diff --git a/qanary-component-QB-QAnswer/pom.xml b/qanary-component-QB-QAnswer/pom.xml index 84a07f34f..924e4e50a 100644 --- a/qanary-component-QB-QAnswer/pom.xml +++ b/qanary-component-QB-QAnswer/pom.xml @@ -4,8 +4,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-QAnswer - 4.0.0 - + 4.1.0 org.springframework.boot spring-boot-starter-parent diff --git a/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml b/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml index 5db5d4b26..c8e20af67 100644 --- a/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml +++ b/qanary-component-QB-SimpleRealNameOfSuperHero/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-SimpleRealNameOfSuperHero - 3.1.6 + 3.2.0 org.springframework.boot diff --git a/qanary-component-QB-Sina/pom.xml b/qanary-component-QB-Sina/pom.xml index a734df7c3..9696514cf 100644 --- a/qanary-component-QB-Sina/pom.xml +++ b/qanary-component-QB-Sina/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-Sina - 3.2.4 + 3.3.0 org.springframework.boot diff --git a/qanary-component-QBE-QAnswer/pom.xml b/qanary-component-QBE-QAnswer/pom.xml index 49ca09431..d082a5368 100644 --- a/qanary-component-QBE-QAnswer/pom.xml +++ b/qanary-component-QBE-QAnswer/pom.xml @@ -5,8 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QBE-QAnswer - 3.3.0 - + 3.4.0 org.springframework.boot spring-boot-starter-parent diff --git a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml index adad8181c..40561d4ac 100644 --- a/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml +++ b/qanary-component-QBE-SimpleQueryBuilderAndExecutor/pom.xml @@ -5,8 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QBE-SimpleQueryBuilderAndExecutor - 3.2.2 - + 3.3.0 org.springframework.boot spring-boot-starter-parent diff --git a/qanary-component-QE-Wikidata/pom.xml b/qanary-component-QE-Wikidata/pom.xml index 2ebf571c0..2bc525953 100644 --- a/qanary-component-QE-Wikidata/pom.xml +++ b/qanary-component-QE-Wikidata/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QE-Wikidata - 3.1.5 + 3.2.0 org.springframework.boot diff --git a/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml b/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml index 241fbc111..048c096bb 100644 --- a/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml +++ b/qanary-component-RD-DiambiguationProperty-OKBQA/pom.xml @@ -5,8 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-RD-DiambiguationProperty-OKBQA - 3.1.2 - + 3.2.0 org.springframework.boot spring-boot-starter-parent From 965ae9b868ac63f6adbc7afcbb8e323712dbb99f Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Sun, 17 Dec 2023 17:35:50 +0100 Subject: [PATCH 48/55] Refactored tests --- .../birthdatawikidata/qb/QueryTest.java | 12 ++++---- .../qb/TestConfiguration.java | 22 +++++++++++--- .../queries/getAnnotationFilteredTest.rq | 30 +++++++++++-------- .../resources/queries/getAnnotationTest.rq | 30 +++++++++++-------- 4 files changed, 59 insertions(+), 35 deletions(-) diff --git a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java index 052947dcf..640bf943e 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java +++ b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java @@ -14,6 +14,8 @@ import org.springframework.test.context.web.WebAppConfiguration; import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; import static org.junit.jupiter.api.Assertions.*; @@ -27,7 +29,7 @@ class QueryTest { void filenameAnnotationsQueryTest() throws IOException { QuerySolutionMap bindingsForFirstname = new QuerySolutionMap(); bindingsForFirstname.add("graph", ResourceFactory.createResource("urn:graph")); - bindingsForFirstname.add("value", ResourceFactory.createStringLiteral("FIRST_NAME")); + bindingsForFirstname.add("hasBody", ResourceFactory.createStringLiteral("FIRST_NAME")); String sparqlCheckFirstname = QanaryTripleStoreConnector.readFileFromResourcesWithMap( TestConfiguration.FILENAME_ANNOTATIONS, bindingsForFirstname @@ -37,7 +39,7 @@ void filenameAnnotationsQueryTest() throws IOException { assertFalse(sparqlCheckFirstname.isEmpty()); assertFalse(sparqlCheckFirstname.isBlank()); - assertEquals(TestConfiguration.getTestQuery("queries/select_all_AnnotationOfInstance.rq"), sparqlCheckFirstname); + assertEquals(TestConfiguration.getTestQuery("queries/getAnnotationTest.rq").concat("\n"),sparqlCheckFirstname); } @Test @@ -56,7 +58,7 @@ void filenameAnnotationsFilteredQueryTest() throws IOException { assertFalse(sparqlGetAnnotation.isEmpty()); assertFalse(sparqlGetAnnotation.isBlank()); - assertEquals(TestConfiguration.getTestQuery("queries/getAnnotationFilteredTest.rq"), sparqlGetAnnotation); + assertEquals(TestConfiguration.getTestQuery("queries/getAnnotationFilteredTest.rq").concat("\n"), sparqlGetAnnotation); } @Test @@ -73,7 +75,7 @@ void questionAnswerFromWikidataByPersonTest() throws IOException { assertFalse(sparql.isEmpty()); assertFalse(sparql.isBlank()); - assertEquals(TestConfiguration.getTestQuery("queries/getQuestionAnswerFromWikidataByPersonTest.rq"), sparql); + assertEquals(TestConfiguration.getTestQuery("queries/getQuestionAnswerFromWikidataByPersonTest.rq").concat("\n"), sparql); } @Test @@ -90,7 +92,7 @@ void wikidataQueryFirstAndLastNameTest() throws IOException { assertFalse(sparql.isEmpty()); assertFalse(sparql.isBlank()); - assertEquals(TestConfiguration.getTestQuery("queries/getQuestionAnswerFromWikidataByFirstnameLastnameTest.rq"), sparql); + assertEquals(TestConfiguration.getTestQuery("queries/getQuestionAnswerFromWikidataByFirstnameLastnameTest.rq").concat("\n"), sparql); } } \ No newline at end of file diff --git a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java index c91ee80ed..9639254e1 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java +++ b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java @@ -1,8 +1,14 @@ package eu.wdaqua.component.birthdatawikidata.qb; -import java.io.IOException; +import org.springframework.core.io.ClassPathResource; +import org.springframework.util.ResourceUtils; + +import java.io.*; import java.nio.file.Files; +import java.nio.file.Path; import java.nio.file.Paths; +import java.util.Scanner; +import java.util.stream.Collectors; @org.springframework.boot.test.context.TestConfiguration public class TestConfiguration { @@ -17,9 +23,17 @@ public class TestConfiguration { * @throws IOException */ protected static String getTestQuery(String testQueryFilename) throws IOException { - String path = TestConfiguration.class.getClassLoader().getResource(testQueryFilename).getPath(); +// String path = TestConfiguration.class.getClassLoader().getResource(testQueryFilename).getPath(); +// File file = ResourceUtils.getFile(ResourceUtils.CLASSPATH_URL_PREFIX + testQueryFilename); +// return new String(Files.readAllBytes(file.toPath())); - return new String(Files.readAllBytes(Paths.get(path))); + try (InputStream inputStream = TestConfiguration.class.getClassLoader().getResourceAsStream(testQueryFilename)) { + if (inputStream != null) { + BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream)); + return reader.lines().collect(Collectors.joining("\n")); + } else { + throw new IOException("Resource not found: " + testQueryFilename); + } + } } - } \ No newline at end of file diff --git a/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq b/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq index c6c3f0407..e60da5915 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq +++ b/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq @@ -1,21 +1,25 @@ PREFIX qa: PREFIX oa: -PREFIX dbr: PREFIX rdf: SELECT * +FROM WHERE - { GRAPH - { ?annotation oa:hasBody ?wikidataResource ; - qa:score ?annotationScore ; - oa:hasTarget ?target . - ?target oa:hasSource ; - oa:hasSelector ?textSelector . - ?textSelector - rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end - FILTER ( ?start = "5"^^ ) + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start "5"^^ ; + oa:end ?end . + ?annotationId + oa:hasBody ?hasBody ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score } } -ORDER BY DESC(?annotationScore) diff --git a/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationTest.rq b/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationTest.rq index 2970a62d5..4356e0cea 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationTest.rq +++ b/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationTest.rq @@ -1,21 +1,25 @@ PREFIX qa: PREFIX oa: -PREFIX dbr: PREFIX rdf: SELECT * +FROM WHERE - { GRAPH - { ?annotation oa:hasBody ?wikidataResource ; - qa:score ?annotationScore ; - oa:hasTarget ?target - FILTER ( ?wikidataResource = "FIRST_NAME" ) - ?target oa:hasSource ?source ; - oa:hasSelector ?textSelector . - ?textSelector - rdf:type oa:TextPositionSelector ; - oa:start ?start ; - oa:end ?end + { ?annotationId + rdf:type qa:AnnotationOfInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:hasBody "FIRST_NAME" ; + oa:annotatedBy ?annotatedBy ; + oa:annotatedAt ?annotatedAt + OPTIONAL + { ?annotationId + qa:score ?score } } -ORDER BY DESC(?annotationScore) From 36a812fecc96671f2ac81356b3cbcd6f012c3911 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Sun, 17 Dec 2023 22:30:52 +0100 Subject: [PATCH 49/55] Refactored test --- .../java/eu/wdaqua/component/wikidata/qe/QueryExecuterTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qanary-component-QE-Wikidata/src/test/java/eu/wdaqua/component/wikidata/qe/QueryExecuterTest.java b/qanary-component-QE-Wikidata/src/test/java/eu/wdaqua/component/wikidata/qe/QueryExecuterTest.java index 52450f736..114834f9c 100644 --- a/qanary-component-QE-Wikidata/src/test/java/eu/wdaqua/component/wikidata/qe/QueryExecuterTest.java +++ b/qanary-component-QE-Wikidata/src/test/java/eu/wdaqua/component/wikidata/qe/QueryExecuterTest.java @@ -81,7 +81,7 @@ void testTheNumberOfAnnotationOfAnswerJsonGeneratedByQueryExecutor() count = results.getRowNumber(); logger.debug("{}. solution: {}", results.getRowNumber(), solution.toString()); // check if target of the annotation is the assumed question URI - assertEquals(question.toASCIIString(), solution.get("question").asResource().toString()); + assertEquals(question.toASCIIString(), solution.get("hasTarget").asResource().toString()); } // check if the number of generated annotation is 1 assertEquals(1, count, "There should be just 1 result after executing the component."); From 98e36a6316b465a9a1eb2a35ad0e98db69038ed8 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Wed, 20 Dec 2023 23:43:34 +0100 Subject: [PATCH 50/55] Fixed test --- .../qb/QueryTest.java | 2 +- .../queries/select_annotation_test.rq | 27 ++++++++++--------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/QueryTest.java b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/QueryTest.java index c627ccbe1..a0afda90d 100644 --- a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/QueryTest.java +++ b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/java/eu/wdaqua/qanary/component/comiccharacteralteregoaimpledbpedia/qb/QueryTest.java @@ -36,7 +36,7 @@ void selectAnnotationQueryTest() throws IOException { assertFalse(sparql.isEmpty()); assertFalse(sparql.isBlank()); - assertEquals(TestConfiguration.getTestQuery("queries/select_annotation_test.rq"), sparql); + assertEquals(TestConfiguration.getTestQuery("queries/select_annotation_test.rq").concat("\n"), sparql); } @Test diff --git a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/resources/queries/select_annotation_test.rq b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/resources/queries/select_annotation_test.rq index e49a698a0..f5d090de3 100644 --- a/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/resources/queries/select_annotation_test.rq +++ b/qanary-component-QB-ComicCharacterAlterEgoSimpleDBpedia/src/test/resources/queries/select_annotation_test.rq @@ -1,17 +1,20 @@ PREFIX qa: PREFIX oa: +PREFIX rdf: -SELECT ?a ?dbpediaResource ?startOfSpecificResource ?endOfSpecificResource ?annotatorComponent ?time +SELECT * FROM WHERE - { VALUES ?dbpediaResource { } - ?a a qa:AnnotationOfSpotInstance ; - oa:hasTarget _:b0 . - _:b0 a oa:SpecificResource ; - oa:hasSource ?dbpediaResource ; - oa:hasSelector _:b1 . - _:b1 a oa:TextPositionSelector ; - oa:start ?startOfSpecificResource ; - oa:end ?endOfSpecificResource . - ?a oa:annotatedAt ?time - } + { ?annotationId + rdf:type qa:AnnotationOfSpotInstance ; + oa:hasTarget _:b0 . + _:b0 rdf:type oa:SpecificResource ; + oa:hasSource ?hasSource ; + oa:hasSelector _:b1 . + _:b1 rdf:type oa:TextPositionSelector ; + oa:start ?start ; + oa:end ?end . + ?annotationId + oa:annotatedAt ?annotatedAt ; + oa:annotatedBy ?annotatedBy + } \ No newline at end of file From 257c539b19757e7d85ffa70a78498293d951de14 Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Thu, 21 Dec 2023 10:44:10 +0100 Subject: [PATCH 51/55] Fixed pom.xml --- qanary-component-QB-QAnswer/pom.xml | 75 ++++------------------------- 1 file changed, 10 insertions(+), 65 deletions(-) diff --git a/qanary-component-QB-QAnswer/pom.xml b/qanary-component-QB-QAnswer/pom.xml index e8a2211d2..e4bb94462 100644 --- a/qanary-component-QB-QAnswer/pom.xml +++ b/qanary-component-QB-QAnswer/pom.xml @@ -5,6 +5,7 @@ eu.wdaqua.qanary.component qanary-component-QB-QAnswer 4.1.0 + org.springframework.boot spring-boot-starter-parent @@ -21,21 +22,17 @@ [3.8.0,4.0.0) - - - eu.wdaqua.qanary - qa.component - ${qanary.version} - + eu.wdaqua.qanary - qa.commons - ${qanary.commons.version} - - qa.component ${qanary.version} + + eu.wdaqua.qanary + qa.commons + ${qanary.commons.version} + org.springframework.boot spring-boot-starter-web @@ -87,60 +84,8 @@ com.google.code.gson gson - - de.codecentric - spring-boot-admin-starter-client - ${spring-boot-admin.version} - - - org.hamcrest - hamcrest-all - 1.3 - test - - - org.junit.jupiter - junit-jupiter-engine - test - - - junit - junit - test - - - hamcrest-core - org.hamcrest - - - - - org.springframework.boot - spring-boot-starter-test - test - - - org.springdoc - springdoc-openapi-ui - ${springdoc.version} - - - com.jayway.jsonpath - json-path - test - - - com.jayway.jsonpath - json-path-assert - test - - - - com.google.code.gson - gson - - - + + org.springframework.boot @@ -191,4 +136,4 @@ - + \ No newline at end of file From 4a2a2f592e61879566b34b92180d2d43290762ce Mon Sep 17 00:00:00 2001 From: anbo-de Date: Fri, 5 Jan 2024 02:03:06 +0100 Subject: [PATCH 52/55] QB-BirthDataWikidata v3.4.0: ext. functionality * separated functionality: 1. use named entities that are linked, 2. use firstname and lastname annotations * improved SPARQL queries * added additional documentation --- qanary-component-QB-BirthDataWikidata/pom.xml | 4 +- .../qb/birthdata/wikidata/Application.java | 17 +- .../wikidata/BirthDataQueryBuilder.java | 754 +++++++++++------- .../resources/config/application.properties | 2 +- ...medEntityLinkedToSpecificKnowledgeGraph.rq | 8 +- .../birthdatawikidata/qb/QueryTest.java | 2 +- .../qb/TestConfiguration.java | 10 +- .../queries/getAnnotationFilteredTest.rq | 4 +- 8 files changed, 481 insertions(+), 320 deletions(-) diff --git a/qanary-component-QB-BirthDataWikidata/pom.xml b/qanary-component-QB-BirthDataWikidata/pom.xml index 19ae378db..fe868f252 100644 --- a/qanary-component-QB-BirthDataWikidata/pom.xml +++ b/qanary-component-QB-BirthDataWikidata/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-BirthDataWikidata - 3.3.7 + 3.4.0 org.springframework.boot @@ -15,7 +15,7 @@ 17 - [3.7.6,4.0.0) + [3.9.2,4.0.0) qanary qanary-component-qb-birthdata-wikidata 1.4.13 diff --git a/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/Application.java b/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/Application.java index 65aa10bd5..e38526814 100644 --- a/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/Application.java +++ b/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/Application.java @@ -14,10 +14,10 @@ import org.springframework.context.annotation.ComponentScan; @SpringBootApplication -@ComponentScan(basePackages = {"eu.wdaqua.qanary"}) +@ComponentScan(basePackages = { "eu.wdaqua.qanary" }) /** - * basic class for wrapping functionality to a Qanary component - * note: there is no need to change something here + * basic class for wrapping functionality to a Qanary component note: there is + * no need to change something here */ public class Application { @@ -29,8 +29,8 @@ public static void main(String[] args) { } /** - * this method is needed to make the QanaryComponent in this project known - * to the QanaryServiceController in the qanary_component-template + * this method is needed to make the QanaryComponent in this project known to + * the QanaryServiceController in the qanary_component-template * * @return */ @@ -38,9 +38,10 @@ public static void main(String[] args) { public QanaryComponent qanaryComponent(@Value("${spring.application.name}") final String applicationName) { return new BirthDataQueryBuilder(applicationName); } - - @Bean - public BirthDataQueryBuilderController getBirthDataQueryBuilderController(BirthDataQueryBuilder myBirthDataQueryBuilder) { + + @Bean + public BirthDataQueryBuilderController getBirthDataQueryBuilderController( + BirthDataQueryBuilder myBirthDataQueryBuilder) { return new BirthDataQueryBuilderController(myBirthDataQueryBuilder); } diff --git a/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java b/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java index 6a7aaf06f..71cc6a13d 100644 --- a/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java +++ b/qanary-component-QB-BirthDataWikidata/src/main/java/eu/wdaqua/component/qb/birthdata/wikidata/BirthDataQueryBuilder.java @@ -1,13 +1,13 @@ package eu.wdaqua.component.qb.birthdata.wikidata; -import eu.wdaqua.qanary.commons.QanaryExceptionNoOrMultipleQuestions; -import eu.wdaqua.qanary.commons.QanaryMessage; -import eu.wdaqua.qanary.commons.QanaryQuestion; -import eu.wdaqua.qanary.commons.QanaryUtils; -import eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector; -import eu.wdaqua.qanary.component.QanaryComponent; -import eu.wdaqua.qanary.exceptions.SparqlQueryFailed; -import io.swagger.v3.oas.annotations.Operation; +import java.io.IOException; +import java.net.URISyntaxException; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.Map; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + import org.apache.jena.datatypes.xsd.XSDDatatype; import org.apache.jena.query.QuerySolution; import org.apache.jena.query.QuerySolutionMap; @@ -19,307 +19,459 @@ import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Component; -import java.io.IOException; -import java.net.URISyntaxException; -import java.util.ArrayList; -import java.util.regex.Matcher; -import java.util.regex.Pattern; +import eu.wdaqua.qanary.commons.QanaryExceptionNoOrMultipleQuestions; +import eu.wdaqua.qanary.commons.QanaryMessage; +import eu.wdaqua.qanary.commons.QanaryQuestion; +import eu.wdaqua.qanary.commons.QanaryUtils; +import eu.wdaqua.qanary.commons.triplestoreconnectors.QanaryTripleStoreConnector; +import eu.wdaqua.qanary.component.QanaryComponent; +import eu.wdaqua.qanary.exceptions.SparqlQueryFailed; +import io.swagger.v3.oas.annotations.Operation; /** - * represents a query builder to answer questions regarding birthplace and date using Wikidata + * represents a query builder to answer questions regarding birthplace and date + * using Wikidata *

- * requirements: expects a textual question to be stored in the Qanary triplestore, - * written in English language, as well as previously annotated named entities + * requirements: expects a textual question to be stored in the Qanary + * triplestore, written in English language, as well as previously annotated + * named entities *

- * outcome: if the question structure is supported and a previous component (NED/NER) has found - * named entities then this component constructs a Wikidata query that might be used to compute - * the answer to the question + * outcome: if the question structure is supported and a previous component + * (NED/NER) has found named entities then this component constructs a Wikidata + * query that might be used to compute the answer to the question */ @Component public class BirthDataQueryBuilder extends QanaryComponent { - private static final Logger logger = LoggerFactory.getLogger(BirthDataQueryBuilder.class); - - private static final String FILENAME_ANNOTATIONS = "/queries/getAnnotation.rq"; - private static final String FILENAME_ANNOTATIONS_FILTERED = "/queries/getAnnotationFilteredOnlyWikidata.rq"; - - private static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON = "/queries/getQuestionAnswerFromWikidataByPerson.rq"; - private static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME = "/queries/getQuestionAnswerFromWikidataByFirstnameLastname.rq"; - - private static final String FIRSTNAME_ANNOTATION = "FIRST_NAME"; - private static final String LASTNAME_ANNOTATION = "LAST_NAME"; - - private static final String GRAPH = "graph"; - private static final String VALUE = "value"; - - private final String applicationName; - - private QanaryUtils myQanaryUtils; - private QanaryQuestion myQanaryQuestion; - private String myQuestion; - - private final String[] supportedQuestionPatterns = { - "([Ww]here and when was )(.*)( born)", - "([Ww]here was )(.*)( born)", - "([Ww]hen was )(.*)( born)" - }; - - private int patternIndex; - - public BirthDataQueryBuilder(@Value("$P{spring.application.name}") final String applicationName) { - this.applicationName = applicationName; - // check if files exists and are not empty - QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_ANNOTATIONS); - QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_ANNOTATIONS_FILTERED); - QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON); - QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME); - } - - /** - * compare the question against regular expression(s) representing the supported format - * and if a match is found, store the matched pattern index - * - * @param questionString the textual question - */ - @Operation( - summary = "Check if the question is supported and store the matched pattern index", - operationId = "isQuestionSupported", - description = "Compare the question against regular expression(s) representing the supported format and if a match is found, store the matched pattern index" - ) - private boolean isQuestionSupported(String questionString) { - for (int i = 0; i < this.supportedQuestionPatterns.length; i++) { - String pattern = this.supportedQuestionPatterns[i]; - - Pattern p = Pattern.compile(pattern); - Matcher m = p.matcher(questionString); - logger.info("checking pattern \"{}\"", pattern); - if (m.find()) { - this.patternIndex = i; - return true; - } - } - - return false; - } - - /** - * Find the position of a name in the textual question. - * - * @param questionString the textual question - * @param pattern a regular expression (from supportedQuestionPatterns) - */ - @Operation( - summary = "Find the index of the entity in the question", - operationId = "getNamePosition", - description = "Find the position of a name in the textual question." // - + "The name is represented as a matched group within supportedQuestionPatterns." - ) - private int getNamePosition(String questionString, String pattern) { - Matcher m = Pattern.compile(pattern).matcher(questionString); - m.find(); - int index = m.start(2); - return index; - } - - private String loadQueryFromFile(String filenameWithRelativePath, QuerySolutionMap bindings) throws IOException { - return QanaryTripleStoreConnector.readFileFromResourcesWithMap(filenameWithRelativePath, bindings); - } - - /** - * standard method for processing a message from the central Qanary component - * - * @param myQanaryMessage - * @throws Exception - */ - @Operation( - summary = "Process a Qanary question with BirthDataQueryBuilder", // - operationId = "process", // - description = "Encapsulates the main functionality of this component. " // - + "Construct a Wikidata query to find birth date and place for named entities." - ) - @Override - public QanaryMessage process(QanaryMessage myQanaryMessage) throws Exception { - logger.info("process: {}", myQanaryMessage); - - // STEP 1: Get the required Data - // - // This example component requires the textual representation of the Question - // as well as annotations of Wikidata entities made by the OpenTapioca NED. - - // get the question as String - this.myQanaryUtils = this.getUtils(myQanaryMessage); - this.myQanaryQuestion = new QanaryQuestion<>(myQanaryMessage, myQanaryUtils.getQanaryTripleStoreConnector()); - this.myQuestion = myQanaryQuestion.getTextualRepresentation(); - - // This component is only supposed to answer a specific type of question. - // Therefore, we only need to continue if the question asks for birthplace and date or if there is an - // annotation of the first and lastname. - - - // Get the firstname annotation if it's annotated - QuerySolutionMap bindingsForFirstname = new QuerySolutionMap(); - bindingsForFirstname.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); - bindingsForFirstname.add(VALUE, ResourceFactory.createStringLiteral(FIRSTNAME_ANNOTATION)); - - String sparqlCheckFirstname = this.loadQueryFromFile(FILENAME_ANNOTATIONS, bindingsForFirstname); - ResultSet resultsetFirstname = myQanaryUtils.getQanaryTripleStoreConnector().select(sparqlCheckFirstname); - - // Get the lastname annotation, if it's annotated - QuerySolutionMap bindingsForLastname = new QuerySolutionMap(); - // the currently used graph - bindingsForLastname.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); - // annotated for the current question - bindingsForLastname.add(VALUE, ResourceFactory.createStringLiteral(LASTNAME_ANNOTATION)); - - String sparqlCheckLastname = this.loadQueryFromFile(FILENAME_ANNOTATIONS, bindingsForLastname); - ResultSet resultsetLastname = myQanaryUtils.getQanaryTripleStoreConnector().select(sparqlCheckLastname); - - - // STEP 2: Create queries for Wikidata if the question is supported or annotations are available - ArrayList queriesForAnnotation = new ArrayList<>(); - - if (resultsetFirstname.hasNext() && resultsetLastname.hasNext()) { - // In this example, we are only interested in Entities that were found from another component and - // annotated with the annotation "FIRST_NAME" and "LAST_NAME". - queriesForAnnotation = createQueriesForAnnotation(resultsetFirstname, resultsetLastname); - } else { - logger.info("no annotation for {} and {} found", FIRSTNAME_ANNOTATION, LASTNAME_ANNOTATION); - } - - if ((queriesForAnnotation.isEmpty() || queriesForAnnotation.get(0).isBlank()) && this.isQuestionSupported(myQuestion)) { - // In this example we are only interested in Entities that were found at a specific point - // in the question: e.g., 'when and where was born?'. - // Because we do not require entities that might have been found anywhere else in the - // question we can filter our results: - - int filterStart = this.getNamePosition(myQuestion, this.supportedQuestionPatterns[this.patternIndex]); - // formulate a query to find existing information - queriesForAnnotation = createQueriesForAnnotation(filterStart); - - } - - // If no query was created, we can stop here. - if (queriesForAnnotation.isEmpty() || queriesForAnnotation.get(0).isBlank() ) { - logger.warn("nothing to do here as question \"{}\" does not have the supported format", myQuestion); - return myQanaryMessage; - } - - - for (int i = 0; i < queriesForAnnotation.size(); i++) { - // store the created select query as an annotation for the current question - // define here the parameters for the SPARQL INSERT query - QuerySolutionMap bindings = new QuerySolutionMap(); - // use here the variable names defined in method insertAnnotationOfAnswerSPARQL - bindings.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); - bindings.add("targetQuestion", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); - bindings.add("selectQueryThatShouldComputeTheAnswer", ResourceFactory.createStringLiteral(queriesForAnnotation.get(i))); - bindings.add("confidence", ResourceFactory.createTypedLiteral("1.0", XSDDatatype.XSDfloat)); // as it is rule based, a high confidence is expressed - bindings.add("application", ResourceFactory.createResource("urn:qanary:" + this.applicationName)); - - // get the template of the INSERT query - String insertDataIntoQanaryTriplestoreQuery = QanaryTripleStoreConnector.insertAnnotationOfAnswerSPARQL(bindings); - logger.info("SPARQL insert for adding data to Qanary triplestore: {}", insertDataIntoQanaryTriplestoreQuery); - - //STEP 4: Push the computed result to the Qanary triplestore - logger.info("store data in graph {} of Qanary triplestore endpoint {}", // - myQanaryMessage.getValues().get(myQanaryMessage.getOutGraph()), // - myQanaryMessage.getValues().get(myQanaryMessage.getEndpoint())); - myQanaryUtils.getQanaryTripleStoreConnector().update(insertDataIntoQanaryTriplestoreQuery); - } - - return myQanaryMessage; - } - - private ArrayList createQueriesForAnnotation(int filterStart) throws IOException, QanaryExceptionNoOrMultipleQuestions, URISyntaxException, SparqlQueryFailed { - QuerySolutionMap bindingsForAnnotation = new QuerySolutionMap(); - // the currently used graph - bindingsForAnnotation.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); - // annotated for the current question - bindingsForAnnotation.add("source", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); - // only for relevant annotations - bindingsForAnnotation.add("filterStart", ResourceFactory.createTypedLiteral(String.valueOf(filterStart), XSDDatatype.XSDint)); - - String sparqlGetAnnotation = this.loadQueryFromFile(FILENAME_ANNOTATIONS_FILTERED, bindingsForAnnotation); - - // STEP 3: Compute SPARQL select queries that should produce the result for every identified entity - // - // Rather than computing a (textual) result this component provides a - // SPARQL query that might be used to answer the question. - // This query can the used by other components. - - // there might be multiple entities identified for one name - ResultSet resultset = myQanaryUtils.getQanaryTripleStoreConnector().select(sparqlGetAnnotation); - ArrayList queries = new ArrayList<>(); - while (resultset.hasNext()) { - QuerySolution tupel = resultset.next(); - RDFNode wikidataResource = tupel.get("wikidataResource"); - logger.info("creating query for resource: {}", wikidataResource); - String createdWikiDataQuery = createWikidataSparqlQuery(wikidataResource); - queries.add(createdWikiDataQuery); - } - - return queries; - } - - private ArrayList createQueriesForAnnotation(ResultSet resultsetFirstname, ResultSet resultsetLastname) throws IOException { - ArrayList firstnameStartsEnds = new ArrayList<>(); - ArrayList lastnameStartsEnds = new ArrayList<>(); - - while (resultsetFirstname.hasNext()) { - Integer[] startEnd = new Integer[2]; - QuerySolution tupel = resultsetFirstname.next(); - startEnd[0] = tupel.getLiteral("start").getInt(); - startEnd[1] = tupel.getLiteral("end").getInt(); - - firstnameStartsEnds.add(startEnd); - } - - while (resultsetLastname.hasNext()) { - Integer[] startEnd = new Integer[2]; - QuerySolution tupel = resultsetLastname.next(); - startEnd[0] = tupel.getLiteral("start").getInt(); - startEnd[1] = tupel.getLiteral("end").getInt(); - - lastnameStartsEnds.add(startEnd); - } - - ArrayList queries = new ArrayList<>(); - for (int i = 0; i < firstnameStartsEnds.size(); i++) { - String firstanme = ""; - String lastname = ""; - - - try { - firstanme = myQuestion.substring(firstnameStartsEnds.get(i)[0], firstnameStartsEnds.get(i)[1]); - lastname = myQuestion.substring(lastnameStartsEnds.get(i)[0], lastnameStartsEnds.get(i)[1]); - } catch (Exception e) { - logger.error("error while get first or lastname: {}", e.getMessage()); - break; - } - - logger.info("creating query for {} {}", firstanme, lastname); - - String createdWikiDataQuery = createWikidataSparqlQuery(firstanme, lastname); - queries.add(createdWikiDataQuery); + private static final Logger logger = LoggerFactory.getLogger(BirthDataQueryBuilder.class); + + public static final String FILENAME_ANNOTATIONS = "/queries/getAnnotation.rq"; + public static final String FILENAME_ANNOTATIONS_NAMED_ENTITY_FILTERED_FOR_WIKIDATA = "/queries/getAnnotationOfNamedEntityLinkedToSpecificKnowledgeGraph.rq"; + + public static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON = "/queries/getQuestionAnswerFromWikidataByPerson.rq"; + public static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME = "/queries/getQuestionAnswerFromWikidataByFirstnameLastname.rq"; + + private static final String FIRSTNAME_ANNOTATION = "FIRST_NAME"; + private static final String LASTNAME_ANNOTATION = "LAST_NAME"; + + private static final String GRAPH = "graph"; + private static final String VALUE = "value"; + + private final String applicationName; + + private QanaryUtils myQanaryUtils; + private QanaryQuestion myQanaryQuestion; + private String myQuestion; + + private final String[] supportedQuestionPatterns = { "([Ww]here and when was )(.*)( born)", + "([Ww]here was )(.*)( born)", "([Ww]hen was )(.*)( born)" }; + + private int patternIndex; + + public BirthDataQueryBuilder(@Value("$P{spring.application.name}") final String applicationName) { + this.applicationName = applicationName; + // check if files exists and are not empty + QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_ANNOTATIONS); + QanaryTripleStoreConnector + .guardNonEmptyFileFromResources(FILENAME_ANNOTATIONS_NAMED_ENTITY_FILTERED_FOR_WIKIDATA); + QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON); + QanaryTripleStoreConnector.guardNonEmptyFileFromResources(FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME); + } + + /** + * compare the question against regular expression(s) representing the supported + * format and if a match is found, store the matched pattern index + * + * @param questionString the textual question + */ + @Operation(summary = "Check if the question is supported and store the matched pattern index", operationId = "isQuestionSupported", description = "Compare the question against regular expression(s) representing the supported format and if a match is found, store the matched pattern index") + private boolean isQuestionSupported(String questionString) { + for (int i = 0; i < this.supportedQuestionPatterns.length; i++) { + String pattern = this.supportedQuestionPatterns[i]; + + Pattern p = Pattern.compile(pattern); + Matcher m = p.matcher(questionString); + logger.info("checking pattern \"{}\"", pattern); + if (m.find()) { + this.patternIndex = i; + return true; + } + } + + return false; + } + + /** + * Find the position of a name in the textual question. + * + * @param questionString the textual question + * @param pattern a regular expression (from supportedQuestionPatterns) + */ + @Operation(summary = "Find the index of the entity in the question", operationId = "getNamePosition", description = "Find the position of a name in the textual question." // + + "The name is represented as a matched group within supportedQuestionPatterns.") + private int getNamePosition(String questionString, String pattern) { + Matcher m = Pattern.compile(pattern).matcher(questionString); + m.find(); + int index = m.start(2); + return index; + } + + private String loadQueryFromFile(String filenameWithRelativePath, QuerySolutionMap bindings) throws IOException { + return QanaryTripleStoreConnector.readFileFromResourcesWithMap(filenameWithRelativePath, bindings); + } + + /** + * standard method for processing a message from the central Qanary component + * + * @param myQanaryMessage + * @throws Exception + */ + @Operation(summary = "Process a Qanary question with BirthDataQueryBuilder", // + operationId = "process", // + description = "Encapsulates the main functionality of this component. " // + + "Construct a Wikidata query to find birth date and place for named entities." // + + "The process can use the provided firstname and lastname or a named entity annotation.") + @Override + public QanaryMessage process(QanaryMessage myQanaryMessage) throws Exception { + logger.info("process: {}", myQanaryMessage); + + // This example component requires the textual representation of the Question + // as well as annotations of Wikidata entities made by the OpenTapioca NED. + + this.myQanaryUtils = this.getUtils(myQanaryMessage); + this.myQanaryQuestion = new QanaryQuestion<>(myQanaryMessage, myQanaryUtils.getQanaryTripleStoreConnector()); + this.myQuestion = myQanaryQuestion.getTextualRepresentation(); // get the question as String + + // STEP 1-3 have two options + + // first, try to use a named entity annotation because it is more precise if it + // works, then stop + myQanaryMessage = this.processForExistingNamedEntity(myQanaryMessage); + if (myQanaryMessage != null) { + logger.info("Found a named entity annotation. Processing finished."); + return myQanaryMessage; + } + + // second, let's try to find a firstname and lastname, if that works we stop + myQanaryMessage = this.processForFirstNameAndLastName(myQanaryMessage); + if( myQanaryMessage != null ) { + logger.info("Found firstname and lastname. Processing finished."); + return myQanaryMessage; } - return queries; - } - - public String createWikidataSparqlQuery(RDFNode wikidataResource) throws IOException { - // populate a generalized answer query with the specific entity (Wikidata ID) - QuerySolutionMap bindingsForWikidataResultQuery = new QuerySolutionMap(); - // set expected person as parameter for Wikidata query - bindingsForWikidataResultQuery.add("person", wikidataResource); - return this.loadQueryFromFile(FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON, bindingsForWikidataResultQuery); - } - - public String createWikidataSparqlQuery(String firstname, String lastname) throws IOException { - // populate a generalized answer query with the specific entity (Wikidata ID) - QuerySolutionMap bindingsForWikidataResultQuery = new QuerySolutionMap(); - // set expected last and firstname as parameter for Wikidata query - bindingsForWikidataResultQuery.add("firstnameValue", ResourceFactory.createLangLiteral(firstname, "en")); - bindingsForWikidataResultQuery.add("lastnameValue", ResourceFactory.createLangLiteral(lastname, "en")); - return this.loadQueryFromFile(FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME, bindingsForWikidataResultQuery); - } + logger.warn("Nothing could be done here."); + return myQanaryMessage; + } + + /** + * This process is only supposed to answer a specific type of question. + * Therefore, we only need to continue if the question asks for birthplace and + * date or if there is an annotation of the first and lastname. + * + * @param myQanaryMessage + * @return + * @throws Exception + */ + private QanaryMessage processForFirstNameAndLastName(QanaryMessage myQanaryMessage) throws Exception { + + // STEP 1: Get the required Data + // Get the firstname annotation if it's annotated + QuerySolutionMap bindingsForFirstname = new QuerySolutionMap(); + bindingsForFirstname.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); + bindingsForFirstname.add(VALUE, ResourceFactory.createStringLiteral(FIRSTNAME_ANNOTATION)); + + String sparqlCheckFirstname = this.loadQueryFromFile(FILENAME_ANNOTATIONS, bindingsForFirstname); + ResultSet resultsetFirstname = myQanaryUtils.getQanaryTripleStoreConnector().select(sparqlCheckFirstname); + + // Get the lastname annotation if it's annotated + QuerySolutionMap bindingsForLastname = new QuerySolutionMap(); + // the currently used graph + bindingsForLastname.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); + // annotated for the current question + bindingsForLastname.add(VALUE, ResourceFactory.createStringLiteral(LASTNAME_ANNOTATION)); + + String sparqlCheckLastname = this.loadQueryFromFile(FILENAME_ANNOTATIONS, bindingsForLastname); + ResultSet resultsetLastname = myQanaryUtils.getQanaryTripleStoreConnector().select(sparqlCheckLastname); + + // STEP 2: Create queries for Wikidata if the question is supported or + // annotations are available + ArrayList queriesForAnnotation = new ArrayList<>(); + + if (resultsetFirstname.hasNext() && resultsetLastname.hasNext()) { + // In this example, we are only interested in Entities that were found from + // another component and + // annotated with the annotation "FIRST_NAME" and "LAST_NAME". + queriesForAnnotation = createQueriesForAnnotation(resultsetFirstname, resultsetLastname); + } else { + logger.info("no annotation for {} and {} found", FIRSTNAME_ANNOTATION, LASTNAME_ANNOTATION); + } + + if ((queriesForAnnotation.isEmpty() || queriesForAnnotation.get(0).isBlank()) + && this.isQuestionSupported(myQuestion)) { + // In this example we are only interested in Entities that were found at a + // specific point + // in the question: e.g., 'when and where was born?'. + // Because we do not require entities that might have been found anywhere else + // in the + // question we can filter our results: + + int filterStart = this.getNamePosition(myQuestion, this.supportedQuestionPatterns[this.patternIndex]); + // formulate a query to find existing information + queriesForAnnotation = createQueriesForAnnotation(filterStart); + } + + // If no query was created, we can stop here. + if (queriesForAnnotation.isEmpty() || queriesForAnnotation.get(0).isBlank()) { + logger.warn("nothing to do here as question \"{}\" does not have the supported format; ", myQuestion, + resultsetFirstname); + return null; + } else { + for (int i = 0; i < queriesForAnnotation.size(); i++) { + // store the created select query as an annotation for the current question + // define here the parameters for the SPARQL INSERT query + QuerySolutionMap bindings = new QuerySolutionMap(); + // use here the variable names defined in method insertAnnotationOfAnswerSPARQL + bindings.add(GRAPH, ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); + bindings.add("targetQuestion", + ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); + bindings.add("selectQueryThatShouldComputeTheAnswer", + ResourceFactory.createStringLiteral(queriesForAnnotation.get(i))); + bindings.add("confidence", ResourceFactory.createTypedLiteral("1.0", XSDDatatype.XSDfloat)); // as it is + // rule + // based, + // a + // high + // confidence + // is + // expressed + bindings.add("application", ResourceFactory.createResource("urn:qanary:" + this.applicationName)); + + // get the template of the INSERT query + String insertDataIntoQanaryTriplestoreQuery = QanaryTripleStoreConnector + .insertAnnotationOfAnswerSPARQL(bindings); + logger.info("SPARQL insert for adding data to Qanary triplestore: {}", + insertDataIntoQanaryTriplestoreQuery); + + // STEP 3: Push the computed result to the Qanary triplestore + logger.info("store data in graph {} of Qanary triplestore endpoint {}", // + myQanaryMessage.getValues().get(myQanaryMessage.getOutGraph()), // + myQanaryMessage.getValues().get(myQanaryMessage.getEndpoint())); + myQanaryUtils.getQanaryTripleStoreConnector().update(insertDataIntoQanaryTriplestoreQuery); + } + + return myQanaryMessage; + } + } + + private QanaryMessage processForExistingNamedEntity(QanaryMessage myQanaryMessage) + throws IOException, SparqlQueryFailed, QanaryExceptionNoOrMultipleQuestions, URISyntaxException { + + logger.info("Executing processForExistingNamedEntity."); + + String inGraph = myQanaryQuestion.getInGraph().toASCIIString(); + String outGraph = myQanaryQuestion.getOutGraph().toASCIIString(); + String myQuestionURI = myQanaryQuestion.getUri().toASCIIString(); + String endpoint = myQanaryMessage.getEndpoint().toASCIIString(); + + // STEP 1: Get Named Entity from the Qanary triplestore + int filterStart = 0; + if (this.isQuestionSupported(myQuestion)) { + // In this example we are only interested in Entities that were found at a + // specific point + // in the question: e.g., 'when and where was born?'. + filterStart = this.getNamePosition(myQuestion, this.supportedQuestionPatterns[this.patternIndex]); + } else { + // stop the processing + logger.warn("processForExistingNamedEntity: Stop here as the question pattern was not found in '{}'.", + this.myQuestion); + return null; + } + + QuerySolutionMap bindingsForAnnotationWithWikidataResource = new QuerySolutionMap(); + bindingsForAnnotationWithWikidataResource.add(GRAPH, ResourceFactory.createResource(inGraph)); + bindingsForAnnotationWithWikidataResource.add("regexForResourceFilter", + ResourceFactory.createPlainLiteral("^http://www.wikidata.org/entity/")); + bindingsForAnnotationWithWikidataResource.add("filterStart", + ResourceFactory.createTypedLiteral(String.valueOf(filterStart), XSDDatatype.XSDint)); + String sparqlNamedEntityAnnotation = this.loadQueryFromFile( + FILENAME_ANNOTATIONS_NAMED_ENTITY_FILTERED_FOR_WIKIDATA, bindingsForAnnotationWithWikidataResource); + + // find the resources that are annotated in the given question as there are + // possibly multiple resource, we store them in a map with the score + ResultSet resultset = myQanaryUtils.getQanaryTripleStoreConnector().select(sparqlNamedEntityAnnotation); + Map wikidataResources = new HashMap<>(); + while (resultset.hasNext()) { + QuerySolution tupel = resultset.next(); + String wikidataResource = tupel.get("wikidataResource").asResource().getURI(); + float score = tupel.get("annotationScore").asLiteral().getFloat(); + + // if the resource exists, then check if the score is higher OR no such key + // exists + if ((wikidataResources.containsKey(wikidataResource) && wikidataResources.get(wikidataResource) < score) + || (!wikidataResources.containsKey(wikidataResource))) { + wikidataResources.put(wikidataResource, score); + } + + } + logger.info("found entities: {}", wikidataResources); + if (wikidataResources.size() == 0) { + // stop the processing + logger.warn("processForExistingNamedEntity: Stop here as no Wikidata resources were found in the graph {}.", + inGraph); + return null; + } + + // STEP 2: compute SPARQL queries that can be used to retrieve the actual answer + ArrayList queriesCapableOfRetrievingTheAnswer = new ArrayList<>(); // queries for inserting annotation + // of AnswerSparql into the Qanary + // triplestore + for (String namedEntityResource : wikidataResources.keySet()) { + float score = wikidataResources.get(namedEntityResource); + + String answerRepresentedAsSparqlQuery = createWikidataSparqlQuery(namedEntityResource); + + QuerySolutionMap bindingsForInserting = new QuerySolutionMap(); + bindingsForInserting.add(GRAPH, ResourceFactory.createResource(outGraph)); + bindingsForInserting.add("targetQuestion", ResourceFactory.createResource(myQuestionURI)); + bindingsForInserting.add("selectQueryThatShouldComputeTheAnswer", + ResourceFactory.createStringLiteral(answerRepresentedAsSparqlQuery)); + // we take over the score of the named entity recognizer (NER+NED) + bindingsForInserting.add("confidence", + ResourceFactory.createTypedLiteral(String.valueOf(score), XSDDatatype.XSDfloat)); + bindingsForInserting.add("application", + ResourceFactory.createResource("urn:qanary:" + this.applicationName)); + + // get the template of the INSERT query to insert the new annotation into the + // Qanary triplestore + String insertDataIntoQanaryTriplestoreQuery = QanaryTripleStoreConnector + .insertAnnotationOfAnswerSPARQL(bindingsForInserting); + logger.info("created SPARQL INSERT query for adding data to Qanary triplestore: {}", + insertDataIntoQanaryTriplestoreQuery); + queriesCapableOfRetrievingTheAnswer.add(insertDataIntoQanaryTriplestoreQuery); + } + if (queriesCapableOfRetrievingTheAnswer.size() == 0) { + // stop the processing + logger.warn("processForExistingNamedEntity: Stop here as no queries were created (based on graph {}).", + inGraph); + return null; + } else { + logger.info( + "Created {} SPARQL queries that should be capable of retrieving the correct answer over Wikidata.", + queriesCapableOfRetrievingTheAnswer.size()); + } + + // STEP 3: store the created information in the Qanary triplestore as + // AnnotationfAnswerSPARQL + for (String query : queriesCapableOfRetrievingTheAnswer) { + logger.info("store data in graph {} of Qanary triplestore endpoint {}", outGraph, endpoint); + myQanaryUtils.getQanaryTripleStoreConnector().update(query); + } + + return myQanaryMessage; // everything done + } + + private ArrayList createQueriesForAnnotation(int filterStart) + throws IOException, QanaryExceptionNoOrMultipleQuestions, URISyntaxException, SparqlQueryFailed { + QuerySolutionMap bindingsForAnnotation = new QuerySolutionMap(); + // the currently used graph + bindingsForAnnotation.add(GRAPH, + ResourceFactory.createResource(myQanaryQuestion.getOutGraph().toASCIIString())); + // annotated for the current question + bindingsForAnnotation.add("source", ResourceFactory.createResource(myQanaryQuestion.getUri().toASCIIString())); + // only for relevant annotations filter by starting point + bindingsForAnnotation.add("filterStart", + ResourceFactory.createTypedLiteral(String.valueOf(filterStart), XSDDatatype.XSDint)); + // filter resources to get only the ones that are pointing to the Wikidata + // knowledge graph + bindingsForAnnotation.add("regexForResourceFilter", + ResourceFactory.createPlainLiteral("^http://www.wikidata.org/entity/")); + + String sparqlGetAnnotation = this.loadQueryFromFile(FILENAME_ANNOTATIONS_NAMED_ENTITY_FILTERED_FOR_WIKIDATA, + bindingsForAnnotation); + + // STEP 3: Compute SPARQL select queries that should produce the result for + // every identified entity + + // Rather than computing a (textual) result this component provides a SPARQL + // query that might be used to answer the question. This query can the used by + // other components. This query will be stored in the Qanary triplestore. + ResultSet resultset = myQanaryUtils.getQanaryTripleStoreConnector().select(sparqlGetAnnotation); + ArrayList queries = new ArrayList<>(); + while (resultset.hasNext()) { + QuerySolution tupel = resultset.next(); + RDFNode wikidataResource = tupel.get("wikidataResource"); + logger.info("creating query for resource: {}", wikidataResource); + String createdWikiDataQuery = createWikidataSparqlQuery(wikidataResource); + queries.add(createdWikiDataQuery); + } + + return queries; + } + + private ArrayList createQueriesForAnnotation(ResultSet resultsetFirstname, ResultSet resultsetLastname) + throws IOException { + ArrayList firstnameStartsEnds = new ArrayList<>(); + ArrayList lastnameStartsEnds = new ArrayList<>(); + + while (resultsetFirstname.hasNext()) { + Integer[] startEnd = new Integer[2]; + QuerySolution tupel = resultsetFirstname.next(); + startEnd[0] = tupel.getLiteral("start").getInt(); + startEnd[1] = tupel.getLiteral("end").getInt(); + + firstnameStartsEnds.add(startEnd); + } + + while (resultsetLastname.hasNext()) { + Integer[] startEnd = new Integer[2]; + QuerySolution tupel = resultsetLastname.next(); + startEnd[0] = tupel.getLiteral("start").getInt(); + startEnd[1] = tupel.getLiteral("end").getInt(); + + lastnameStartsEnds.add(startEnd); + } + + ArrayList queries = new ArrayList<>(); + for (int i = 0; i < firstnameStartsEnds.size(); i++) { + String firstanme = ""; + String lastname = ""; + + try { + firstanme = myQuestion.substring(firstnameStartsEnds.get(i)[0], firstnameStartsEnds.get(i)[1]); + lastname = myQuestion.substring(lastnameStartsEnds.get(i)[0], lastnameStartsEnds.get(i)[1]); + } catch (Exception e) { + logger.error("error while get first or lastname: {}", e.getMessage()); + break; + } + + logger.info("creating query for {} {}", firstanme, lastname); + + String createdWikiDataQuery = createWikidataSparqlQuery(firstanme, lastname); + queries.add(createdWikiDataQuery); + } + + return queries; + } + + public String createWikidataSparqlQuery(String wikidataResource) throws IOException { + return this.createWikidataSparqlQuery(ResourceFactory.createResource(wikidataResource)); + } + + public String createWikidataSparqlQuery(RDFNode wikidataResource) throws IOException { + // populate a generalized answer query with the specific entity (Wikidata ID) + QuerySolutionMap bindingsForWikidataResultQuery = new QuerySolutionMap(); + // set expected person as parameter for Wikidata query + bindingsForWikidataResultQuery.add("person", wikidataResource); + return this.loadQueryFromFile(FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON, bindingsForWikidataResultQuery); + } + + public String createWikidataSparqlQuery(String firstname, String lastname) throws IOException { + // populate a generalized answer query with the specific entity (Wikidata ID) + QuerySolutionMap bindingsForWikidataResultQuery = new QuerySolutionMap(); + // set expected last and firstname as parameter for Wikidata query + bindingsForWikidataResultQuery.add("firstnameValue", ResourceFactory.createLangLiteral(firstname, "en")); + bindingsForWikidataResultQuery.add("lastnameValue", ResourceFactory.createLangLiteral(lastname, "en")); + return this.loadQueryFromFile(FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME, + bindingsForWikidataResultQuery); + } } diff --git a/qanary-component-QB-BirthDataWikidata/src/main/resources/config/application.properties b/qanary-component-QB-BirthDataWikidata/src/main/resources/config/application.properties index 2213cf8f4..71b22b508 100644 --- a/qanary-component-QB-BirthDataWikidata/src/main/resources/config/application.properties +++ b/qanary-component-QB-BirthDataWikidata/src/main/resources/config/application.properties @@ -1,6 +1,6 @@ # Update the port number server.port=5555 -spring.application.name=BirthDataQueryBuilderWikidata +spring.application.name=QB-BirthDataWikidata spring.application.description=${spring.application.name} is a Qanary component for creating a Wikidata SPARQL query intended to find the birth place and date of people by firstname/lastname or Wikidata resource # Update the URL of the Qanary pipeline spring.boot.admin.url=http://localhost:8080 diff --git a/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationOfNamedEntityLinkedToSpecificKnowledgeGraph.rq b/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationOfNamedEntityLinkedToSpecificKnowledgeGraph.rq index 25a95bee2..9a2f5703a 100644 --- a/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationOfNamedEntityLinkedToSpecificKnowledgeGraph.rq +++ b/qanary-component-QB-BirthDataWikidata/src/main/resources/queries/getAnnotationOfNamedEntityLinkedToSpecificKnowledgeGraph.rq @@ -1,3 +1,4 @@ +# retrieve an annotation pointing to Wikidata entity from a text segment (TextSelector) PREFIX dbr: PREFIX oa: PREFIX qa: @@ -7,15 +8,18 @@ SELECT * FROM ?graph WHERE { ?annotation oa:hasBody ?wikidataResource . - # accept only Wikidata resources as it is a Wikidata Query Builder component - FILTER( REGEX(?wikidataResource, "^http://www.wikidata.org/entity/", "i")) ?annotation qa:score ?annotationScore . ?annotation oa:hasTarget ?target . + ?annotation oa:annotatedBy ?annotator . ?target oa:hasSource ?source . ?target oa:hasSelector ?textSelector . ?textSelector rdf:type oa:TextPositionSelector . ?textSelector oa:start ?start . ?textSelector oa:end ?end . + + # filter named entities that have particular start index in the given question FILTER(?start = ?filterStart) . + # accept only Wikidata resources as it is a Wikidata Query Builder component + FILTER( REGEX(?wikidataResource, ?regexForResourceFilter, "i")) } ORDER BY DESC(?annotationScore) \ No newline at end of file diff --git a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java index a62a9d386..b1d91f8e9 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java +++ b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/QueryTest.java @@ -48,7 +48,7 @@ void filenameAnnotationsFilteredQueryTest() throws IOException { bindingsForAnnotation.add("filterStart", ResourceFactory.createTypedLiteral(String.valueOf(5), XSDDatatype.XSDint)); String sparqlGetAnnotation = QanaryTripleStoreConnector.readFileFromResourcesWithMap( - TestConfiguration.FILENAME_ANNOTATIONS_FILTERED, + TestConfiguration.FILENAME_ANNOTATIONS_NAMED_ENTITY_FILTERED_FOR_WIKIDATA, bindingsForAnnotation ); diff --git a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java index d01e7ef20..7d5c2c456 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java +++ b/qanary-component-QB-BirthDataWikidata/src/test/java/eu/wdaqua/component/birthdatawikidata/qb/TestConfiguration.java @@ -4,12 +4,14 @@ import java.nio.file.Files; import java.nio.file.Paths; +import eu.wdaqua.component.qb.birthdata.wikidata.BirthDataQueryBuilder; + @org.springframework.boot.test.context.TestConfiguration public class TestConfiguration { - protected static final String FILENAME_ANNOTATIONS = "/queries/getAnnotation.rq"; - protected static final String FILENAME_ANNOTATIONS_FILTERED = "/queries/getAnnotationFiltered.rq"; - protected static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON = "/queries/getQuestionAnswerFromWikidataByPerson.rq"; - protected static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME = "/queries/getQuestionAnswerFromWikidataByFirstnameLastname.rq"; + protected static final String FILENAME_ANNOTATIONS = BirthDataQueryBuilder.FILENAME_ANNOTATIONS; + protected static final String FILENAME_ANNOTATIONS_NAMED_ENTITY_FILTERED_FOR_WIKIDATA = BirthDataQueryBuilder.FILENAME_ANNOTATIONS_NAMED_ENTITY_FILTERED_FOR_WIKIDATA; + protected static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON = BirthDataQueryBuilder.FILENAME_WIKIDATA_BIRTHDATA_QUERY_PERSON; + protected static final String FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME = BirthDataQueryBuilder.FILENAME_WIKIDATA_BIRTHDATA_QUERY_FIRST_AND_LASTNAME; /** * get the defined SPARQL query and remove all control characters (like newline) diff --git a/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq b/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq index 8c93916eb..60e226c53 100644 --- a/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq +++ b/qanary-component-QB-BirthDataWikidata/src/test/resources/queries/getAnnotationFilteredTest.rq @@ -8,7 +8,8 @@ FROM WHERE { ?annotation oa:hasBody ?wikidataResource ; qa:score ?annotationScore ; - oa:hasTarget ?target . + oa:hasTarget ?target ; + oa:annotatedBy ?annotator . ?target oa:hasSource ; oa:hasSelector ?textSelector . ?textSelector @@ -16,5 +17,6 @@ WHERE oa:start ?start ; oa:end ?end FILTER ( ?start = "5"^^ ) + FILTER regex(?wikidataResource, ?regexForResourceFilter, "i") } ORDER BY DESC(?annotationScore) From c644cb93964f8df75a40952f8df0011dc08f97a6 Mon Sep 17 00:00:00 2001 From: Andreas Both Date: Mon, 8 Jan 2024 18:35:47 +0100 Subject: [PATCH 53/55] service_config.json: Fixed BirthData Docker image name --- service_config/service_config.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/service_config/service_config.json b/service_config/service_config.json index f7be000e2..b8175481f 100644 --- a/service_config/service_config.json +++ b/service_config/service_config.json @@ -48,7 +48,7 @@ { "mode": "dockerfile", "port": "40152:40152", - "image": "qanary/qanary-component-qb-birthdatawikidata", + "image": "qanary/qanary-component-qb-birthdata-wikidata", "tag": "latest", "files": { ".env": "qb-birthdatawikidata" @@ -152,7 +152,7 @@ "2": "qanary-qanary-component-ned-opentapioca", "3": "qanary-qanary-component-ner-comiccharacternamesimplenamedentityrecognizer", "4": "qanary-qanary-component-qc-answertypeclassifier", - "5": "qanary-qanary-component-qb-birthdatawikidata", + "5": "qanary-qanary-component-qb-birthdata-wikidata", "6": "qanary-qanary-component-qb-comiccharacteralteregosimpledbpedia", "7": "qanary-qanary-component-qb-qanswer", "8": "qanary-qanary-component-qbe-qanswer", @@ -164,4 +164,4 @@ "14": "qanary-qanary-component-kg2kg-translateannotationsofinstance", "15": "qanary-qanary-component-ned-openai-gpt" } -} \ No newline at end of file +} From 46cd407ffbc8fc137b5fa7fa7975712a1e328346 Mon Sep 17 00:00:00 2001 From: anbo-de Date: Mon, 8 Jan 2024 23:01:20 +0100 Subject: [PATCH 54/55] build_images.sh: added two-digit versions support --- service_config/build_images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service_config/build_images.sh b/service_config/build_images.sh index f1729e74e..4b85746b2 100755 --- a/service_config/build_images.sh +++ b/service_config/build_images.sh @@ -89,7 +89,7 @@ then exit 4 # stop if maven build fails fi -docker image ls | grep -oP "^qanary/qanary-component.*\.[0-9] " > images.temp +docker image ls | grep -oP "^qanary/qanary-component.*\.[0-9]+ " > images.temp # read image list images=$(cat images.temp) From 0e618903541b26a5fe2626265cbe5db1cb99233f Mon Sep 17 00:00:00 2001 From: Dennis Schiese Date: Tue, 9 Jan 2024 15:17:07 +0100 Subject: [PATCH 55/55] Increment version due to latest changes in origin repository --- qanary-component-QB-BirthDataWikidata/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qanary-component-QB-BirthDataWikidata/pom.xml b/qanary-component-QB-BirthDataWikidata/pom.xml index b31318d90..c16c1675c 100644 --- a/qanary-component-QB-BirthDataWikidata/pom.xml +++ b/qanary-component-QB-BirthDataWikidata/pom.xml @@ -5,7 +5,7 @@ 4.0.0 eu.wdaqua.qanary.component qanary-component-QB-BirthDataWikidata - 3.4.0 + 3.5.0 org.springframework.boot spring-boot-starter-parent